Question # 4 Dropdown Finish the code for this function. ​
if guess_____ correct:
# Tell the user the guess was correct.
print("You were correct!")
keepGoing = False
else:
if guess < correct:
print("Guess higher.")
else:
print("Guess lower.")

a. !=
b. =
c. ==

Answers

Answer 1

Answer:

==

Explanation:

I did it on edge 2021

Answer 2

Answer:

The answer is ==. I hope this helps you out. Have a nice wonderful day. <3<3<3

Explanation:


Related Questions

1-How many moles of NazCOs are in 10.0 ml of a 2.0 M solution?​

Answers

Answer:

A solution is a mixture in which the particles are so small that the components are indistinguishable from each other. The amount of the solute and the solvent in a solution can be expressed in terms of different concentration expressions such as molarity, morality, etc.

Explanation:

To calculate the number of moles of sodium carbonate, the volume in liters will be multiplied by the molar concentration of the solution.

moles Na2CO3 = 2.0 M  x 0.0100 L = 0.020 moles Na2CO3

Hope it helps :)

Answer:

There are 20. mol of Na2CO3 in 10.0L of 2.0M solution.

Explanation:

Molarity is represented by this equation:

(look at attachment)

In our case, we already have the molarity and volume of solution, both of which have good units.

Let's rearrange the equation to solve for the number of moles. We can do this by multiplying by L solution on both sides of the equation. The L solution will cancel out on the right side, leaving the number of moles being equal to the molarity times volume:

Moles of solute

=Lsolution×Molarity

Now we just plug the known values in!

Moles of solute = (10.0 L) (2.0M) = 20. moles

2. What is software conflict?

Answers

Answer:

A problem that occurs when two programs cannot run in the same computer at the same time. It is generally due to a programming bug and typically manifests when two programs compete for the same resource (memory, peripheral device, register, etc.).

Hope it helps out!

Explanation:

Project: You are Tech Support

Answers

No but call a big company

Answer:

no but call a big company

Blockquote
The page contains a review within a block quote. Go to the Blockquote Styles section and create a style rule for theblockquote element that sets the background color to rgb(173, 189, 227) and the text color to the rgb(255, 255, 255) with an opacity of 0.65.
For every paragraph within the blockquote element create a style rule that sets the top/bottom padding space to 2.5 pixels and the left/right padding space to 10 pixels.
My Code
/* Blockquote Styles */
blockquote {
background-color:rgb(173,189,227);
color:rgb(255,255,255);
opacity:0.65;
}
blockquote > p {
padding: (2.5, 10, 2.5, 10);
}

Answers

Answer:

I don't knowthe answer

Explanation:

I really don't know the answer

You work for a large company that has over 1000 computers. Each of these computes uses a wireless mouse and keyboard. Therefore, your company goes through a lot of alkaline batteries. When these batteries can no longer power the intended device, you must decide what to do with them. Unless otherwise dictated by your local authorities, which of the following would be the EASIEST way to deal with these batteries?
They must be sent to hazardous waste collection

a. They can be recharged.
b. They must be stored onsite until they expire
c. They can be thrown in the trash.

Answers

The answer to this question is, "They can be thrown in the trash."

Explanation: This is because it specifies how to get rid of them UNLESS local authorities have told you otherwise.

Describe a cellular network, its principle
components and how it works.

Answers

A cellular network is a contact network with a wireless last connection. The network is divided into cells, which are served by at least one fixed-location transceiver station each. These base stations provide network coverage to the cell, which can be used to send voice, data, and other types of information. It's often referred to as a mobile network.

The principal components of the cellular network will be explained below as follows-

BTS (Base Transceiver Station) - It is the most important part of a cell since it links subscribers to the cellular network for data transmission and reception. It employs a network of antennas that are dispersed across the cell.

BSC (Basic Station Controller) - It is a portion that interfaces between Basic Station Controllers and is connected to Basic Station Controllers via cable or microwave links, as well as routing calls between Basic Station Controllers and the MSC (Mobile Switching Center).

MSC (Mobile Switching Center) - The supervisor of a cellular network is linked to several Basic Station Controllers and routes cells between them. It also connects the cellular network to other networks such as the PSTN through fiber optics, microwave, or copper cable.

