Which response best completes the following IF-ELSE statement?


IF the answer is greater than 100, THEN say "You have won the game!", ELSE say "________"


Congratulations!

Try again!

You have the highest score!

You made it to the next level!

Answers

Answer 1

Answer:

Congratulations!

Explanation:


Related Questions

You are using Automator, System Report, and Disk Utility as some of the tools for managing a fleet of laptops. Which operating system do these computers use

Answers

Answer:

macOS

Explanation:

Q:

You are using Automator, System Report, and Disk Utility as some of the tools for managing a fleet of laptops. Which operating system do these computers use?

A:

macOS

where element is the Hypertext Markup Language (HTML) element and _____ pairs define the styles that are applied directly to that element.

Answers

Not too sure what the answer the question would expect, or rather what terminology,

But I’d say key-value pairs

For example in CSS

key: value;

color: green;

i need help to fill in a few blanks with this coding homework. did some, but need help on the rest. the assignment is down below





# Cody Ryan, 4/28/2022, this is coding with loops

def main():

# Initialize variables
numGuesses = 0
userGuess = -1
secretNum = 5

name = input("Hello! What is your name?")

# Fill in the missing LOOP here.
# This loop will need run until the player has guessed the secret number.

userGuess = int(input("Guess a number between 1 and 20: "))

numGuesses = numGuesses + 1

if (userGuess < secretNum):
print("You guessed " + str(userGuess) + ". Too low.")

if (userGuess > secretNum):
print("You guessed " + str(userGuess) + ". Too high.")

# Fill in missing PRINT statement here.
# Print a single message telling the player
# That he/she guessed the secret number
# What the secret number was
# How many guesses it took

main()

Answers

Answer:

def main():

# Initialize variables

numGuesses = 0

userGuess = -1

secretNum = 5

name = input("Hello! What is your name?")

while ( userGuess != secretNum):

   userGuess = int(input("Guess a number between 1 and 20: "))

   numGuesses = numGuesses + 1

   if (userGuess < secretNum):

        print("You guessed " + str(userGuess) + ". Too low.")

    if (userGuess > secretNum):

         print("You guessed " + str(userGuess) + ". Too high.")

print("You guessed " + str(userGuess) + ". The correct number is " + secretNum + " after " + numGuess + " times.")

main()

Explanation:

add a While until userGuess == secretNum than we stop

Haji decides to change the program so that the computer can run each loop iteration in parallel. Assuming that he runs the program on a computer that can run 8 tasks in parallel, how long will the parallelized solution take

Answers

Answer:

18 minutes

Explanation:

Planet Duration

Jupiter 12 minutes

Saturn 9 minutes

Uranus 4 minutes

Neptune 4 minutes

Earth 1 minute

Venus 1 minute

Mars 1 minute

Mercury 1 minute

planets ← ["Mercury", "Venus", "Earth", "Mars", "Neptune", "Uranus", "Saturn", "Jupiter"]

model ← loadSolarSystem()

images ← []

FOR EACH planet IN planets {

  image ← renderPlanet(model, planet)

  APPEND(images, image)

}

If these are what the values and coding given, then the answer is 18 minutes

Sean is offered a job in New York City earning $120,000 a year, and a job in Salt Lake City earning $100,000 a year. What financial factor should he consider when determining which job to accept?

Answers

Answer:

Determine the travelling expenses first.

Explanation:

Since it is in two different places, the travelling costs would be different. This would create a big difference and is a factor to consider.

The  financial factor that he considers is that he will have more spending power if he stays in this City.

What is spending power?

The consumer purchasing power is known to be the length to which a consumer can spend money.

Note that based on the above scenario, The  financial factor that he considers is that He will have more spending power if Sean stays in this City.

Learn more about  financial factor  from

https://brainly.com/question/26504247

#SPJ2

When performing user access management, a DBA defines each user to the database at the _____ levels. Group of answer choices application and DBMS operating system and application application and network operating system and DBMS

Answers

Answer:

operating system and the DBMS

Explanation:

51. When performing user access management, a DBA defines each user to the dat…

