Question #1
Dropdown
You entered the following line of code in IDLE.
>>> guess = input("Enter a guess: ")
This is the result.
Enter a guess: 2
What data type is the variable guess?
string
int
float

Answers

Answer 1

Answer:

int

Explanation:

Here is the input:

"Enter a guess: 2"

The input is the number. The type of variable for whole number (number without a decimal point) is integer, or int in short form.

If the input would be:

"Enter a guess: Hello"

Then the type of variable would be string, because it's a text input.

And if the input would be:

"Enter a guess: 1.5"

Then the type of variable would be float, because it's a number with a decimal place.

Answer 2

In the variable guess the type of data type is int. The correct option is B.

What is a data type?

A variable's data type and the kinds of mathematical, relational, and logical operations that can be performed on it without producing an error are classified as data types in programming.

Integral, Floating Point, Character, Character String, and Composite types are the five basic kinds of data types that are recognised by the majority of current computer languages.

Each broad category also includes a number of particular subtypes.

The most common integer data type in SQL Server is the int data type. When integer values may be larger than what the int data type can handle, the bigint data type is meant to be used.

Thus, the correct option is B.

For more details regarding data type, visit:

https://brainly.com/question/14581918

#SPJ5


Related Questions

Look at the following Python code:
word1 = "Umpire"
print(word1[1])

Which character will be indexed from word1 and printed to the screen? (5 points)

1. U
2. m
3. p
4. i

Answers

Answer:

2. m

Explanation:

Computers count starting from 0 so 1 would actually be the 2nd letter

Most sources consider the ARPA-NET project the birth of computer blank
.

Answers

Answer:

Networking

Explanation:

Answer:

networking i think

Explanation:

If i hit the delete key three times what will be left

Answers

Answer:

planation:

I got this

What even is this. Can someone help please.

Answers

Answer: it’s a broken hard disk/drive.

Explanation: That screen usually shows when your hard drive is damaged or broken. You’ll most likely need a new one and download professional tools to recover any lost data

try pressing a key? Just read it and do what it says and see if you get back to the main window

Consider the following code:


public class B1

{


private int i;

private int j;



}


public class B2 extends B1

{

private int m;

private int n;



}


public class B3 extends B2

{

private int z;



}


Which of the following sets of instance variables are directly accessible in class B3?

i, j, m, n

i, j, m, n, z

i, j, z

m, n, z

z

Answers

Answer:

The  answer is "z"

Explanation:

In this question, the "z" instance variable is correct because inside the class "B3" it declared a private variable "z", which is applied in the methods or data members or variables, and it is only accessible within the class, that they have been declared, and when we create its instance so, the object has been instantiated, and it is generated and accessible to all the builders, methods, or class blocks.

Answer:

4. m, n, z

Explanation:

This is because B3 extends off of B2. Meaning it has its own instance variables accessible, and can directly access the variable from it's super class, which is B2, which has m, and n.

What is the most common digital photography file type?

Question 8 options:

TIFF


RAW


JPEG


PHO

Answers

Answer:

JPEG

Explanation:

Answer:

JPEG

Explanation:

How do I send the face to the back? Seriously, I can't find out how...

Answers

Answer:

i think you can layer it :)

Explanation:

nice drawing btw!