A cellular network works when the SIM card is organized into geographical cells, each of which has an antenna that transmits to all mobile phones in the city, cellular networks operate by knowing the exact location, which comes from the SIM card. A transmitter generates an electrical signal, which is converted by the transmit antenna into an electromagnetic wave, which is then radiated, and the RF wave is then converted back into an electrical signal. In cellular network networks, four multiple access schemes are used, ranging from the first analog cellular technologies to the most modern cellular technologies.

Which of these statements regarding mobile games is true?

A.
They are typically played indoors.
B.
They have detailed environments.
C.
Their levels can be completed quickly.
D.
They are typically played for several hours at a time.
E.
They are played on large screens.

Answers

i have a feelings it’s the one that’s about playing for long lengths of time

Answer:

C. The levels can be completed quickly

#PlatoLivesMatter

Explanation:

Write a MY SQL query to display the name and hire date of all employees who were hired in 1992.

Answers

Answer:

Select * from Employees where LastName LIKE '%H%' or LastName LIKE '%A%' or   LastName LIKE '%Z%' order by Hiredate(or whatever you put for your year name) desc;

Explanation:

help me guys plssssss​

Answers

Answer     The answer is

                                   

                           So hope this was helpful

Explanation:

With the addition of electric cars, we have a need to create a subclass of our Car class. In this exercise, we are going to create the Electric Car subclass so that we can override the miles per gallon calculation since electric cars don’t use gallons of gas.
The Car class is complete, but you need to complete the ElectricCar class as outlined in the starter code with comments.
Once complete, use the CarTester to create both a Car and ElectricCar object and test these per the instructions in the CarTester class.
Classes
public class CarTester
{
public static void main(String[] args)
{
// Create a Car object
// Print out the model
// Print out the MPG
// Print the object
// Create an ElectricCar object
// Print out the model
// Print out the MPG
// Print the object
}
}
////////////////////////////
public class ElectricCar extends Car {
// Complete the constructor
public ElectricCar(String model){
}
// Override the getMPG here.
// It should return: "Electric cars do not calculate MPG.
// Override the toString() here.
// (model) is an electric car.
}
//////////////////////////////////
public class Car {
//This code is complete
private String model;
private String mpg;
public Car(String model, String mpg){
this.model = model;
this.mpg = mpg;
}
public String getModel(){
return model;
}
public String getMPG(){
return mpg;
}
public String toString(){
return model + " gets " + mpg + " mpg.";
}
}

Answers


Hey will you please help me with my essay and I’ll get back to yours please ASAP//

Evaluation of your strengths and weaknesses
a. Self Assessment b. Employee
c. Entrepreneurship d. Entrepreneur

Answers

いt  背lfまyべラテぇrべit is a lolololol idek ima just stop

Select the correct answer.
What should you keep in mind when picking a topic for a research paper?
ОА.
choosing a general topic
OB.
choosing a topic that is relatively new
O C.
choosing a specific topic rather than a broad one
OD. choosing a topic based on the most number of sources you can find
Reset
Next

Answers

Answer: The answer is C

Explanation: When it comes to research papers your topic shouldnt be too broad. Your topic should be broad enough you can find a good amount of information but not too focused that you can't find any information.

What is the technology in community​

Answers

Answer:

Community technology is the practice of synergizing the efforts of individuals, community technology centers and national organizations with federal policy initiatives around broadband, information access, education, and economic development. National organizations efforts include: Developing effective language.

Community technology is a principled approach to technology that is grounded in the struggle for a more just digital ecosystem, placing value on equity, participation, common ownership and sustainability. In these activities, participants will use social analysis to understand technologies we use. Hope this helped!

An ISA specifies a word size of 8 bytes, byte addressability, and an address space of 256 K; it uses single-word instructions (i.e. each instruction is a single 8 byte word). What is the size of the MAR

Answers

Answer:

2 bytes

Explanation:

Size of the MAR ( memory address register )  = 18 bits = 2 bytes

Given that

address space = 256 K  = 2^8

number of address location= 2^8  * 2^10       ( where 1K = 2^10 )  

                                              = 2^18

Given the number of address location = 2^18 ;