a. application and DBMS

b. operating system and DBMS...

✓ b

Alan is working on a draft document. He wants the document to have more white space. He can do this by changing the line spacing. True False

Answers

It is a true statement that changing the line spacing will make the document have more white space.

What is a line spacing in word document?

This refers to the distance between upper and lower lines of text.

These line spacing are tools that make text much more readable because its places distance between the word lines.

By using a line spacing, there will be more spaces and white spaces on the word document.

Therefore, the statement is a correct statement.

Read more about line spacing

brainly.com/question/25277953

A numeric literal that is written with a decimal point is called a ________. real number floating-point value decimal literal double literal

Answers

Answer:

floating point value

Explanation:

float: 1.235

integer: 8

boolean: 0 or 1

A programmer, or software developer, is a person with the training and skills necessary to ________ computer programs. design create test All of these

Answers

A programmer or software developed must know about how to design, create and test a computer program. Thus the correct option is all of these.

Who is software developer?

A software developer or a programmer is a person have specifed skills under the field of computer science. The software developer needs to get complete training regarding how to design entire computer program, how to create new codes, and regarding the testing of new programs.

Therefore, the correct option is "All of these".

Learn more about software developer, here:

https://brainly.com/question/3188992

#SPJ1

write a recursive bool valued function containsvowel that accepts a string and returns true if the string contains a vowel

Answers

Answer:

Write a recursive, bool-valued function, containsVowel, that accepts a string and returns true if the string contains a vowel. A string contains a vowel if: The first character of the string is a v…

Explanation:

A:

bool containsVowel (string s) { bool hasVowel=false; if (s.length()==0) return false; else if (s[0]=='a'|| s[0]=='e'|| s[0]=='u'|| s[0]=='o'|| s[0]=='i'|| s[0]=='A'|| s[0]=='E'|| s[0]=='U'|| s[0]=='O'|| s[0]=='

Fill in the blank to this question. The __________ encompasses the data that flow into the system, the data that flow out of the system, and the data stores that collect and organize the data that are maintained permanently.

Answers

Answer:

The __________ encompasses the data that flow into the system, the data that flow out of the system, and the data stores that collect and organize the data that are maintained permanently.

data flow

Explanation:

Which statements describe front-end databases? Check all that apply. They can be used to store tables. They can be used to store forms. They can be used to store queries. They can be used to store reports. They are saved on a shared network folder. They are saved locally on users’ computers.

Answers

Answer

Explanation: these are the correct answer on the quiz

They can be used to store forms.

They can be used to store queries.

They can be used to store reports.

They are saved locally on users’ computers.

Answer pls pls pls pls ​

Answers

Answer:

Flyers and pamphlets, and TV ads most likely are the answers.

Michelle has defined a custom object by creating an object literal. She wants to access the properties of the custom object. Michelle can also write the properties of the custom object by using the _____.

Answers

Answer:

dot operator

Explanation:

Michelle has defined a custom object by creating an object literal. She wants to access the properties of the custom object.Which of the following can help Michelle to access the properties of the custom object?

Selected b. Answer:Dot operator

Cannot initialize sftp protocol. Is the host running an sftp server?.

Answers

Answer:

I believe it will resolve your issue

Explanation:

Most of the time it happened due to the password expired . So you need to make do right click on that WinSCP user's and you'll find the option Open in PUTTY, PFA.

Is a spreadsheet a good tool for writing a letter? Choose the answer: Yes or No

Answers

Answer:

No... Spreadsheets are commonly used for research, outlining, tables, and etc.

Explanation:

Screenshot provided.

A(n) ________ attempts to slow down or stop a computer system or network by sending repetitive requests for information.

Answers

A DoS attack is known as attempts to slow down or stop a computer system or network by sending repetitive requests for information.

What is a DoS attack?

A DoS attack is known to be a form of system attack that is often launched from a lot of compromised devices. It is said to be distributed in the world as a kind of botnet.

This is known to be a form of denial of service attacks, where there is the use of  a single Internet-connected device that is the use of one network connection to drown a target with a deadly form of traffic.

Learn more about DoS attack from

https://brainly.com/question/13068595

A security administrator needs to run a vulnerability scan that analyzes a system from the perspective of a hacker attacking the organization from the outside. Which type of scan should he or she use

Answers

A type of scan that should be used by this security administrator to run a vulnerability scan is called non-credentialed scan.

What is vulnerability?

Vulnerability can be defined as any form of weakness, flaw or defect that is found in a software application, computer sytem, or network, which can be exploited by an attacker or a hacker, in order to gain an unauthorized access and privileges to sensitive user data that are stored in a computer system.

In this scenario, a type of scan that should be used by this security administrator to run a vulnerability scan is called non-credentialed scan because he or she wants the analysis of the computer system from the perspective of a hacker, who is typically attacking the organization from the outside.

Read more on vulnerability scan here: https://brainly.com/question/25813524

Which of the following is NOT a specialized cloud mechanism? A. Automated Scaling Listener B. Load Balancer C. Multi-Device Broker D. Resource Array

Answers

Answer:

C...i think so sorry if im wrong

Explanation:

I think A…… sorry if wrong

You are searching for an item in an array of 40,000 unsorted items. The item is located at the last position. How many comparisons do you need to do to find it

Answers

It depends on what algorithm you’re using.
If you’re going item by item, you’ll be looking at O(n) or O(40000)
Give me a reply if you want to know more, such as if you did binary search what the Big O notation is

Determine if the sequence below is arithmetic or geometric and determine the common difference / ratio in simplest form. 64,8,1

Answers

Answer:

The Sequence is Geometric.  The ratio is a(n) = (n-1)/8

Explanation:

64/8 = 8  

8/8 = 1

Therefore, the next number in the sequence is 1/8 = .125

Using the _____, you can direct the browser to retrieve specific information about the URL, to reload the current page, or to load an entirely new page.

Answers

Answer:

location object

Explanation:

Using the _____, you can direct the browser to retrieve specific information about the URL, to reload the current page, or to load an entirely new page.

a. selection list b. hidden field c. reference form d. location object

A:

D



Exercise
For each of the following tasks, draw what the final list looks like and diagram how you
would solve the problem by writing a step by step process to solve the task.
1. Given a list of integers, replace every element at an even index with 0. Remember lists
start at index 0, so the first element should be replaced and then every other element
thereafter.
Initial list:
3
4
1
2
89
Final list:
Solution Steps:

Answers

Answer:

[0,4,0,2,0]

Explanation:

You need to iterate through the list and check if the index is even by comparing the rest of its division by 2 with 0. This can be achieved using the following algorithm (written in Python, so it can easily be translated to other languages)

mylist = [3,4,1,2,89]

for i in range(0, len(mylist)): #For each index of the list

   if i%2==0: #If the rest of the division of i by 2 is 0, which means it is even

       mylist[i]=0 #Assigns zero to current index

when jim needs to acces the corporate database, he sits at a terminal, which presents the user interface. the database, the transaction processing and the application programming are all resident on one seperate host computer. What type of database architecture is used at jim's company

Answers

The type of database architecture that is used at Jim's company is Centralized mainframe with terminal client.

What is mainframe computer terminal?

The mainframe model are known to be and up of centralized computers, that are placed on a secure weather controlled computer rooms.

Note that the it is made up of an End users interfaced and the Centralized mainframe with terminal client. is the type of system used in Jim's firm.

Learn more about database architecture from

https://brainly.com/question/25385643

the essential idea behind digital cite zen shop is that ____.

Answers

Answer:

"Digital Citizenship is the status that all online users should own including students. With this citizenship comes freedoms and responsibilities which should be understood in their entirety. Similar to the real world citizens, online users have to follow the rules and try to make use of all its benefits safely"

Explanation:

i cracked a school computer screen on purpose and one on accident what will happen now?

Answers

Answer:

You will probably have to pay a fee of replacement, or pay for the whole computer.

Explanation:

The navigation bar appears in the same position on each page and uses the same colors, fonts, and font styles.
a. True
b. False

Answers

Answer:

true

Explanation:

I think that's what it has been in my time of classes

John created a small video for an audition. He wanted to retain the quality for his client. Which compression technique will ensure that the video does not lose any information?
A. Lossless
B. Lossy
C. DCT
D. MPEG

Answers

MPEG, MPEG stands for Moving Picture Experts Group, they can retain quality and he can store it and not lose any information.

ASAP 50 POINTS
Type the correct answer in the box. Spell the word correctly.
Which firewall monitors traffic from the DMZ to the LAN?

When a DMZ is set up using dual firewalls, the___

-end firewall monitors traffic moving from the DMZ toward the LAN while the ___

firewall monitors the traffic from the Internet toward the DMZ.

Answers

Answer:

InternalExternal traffic

Explanation:

The external firewall monitors all the external traffic from the internet towards DMZ.

Internal end firewall monitors traffic towards LAN

If the following code is executed, what is the output? a = 1 b = 2. c = '3' d = (1, 2., '3') e = [4, 5., '6'] print type(b+c)

Answers

Answer:

TypeError

Explanation:

b = 2

c = '3'

- b is of type integer because it is storing an Integer.

- c is of type string, since '3' is a string.

Since they are of different types, you can't add/ concatenate them. To add them you would need to change the string ('3') to an integer to get 5. Or you would need to convert 3 into a string to get '32' or '23'.

Other Questions
The following inequalities are equivalentexcept ...a) x How many solutions are there to the equation below?x = -5O A. 2O B. 1O c. oD. 25 How can we reduce wildfires ( 10 sentences) Can someone please give me the (Answers) to this? ... please ...I need help. Turnout in the United States is generally _____ compared to other industrialized democracies, such as Australia, Belgium, Italy and France. If consumer sovereignty is considered greatest in a system of pure competition, why is sovereignty still limited? consumers still rely on producers set prices. few products are actually sold on the basis of pure competition. choices are driven by price when goods are identical. limited price variations restrict actual choice. I charged my phone in the microwave and now it doesn't work. What happened? Do not chase people. Be you and do your own thing and work hard. The right people who belong in your life will come to you , and stay. :))))) -14 < 3 + 1 < 13 answer inequality Use the drop-down menus to correctly relate each pair of number using =0.62 _0.0620.62 _ 0.6200.725 _0.750.65 _0.091 karen has 3 1/3 hours to run errands spends 1 2/3 hour at grocery store and rest at library how muh time did she spend at library which symbols were originally used in Western Europe that came from ancient India Name: 1. Label the axes. 2. Graph: A(-3, 0) B(-2, 4) C(1, -1) Draw AABC in blue. 3. Rotate AABC 90 clockwise to create AA'B'C' in red. List the coordinates below: Formula: (x, y) (y, -x) A(-3, 0)A' ( ) B(-2, 4)B' ( ) C(1, -1) C'( ) 4. Translate AA'B'C' three units down to create AA"B"C" in green. What are the coordinates of AA"B"C"? A" ( ) B" ( C" ( ) 27. A car is driving at 18 m/s as it begins to merge onto a freeway. If it starts to accelerate at a constant rate of 5 m/s2, how long does it take the car to reach a speed of 47 m/s When items in a list already contain commas, the writer should separate the items in the list using commas. hyphens. periods. semicolons. Vivian went to the gym and asked people if they like to exercise. To avoid bias in her survey, Vivian should ask her survey question at another gym count each tally mark as two people use a bigger sample size use a smaller sample size The first four terms of a sequence are shown. 1/2, 3/10, 9/50, 27/250, ...What is the formula for the sequence? Which of the following is an environmental factor that leads to food insecurity? a) Poverty b) Climate change c) War and conflict d) Agricultural practices A deposit of $2,960 is placed into a scholarship fund at the beginning of every six months for 13 years. The fund earns 7% annual interest, compounded biannually, and paid at the end of the six months. How much is in the account right after the last deposit? Select the correct answer below: Find the derivativeg(t)=7t4 4t3 +6t2 +9t19