IF YOU GET 5/5 RIGHT YOU WILL GET BRAINLIEST AND 50 [POINTS

AJ created a list, and he needs all of the numbers to be in order. Which Python function will allow him to organize his list numerically?

append()
print()
sort()
order()
Question 2(Multiple Choice Worth 5 points)
(03.04 LC)

Which part of project management involves determining the required materials?

Money
Resources
Scope
Time
Question 3(Multiple Choice Worth 5 points)
(03.04 MC)

Carlie was asked to review a software project for her company and determine what materials are needed. Which part of project management must she consider?

Analysis
Resources
Scope
Time
Question 4(Multiple Choice Worth 5 points)
(03.04 MC)

Look at the following assignment statements:

word1 = "skate"
word2 = "board"

What is the correct way to concatenate the strings?

newWord = word1 / word2
newWord = word1 + word2
newWord = word1 * word2
newWord = word1 = word2
Question 5(Multiple Choice Worth 5 points)
(03.04 MC)

Which function allows a user to add another item to a list in Python?

order()
print()
sort()
append()

Answers

Answer:

The sort function

Explanation:

Because it will sort all the numbers.

Answer:

Sort function?

Explanation:

Which of these is a small'plain text file that a website might place on your local drive? Choose the answer.

cookie

spam

virus

spoof

Answers

The answer would be cookie

Answer:

the is anwer is cookie i took the test i made sure is the right anwers

Explanation:

Calcule la carga que puede levantar un cabrestante si la manivela mide 40 cm y el El radio del molinete es una tercera parte de la manivela, si hacemos un fuerza en el mango de 250 N

Answers

Answer:

C

Explanation:

because...

Which of the following tags is used to create a horizontal line across the width of the Web page? A: <hr /> B: <br /> C: <line></line> D: <bar></bar>​

Answers

Answer:

<hr/>

Explanation:

hr stands for horizontal ruler.

Which of the following expressions will evaluate to true? (3 points)

7 == 7.0
7 != 7.0
7 < 7.0
Question 1 options:

1)

I only

2)

II only

3)

III only

4)

I and III only

5)

II and III only
Question 2 (3 points)
Saved
Which of the following expressions will evaluate to true? (3 points)

12 / 5 != 2.0
12 / 5.0 == 2.0
(int)(12.0 / 5.0) == 2.0
Question 2 options:

1)

I only

2)

II only

3)

III only

4)

I and II only

5)

I and III only
Question 3 (3 points)
Assume an integer variable named num is assigned a value of 20. What is the value of num - 7 < 15? (3 points)

Question 3 options:

1)

True

2)

False

3)

0

4)

1

5)

An error occurs
Question 4 (3 points)
What is the result of the following code segment? (3 points)

int x = 10;
if(x + 1 < 20)
x += 5;
System.out.println(x);

Question 4 options:

1)

10

2)

11

3)

15

4)

16

5)

20
Question 5 (3 points)
Assume the integer variable num has been assigned a valid value. What is the purpose of the following code segment? (3 points)

if(num % 10 != 0)
System.out.print(num);

Question 5 options:

1)

It prints num if its value is a multiple of 10.

2)

It prints num if its value is not a multiple of 10.

3)

It always prints the value of num.

4)

It never prints the value of num.

5)

An error occurs at compile time.

Answers

Answer:

A and B

Explanation:

(I WILL MARK BRAINLIEST) The High Importance message option is found in which group of the Message Ribbon?

Name
Include
Importance
Tags

Answers

Answer:

your answer should be tags. hope this helped:)

Explanation:

The High Importance message option is found in which group of the Message Ribbon?

Tags is the answer of this questions.

please mark as brainleiest and follow me....

A MailTip is an instantaneous pop-up message that

warns users of bad email addresses.

forces the sender to check their grammar and spelling.

gives you real-time information about the message you are creating.

provides helpful hints on how to navigate the message controls.

Answers

Answer:

its (c)

Explanation:

In a particular spreadsheet, the data in each cell is password protected. When cells are selected, the formula is visible
in the formula bar. Which is true?
O The cells are locked and hidden.
The cells are locked and unhidden.
The cells are unlocked and hidden.
O The cells are unlocked and unhidden.

Answers

Answer:

Explanation:

Locked and hidden

write an overview of your opinion of Digital Access

Answers

Answer:

Digital access is the ability to fully participate in digital society. This includes access to tools and technologies, such as the Internet and computers, that allow for full participation.  Unfortunately, not everyone has complete digital access and therefore, are not able to fully participate in digital society. The separation between those who have complete access and those who do not is referred to as the Digital Divide.

What kinds of objects might benefit from the use of the Loop Cut and Slide tool, and why? In your own words, how does edge loop manipulation “work?”

Answers

Answer: it doesn’t. The demons are coming