Hence  18 bits are required to store the address of the instruction

You designed a program to create a username using the first three letters from the first name and the first four letters of the last name. Usernames cannot have spaces. You are testing your program with a user whose name is Jo Wen. What step in the program plan do you need to revisit

Answers

Answer:

See Explanation

Explanation:

The question would be best answered if there are options to select from; since none is provided, I will provide a general explanation.

From the question, we understand that, you are to test for Jo Wen.

Testing your program with this name will crash the program, because Jo has 2 letters (3 letters are required), and Wen has 3 letters (4 letters are required)

So, the step that needs to be revisited is when the username is generated.

Since the person's name cannot be changed and such person will not be prevented from registering on the platform, you need to create a dynamic process that handles names whose lengths are not up to the required length.

hardware and costs of adding two levels of hardware RAID. Compare their features as well. Determine which current operating systems support which RAID levels. Create a chart that lists the features, costs, and operating systems supported.

Answers

Explanation:

1. Redundant batch of Inexpensive Drives (or Disks) (RAID) is a term for data storage schemes that divide and/or replicate data amid multiple hard drives.

2. RAID can be designed to provide increased data accuracy or increased Input/Output performance

Hardware RAID exists as a customized processing system, utilizing various controllers or RAID cards to control the RAID design independently from the OS. Software RAID utilizes the processing capacity of that computer's operating system in which the RAID disks exists installed.

What are the two types of RAID?

We have two kinds of RAID implementation through. Hardware and Software. Both these implementation contains its own benefits and drawbacks.

Software RAID does not count any cost for a RAID controller and exists fairly effortless to estimate the cost of as you exist only buying additional drives. All of our usual dedicated servers come with at least two drives, indicating there exists NO cost for software RAID 1, and stands positively suggested.  It exists positively suggested that drives in a RAID array be of the exact type and size. With RAID 0 or RAID 1, you'd require at least two drives, so you would require to buy one additional drive in most cases. With RAID 5 you'll require at least three drives, so two additional drives, and with RAID 6 or 10 you'd require at least four total drives. To earn additional implementation, redundancy, or disk space, you can count more disks to the collections as well.

To learn more about two types of RAID

https://brainly.com/question/19340038

#SPJ2

Write a function called csv_sum that takes a filename and returns the sum of all of the numbers in the file. The numbers are in csv format. For instance, if the contents of the file are: 12,3,2 -5 10,20,-10,8.3 Then the function should return 40.3.

Answers

Answer:

Explanation:

def csv_sum(filename):

   total = 0

   try:

       f = open(filename)

       for line in f:

           words = line.strip().split(",")

           for word in words:

               total += float(word)

       f.close()

   except FileNotFoundError:

       pass

   return total

Why do organizations need to tailor project management concepts, such as those found in the PMBOK® Guide, to create their own methodologies?

Answers

Explanation:

Although each project is different and unique, according to the Method Statement of PMBoK, customising is required. Not that every procedure, tool, methodology, input, or output listed in the PMBoK Guide is mandated for every project. Scope, timeline, cost, materials, quality, and danger should all be considered while tailoring.

When adding several user accounts, you might want to use the newusers utility, which can process a text file full of entries to add user accounts. Use the man or info page to find out how to use this utility, and use it to add three users. When finished, view the /etc/passwd, /etc/shadow, and /etc/group files to verify that the users were added successfully.

Answers

Explanation:

Given - When adding several user accounts, you might want to use the new users utility, which can process a text file full of entries to add user accounts.

To find - Use the man or info page to find out how to use this utility, and use it to add three users.

Proof -

New Users Utility:

It is an utility which reads the file full of usernames and clear text passwords.

It then uses this information to update a group of the existing users to create new users.The format of the file consists of specified things like:

pw - passwd

pw - age

pw - gid

pw - dir

Use of the Utility:

The command is new users filename

The file should look like -

(Username : Password : UID : GID : User Information : Home Directory : Default Shell)

where ,

UID = User Identifier

GID = Group Identifier

Testing the Users:

Creating users from the file given above test User 1, directory Of File

Executing the create user new users directory Of File

Repeat this step to undergo all the users that are been noted down in the file to make them a user in the noted group policy.

Hence,

These are the steps of using the new Users utility.

how do you record your own video game Music and post Them on yt

Answers

Answer:I would try downloading a beat app and making a song,then posting

Explanation:

You should use another electronic and record it from their

b) Set of strings of 0s and 1s whose 5th symbol from left is 1.

Answers

Answer:

...?

Explanation:

Write the C++ code (NOT a full program) that prompts the user to enter 50 numbers and fills the array guestCount with these 50 numbers, so that the first number input is in the first element of the array, the second input in the second element, etc.

Answers

Answer:

The code is as follows:

int guestCount[50];

   for(int i = 0; i<50;i++){

       cout<<"guestCount "<<i+1<<": ";

       cin>>guestCount[i];

   }

Explanation:

This declares the array

int guestCount[50];

This iterates through the array (50 elements)

   for(int i = 0; i<50;i++){

This prompts the user for each array element

       cout<<"guestCount "<<i+1<<": ";

This gets the input from the user

       cin>>guestCount[i];

   }

A computer can manipulate symbols as if it understands the symbols and is reasoning with them, but in fact it is just following cut-and-paste rules without understanding why. This means that:

Answers

Answer:

The symbols may or may not have meaning, but the machine does not need to know how the symbols are interpreted in order to manipulate the symbols in the right way.

Explanation:

The computer can change the symbols in the case when the computer understand but in actual following the cut-paste rules without having any understanding this is because the symbols might be have meaning or not but if we talk about the machine so actually they dont know how the symbols are interpreted and how it can be used so that it can be change in the accurate way

You wish to traverse a binary search tree in sorted order using pre order traversal. Arrange the following actions in the correct order to accomplish this. I Print the right subtree recursively II Print the root III Print the left subtree recursively

Answers

Answer:

II Print the root

III Print the left subtree recursively

I Print the right subtree recursively

Explanation:

The question illustrates binary search in data structure.

When preorder is applied to a binary search, the search starts by visiting the root node, then proceed to the visiting the left most nodes and finally, the left nodes will be visited.

Using the above illustration, the arrangement of the actions in ascending order is: II, III and I

George has a set of software programs installed on his computer to create a digital portfolio. He is not sure what each program does. Help George by matching the software to their purposes

Answers

Explanation:

I thinkcreating and edditing Images matchs to adobePhotoshop

Microsoft word is for adding and Creating text document

Creating andeditingpage layout -Adobe In Design

Desktop Publication-QuarkQuark Xpress

I hope thishelp and If wrong Inform me

Good luck

Answer:

This is the answer based off of the notes

Explanation:

what is internet? explain help pliz​

Answers

The Internet, sometimes called simply "the Net," is a worldwide system of computer networks -- a network of networks in which users at any one computer can, if they have permission, get information from any other computer (and sometimes talk directly to users at other computers).

Select all phrases that describe a server-based network. centralized network security easy to expand log-ins controlled by central server unlimited number of users network resources stored on individual workstations

Answers

Answer:

Client Server Network ... is the central computer that enables authorized users to access networked resources ... computers in this type of network are connected to a central hub ... why might a business choose a server based network (3) ... 2) easier to expand ... external hardware connected to and controlled by a computer.

Explanation:

Answer

Explanation:

what the other person said

Imagine running a 64-bit system on a 32-bit system, where we simulate a single 64- bit memory location (register) using two atomic 32-bit memory locations (registers). A write operation is implemented by simply writing the first 32-bits of the simulated 64-bit register in the first real register, then the second 32-bits in the second real register. A read, similarly, reads the first half from the first register, then the second half from the second register, and returns the concatenation. What is the strongest property that this 64-bit register satisfies: safe, regular, or atomic

Answers

Answer:

It's not possible to ensure memory access occurs indivisibly when it has to broken into multiple operations. Unfortunately, the fact that your application is running on a 64-bit kernel does not change the equation any - it is actually running in a compatibility layer and has none of the benefits of x64

Explanation:

What is the default join type? inner self join left outer right outer

Answers

Answer: inner

Explanation: on edg

Answer:

inner

Explanation:

just did it on Edg

An OpenCL Device is composed of: Group of answer choices Command Queues Platforms Processing Elements Compute Units