ILL GIVE BRAINLIEST TO FIRST ANSWER David is adopting an iOS app from a non-retina screen to a retina screen. The app currently works at a pixel density of 150DPI, what density should it be on a retina screen to maintain its apparent size?

Answers

Answer: what density should it be on a retina screen to maintain its apparent size?

What is a reason given in an argument why the claim is true?

A. Evidence
B. Heuristic
C. Claim
D. Premise

Answers

Answer:

A

Explanation:

A

The reason given in an argument why the claim is true is called; D: Premise.

When having an argument, the parties involved are trying to establish who is right about the topic of the argument based on the claims given by the parties involved in the argument.

Now, arguments get to a point where the parties involved would be required to bring forth a string reason why their position holds the best approach or is true and this position as to why their claim is true is called "premise" of the claim in the argument.

Read more about arguments at; https://brainly.com/question/3132210

What is the memory called that runs first and then boots?

Answers

Answer:

read only memory (Rom) is the memory that runs fast and then boost.

I’m completely lost...can someone help!

Answers

Answer:

2,000

Explanation:

I am in collage

Answer: i wish i could help you

Explanation:

i wish i could help you

Which are viable channels of communication? the Internet, sign language, playing a video game alone, talking, taking a solitary walk​

Answers

Answer:

The Internet, sign language, and talking

Explanation:

please help me! No one ever does! will give 30 points and brainliest!

Write a summary about Digital Citizenship

Answers

Answer:

The term digital citizenship, also known as e-citizenship or cyber-citizenship, refers to the use of Information and Communication Technologies (ICT), and the principles that guide them, for the understanding of the political, cultural and social issues of a nation.

More Content by Concept

In other words, it is about citizen participation through digital or electronic environments and interfaces, through the Internet and Social Networks.

Digital citizenship is part of the electronic government system or digital democracy, which precisely consists of the administration of State resources through new ICTs and all their potential, to make life easier for citizens.

In this way, a digital citizen has the right to access information online in a safe, transparent and private way, in addition to the social and political participation that 2.0 media allows.

Explanation:

What I Can Do

Activity: SHOW ME YOUR SKILLS

Directions: Show your skills in caregiving by answering the question. Focus your answer in the underline world.

1. You are assigned to take good care of your younger brother/sister and he/she is HUNGRY. What will you do?

2. Your mother wants to go to the market and you are assigned to take good care of your grandmother. Your grandmother has difficulty in walking. How do you take good care of her if she WANTS TO GO TO THE BATHROOM and when SHE IS HUNGRY?​

Answers

Answer:

1. I would cook or see there is any leftovers from dinner or do take out.

2. I would try and carry her but if I can't then I'll walk her to the bathroom. I make her what she wants.

What is the purpose of a forecast worksheet?

It uses historical data to predict one trend line.
It predicts trends using changing data onto one line.
It uses historical data to predict multiple trend lines.
It predicts trends using changing data onto multiple lines.

Answers

Answer: It’s a

Explanation:

I got it right on edj

Can Someone Please Help Me?! I Have already had a rough morning!

What is step one in the digital file organization process?

What is rule number one?

What is rule number two?

What is the obvious advantage to rule number two?

What is the tree structure?

What are two main ways to organize your files?

How should you name your files?

What is cloud storage?

What are some different cloud storage software?

What is the importance of backing up your computer?

Answers

Answer:

The first step to organizing your digital files is knowing and documenting what you need to keep and why. This means that you need to create record retention guidelines if they do not already exist. Typically, information needs to be kept for legal and accounting purposes.

(I WILL PUT BRAINLIEST)Yuri wants to assign a task to his co-worker. He clicked the Task button to enter the subject, start date, and end date for the task. Then he clicked the Details button to add the number of hours needed for the task. Yuri clicked Save & Close to complete the assignment, but his co-worker did not receive the task. Which best explains Yuri’s error?

He cannot assign a task to an individual co-worker.
He should have entered the hours needed in the Task area.
He entered the wrong subject name in the Task area.
He did not add his co-worker’s information before saving the task.

Answers

Answer:

it seems that yuri didnt enter his co-workers information before saving the task

When might you use the Internet without accessing the World Wide Web?

Answers

Jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj

Which step in the software development life cycle involves making improvements based on user feedback?

Coding
Design
Maintenance
Testing

Answers

Answer:

Design Phase

Explanation:

In design phase developers make prototypes. The prototype is the solution without actual implementation. That prototype is shown to the user for the purpose of getting feedback. So design phase of SDLC involves making improvements based on user feedback.

Answer:

Testing

Explanation:

When you test the game to see if it's fun you try to get feedback from users

Wanna song to vibe to? Listen to Streets by Doja cat

Answers

Answer:

Ooo I'll listen to it and see if I like it lol

Answer:

agreed very much

Explanation:

Other Questions
Evaluate 5 + 3x for (a) x= -2 and (b)x= 3. Write your answers in simplest form. solve the following systems of equations. 5x+3y+4z=1 4x-7y+3z=0 x+5y-2z=-11 a summary on a cow called boy chapter 2 a sum of Rs.5,000 written off as depreciation on furniture has not been debited to depreciation account.Required : Rectifying entries. You set up a hot chocolate stand at a football game. The cost of your supplies is $75. You charge $0.50 for each cup of hot chocolate. Write a function that represents the profit P for selling c cups of hot chocolate. HELP PLEASE FOR BRAINLISTIA well-regulated militia, being necessary to the security of a free state, the right of the people to keep and bear arms, shall not be infringed. The writers of the Constitution believed that the people must have the ability to protect themselves and to fight back against an oppressive government. Today, some people argue that some of these original reasons behind the Second Amendment no longer apply. Others argue that the right to protect yourself is the really central idea of the Second Amendment and that guns are necessary for self-protection. Either way, the United States has the highest rate of gun ownership in the world. Which of the following statements would the people described in the underlined sentence likely agree with? A US citizens no longer have a need to protect themselves against an oppressive government. B Guns are necessary for self-protection. C US citizens should own more guns. D The US government is very oppressive, and citizens need to protect themselves in many different ways. What is the meaning of the two numbers used in the Snellen Eye Chart? Who refused to write the Declaration of Independence because he feared that his reputation for humor would distract from the document's purpose? a. Benjamin Franklinb. John Adamsc. Thomas Jeffersond. George Washington Landon hands out 120 flyers in 2 hours. Fernando hands out 29 flysers in 30 minutes. Which equation can be used to determine the number of flyers Fernando handed out in 2 hours? If infection primarily involves the outermost layers of adult amphibian skin, and if the chytrids use the skin as their sole source of nutrition, then which term best applies to the chytrids 2. There are two different sizes of Fanta Pinapple for you to get. The first one is a12 oz can, and the bottle has 33% more. How much does the bottle containapproximately?4 OZ0 21 ozO 16 ozO 19 oz f (x)=5x+1 9(x)=-2x+15 Danielle and hector are selling raffle tickets to raise money for the school band.Danielle sells 5 tickets per day for 4 weeks straight.she then sells 4 tickets per day for 1 week.how many tickets does hector need to sell if he wants to sell mor tickets than Danielle Sasha works for the Humane Society and had to buy food for the dogs. She buys 1614 pounds of dog food. She feeds each dog about 58 of a pound. How many dogs can she feed?2625106 PLEASE HELP! CORRECT ANSWER WILL GET BRAINLIEST HelpppPppppp me if u do ill give u a pringlePaul paid $10 for a ticket to the fair and then another $2 per ride. Write an equation to show how many rides x, Paul can take if he has $40.2x = 402x - 10 = 4010x + 2 = 402x + 10 = 40 find velocity when the kinetic energy is 144 j and mass is 4.5 kg What is the 30th term in the sequence 10, 12, 14, 16, 18...?I need help plzz The volume of the world's oceans is nearly 1.5 x 10^9 cubic kilometers. Write this number in scientific notation. During the summer, Samson averaged 9.4 hours of sleep per night. Now that school has started, he averages 8.2 hours. What is the percent decrease in his sleep per night?