Answers

Answer:

Compute Units

Explanation:

A platform can be defined as a computing environment for building and executing sets of code in a software application or program such as an application programming interface (API).

The two parts of the platform used to run an application software are both hardware and software (operating system).

Machine and assembly are referred to as a low level programming language used in writing software programs or applications with respect to computer hardware and architecture. Machine language is generally written in 0s and 1s, and as such are cryptic in nature, making them unreadable by humans but understandable to computers.

OpenCl is an abbreviation for open computing language that runs on CUDA-powered graphics processing units (GPUs). An OpenCL Device is composed of compute units and an OpenCl compute unit typically comprises of processing elements.

Other Questions
A tank with water is shown. What is the volume of the empty space in thetank?* use the information given to find the value of n in each of the following sets of number How did the location of birth of the Renaissance allow it to spread to all of Europe? which expression has a vaule of 2/3? Hi this picture I need a picture description because I have to take it to school tomorrow and I don't know English very well (could anyone help? 1. Fill in the spaces below with the correct form of the verb to be in Past Simple.a. ___________ you at home yesterday? B: Yes, I ___________.b. They ___________ really happy after they won the football game.c. My sister ___________ a college student last year.d. Thomas ___________ on the train at three-thirty yesterday afternoon.e. A: ___________ Jennifer tired after she finished work? B: No, she ___________.f. My car broke down, so I ___________ late for my appointment.g. A: ___________ Laura and Susan surprised? B: No, they ___________.h. The cookies ___________ delicious, so I ate three of them.i. A: ___________ you at the library yesterday? B: No, I ___________.j. Many dinosaurs ___________ really huge. HELPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP Did the northern Atlantic Ocean basin start to open at the same time as the southern Atlantic Ocean basin? In My Bondage and My Freedom byFrederick Douglass, what impact does learning to read have on Douglass?He finds reason to hope for the future.He finds a way to escape his misery.He grows to hate white people.He grows to hate slavery. the unit of mass"kilogram" is a fundamental unit. why? prove that P(AB)=P(A)P(B) for all sets A,B. Select the correct text in the passage.Which lines in this excerpt of Charles Dickenss A Christmas Carol reflect the theme of compassion versus material gain?[But you were always a good man of business, Jacob, faltered Scrooge, who now began to apply this to himself.][Business! cried the Ghost, wringing its hands again. Mankind was my business. The common welfare was my business; charity, mercy, forbearance, and benevolence, were all, my business. The dealings of my trade were but a drop of water in the comprehensive ocean of my business!]It held up its chain at arms length, as if that were the cause of all its unavailing grief, and flung it heavily upon the ground again.At this time of the rolling year, the spectre said, I suffer most. Why did I walk through crowds of fellow beings with my eyes turn down, and never raise them to that blessed Star which led the Wise Men to a poor abode! Were there are no poor homes to which its light would have conducted me![Scrooge was very much dismayed to hear the spectre going on at this rate, and began to quake exceedingly.]Hear me!cried the Ghost. My time is nearly gone.I will, said Scrooge. But dont be hard upon me! Dont be flowery, Jacob! Pray!How it is that I appear before you in a shape that you can see, I may not tell. I have sat invisible beside you many and many a day.It was not an agreeable idea. Scrooge shivered, and wiped the perspiration from his brow.[That is no light part of my penance, pursued the Ghost. I am here to-night to warn you, that you have yet a chance and hope of escaping my fate. A chance and hope of my procuring, Ebenezer.]You were always a good friend to me, said Scrooge. Thankee!Answers are in the brackets: [ ] HELLP ASAP PLEASEEEEEEEE I need help with this question Find the slope of the line that goes through the points (2,5) and (2,8) What is the value of ? x/10 = 2 O A. 5 O B. 8 O C. 12 OD. 20 You just opened a savings account and deposited $300 at 3% that u plan on withdrawing in 15 years. How much money will you have by then? Find the measure of the exterior angle. HELP ASAP FAST HELP PLEASE (WORTH A LOT OF POINTSIf x = -12 and y = -3, thena) 21b) 13c) 9d) 1 PLZ ANSWER Which one of these methods finds the volume of the given figure?