What is missing in the following program in order to have the output shown?

numA = 1

______ numA < 12:
numA = numA + 5
print(numA)

Output: 16
------------------------------
options-
for
while
if

Answers

Answer 1

Answer:

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

Explanation:

Answer 2

The do while loop is an exit-controlled loop that will run its body at least once even if the test condition is false. Such a scenario can occur when you want to halt your software based on user input.Thus, option C is correct.

What is the main function of a while loop?

Iterating over an R object (such as a list, vector, or matrix), applying a function to each member of the object, collating the results, and returning the collated results are all part of how a loop function works.

The while loop enables code to be run repeatedly until a specified condition is satisfied. The “Do...while loop,” on the other hand, enables a program to run once before the condition is verified.

Therefore, while loops are used to repeatedly run a block of code up until a predetermined condition is satisfied.

Learn more about while loop here:

https://brainly.com/question/15690925

#SPJ2


Related Questions

PLS HELP QUICK!!!!
Read the following scenario:
A cell phone company is launching a brand new state-of-the-art smart phone. This phone has the latest wireless communications
technology built into its system. The phone is loaded with new apps and special devices that enhance speed and efficient Internet use.
Which of the following can a consumer most likely expect with the unveiling of this new product?
increases in the cost of services from providers
increased value of older smart phone models
O increase in sound quality
O decrease in the creation of competing apps

Answers

Answer:

increases in the cost of services from providers

Explanation:

With the advancement in the quality of the product, the price of the product also sees a hike. According to the given excerpt, the cell phone company had added many new features and upgraded the version of the smartphones. Because of this reason, it's value in the market will be more as compare to the last product. New technology and advanced features would help the customers in various ways. In return, the price of the product will be more.

Which of the following is an example of data an Earth-observing satellite would collect?
studying ocean and land changes

monitoring the movement of ships

tracking signals between different points on Earth

studying weather patterns

Answers

Answer:

A

Explanation:

Hopefully this helps

the same data might be simultaneously structured and unstructured depending on the intended processing.

Answers

True, the same data might be simultaneously structured and unstructured depending on the intended processing.

You might not realize it, but the data you encounter every day can be classified as either structured or unstructured. Structured data is data that can be easily processed by computers, while unstructured data is more free-flowing and difficult to process.

Interestingly, the same data can be simultaneously structured and unstructured depending on the intended processing. For example, an address can be structured data when you input it into a GPS system. But if you're trying to determine the best route to your destination, that same address becomes unstructured data.

As data becomes increasingly important in our lives, it's important to understand how to best process and make use of it. Structured data is much easier to work with, so if you can structure your data, you'll be able to get more out of it.

Learn more on structured and unstructured data here:

https://brainly.com/question/28326950

#SPJ4

What is a load factor

Answers

Answer:

The ratio of average load to the maximum demand during a given period

Explanation:

What is the output for the code below?
int total
0;
for (int i
15; i >= 0; i--)
{
total++;
}
System.out.print (total);

Answers

What is output by the code below? int[] array = {33,14,37,11,27,4,6,2,6,7}; System .out.println(array.length); ... int[] array = {5,10,3,6,9,15}; ... int total = 0; ... output by the code below? int j=1, tally=0; while(j<9) { tally++; j++; } System.out.print(tally);.
From quizlet

What is the difference between machine learning and artificial intelligence

Answers

Answer:

Artificial Intelligence is the broader concept of machines being able to carry out tasks in a way that we would consider “smart”. ... Machine Learning is a current application of AI based around the idea that we should really just be able to give machines access to data and let them learn for themselves.

a user is experiencing problems with a laptop system overheating. you suspect the cpu cooling fan has a buildup of dust blocking air flow.

Answers

If a user is experiencing problems with a laptop system overheating, they should be Refer to the laptop manufacturer's service manual.

Lack of appropriate airflow under the laptop may result in overheating. You can fix this by raising your computer and placing a small book under it. In addition to using a book, it's even better to get a laptop cooling pad to give your machine adequate standard airflow.

The internal parts of a laptop can become damaged when it overheats significantly. The laptop should try to shut itself off before this occurs. It's typical for a laptop to run warm, sometimes even getting too warm for it to sit comfortably on your lap as you use it.

Consumer series laptops are designed with home users in mind, who only use them for 3–4 hours per day. Maximum 6 hours, however the commercial series was created with business users in mind, whose staff typically use computers for 8 to 12 hours each day.

Learn more about overheating:

https://brainly.com/question/17200062

#SPJ4

The complete question is ''A user is experiencing problems with a laptop system overheating. You suspect the CPU cooling fan has a buildup of dust blocking air flow.

Which of the following is the first step you should take in preparation for resolving this issue?

a. Purchase a replacement fan assembly in case the fan is faulty.

b. Remove the fan assembly and clean it with compressed air.

c. Connect an antistatic wrist strap and remove the keyboard bezel.

d. Refer to the laptop manufacturer's service manual.

PLEASE HELP!
Question # 1 Fill in the Blank What is the output?
for num in range(3):
print (num + 5)

Answers

Answer:

The output is :

5

6

7

Explanation:

Given

The above lines of code

Required

What is the program output

The above code is python

This line implies that n has range of values from 0 to 2

for num in range(3):

This adds 5 to num and prints the result

print (num + 5)

So, when num = 0; 5 is printed because 0 + 5 = 5

So, when num = 1; 6 is printed because 1 + 5 = 6

So, when num = 2; 7 is printed because 2 + 5 = 7

Hence, the output is

5

6

7

With each number printed on a separate line

what type of software is used to control a computer? a. application b. interface c. operating system d. utility

Answers

Answer:

c. operating system

Explanation:

the software that supports a computer's basic functions, such as scheduling tasks, executing applications, and controlling peripherals.

How can you place a paragraph of text in a box smaller than the text content, and add a scroll bar?
You can do this by using the __ property and setting it to ___.
(First blank: Border, Margin, Overflow.)
(Second Blank: Auto, hidden, scroll)

Answers

Answer:

I think it's overflow and hidden.

Explanation:

Answer:

You can do this by using the  overflow  property and setting it to  hidden .

Explanation:

given sphereradius, compute the volume of a sphere and assign spherevolume with the result. use (4.0 / 3.0) to perform floating-point division, instead of (4 / 3) which performs integer division. volume of sphere

Answers

The Java program for the radius of the Sphere is as shown below.

How to create a Java Program?

/*

Given sphereRadius and piVal, compute the volume of a sphere and assign to

sphereVolume. Use (4.0 / 3.0) to perform floating-point division, instead of

(4 / 3) which performs integer division.

Volume of sphere = (4.0 / 3.0) π r^3

*/

int main() {

  const double piVal = 3.14159;

  double sphereVolume = 0.0;

  double sphereRadius = 0.0;

  //sphereRadius = 1.0;

cout << "Sphere Radius: ";

cin >> sphereRadius;

  /* Your solution goes here  */

double sphereCube = sphereRadius * sphereRadius * sphereRadius;

sphereVolume = (4.0 / 3.0) * piVal * sphereCube;

  cout << "Sphere volume: " << sphereVolume << endl;

  return 0;

Read more about Java Program at; https://brainly.com/question/18554491

#SPJ1

factors leading to hip subluxation and dislocation in femoral lengthening of unilateral congenital short femur

Answers

Rare and complicated, congenital short femur is a deformity.

We must be aware of every potential problem for the best possible treatment. This study sought to identify the factors that contributed to hip subluxation or dislocation in individuals with a unilateral congenital short femur who underwent femoral lengthening surgery.

Between 1981 and 1993, Alfred I saw forty-four patients with congenital unilateral short femora types I, II, and IIIA. Children's Hospital at duPont Type I patients made up 17, Type II patients made up 9, and Type IIIA patients made up 18, respectively.

Twenty patients had femur and tibia lengthening done simultaneously, while 24 patients had femur lengthening done as a primary procedure.

Learn more about congenital:

https://brainly.com/question/12546225

#SPJ4

plz hurry i'm timed Which type of essay presents one side of an argument to convince readers to support it?

a descriptive essay
an expository essay
a narrative essay
a persuasive essay

Answers

Answer:

persuasive

Explanation:

Persuasive essay

Hope this helps

(This is for photography segment exam btw)

Who created the first known photograph?

A. George Eastman
B. Ansel Adams
C. Joseph Niepce
D. Louis Daguerre

Answers

Answer:

C. Joseph Niepce

Explanation:

C is correct for sureee

6.1.4: Decorate the Fence, what is the code program for the CodeHs Karel lessons?

Answers

Answer:

hi

Explanation:

function start(){

   move();

   move();

   move();

   move();

   move();

   turnLeft();

   

   while(frontIsClear()){

       if(rightIsBlocked()){

           putBall();

           move();

       }

           else{

       move();

   }

   }

putBall();

}

collaborative research: micro-electro-mechanical neural integrated sensing and computing units for wearable device applications

Answers

The above captioned project is one of the projects by Durham School of Architectural Engineering and Construction which in 2019 received a financial support to the tune of $547,037 from the National Science Foundation (NSF).

What is a Neural Integrated Sensing and Computing Unit?

A Neural Sensing Unit is in this case a wearable technology that can detect, decode, and process neural signals from the central nervous system.

An example of a neural sensing unit is the Electroencephalography known as EEG for short. Note that EEG is not wearable. Neither does it have a computing unit.

It is to be noted that a general answer was given due to incomplete and unavailable details related to the question.

Learn more about Neural Sensing Unit:
https://brainly.com/question/27371893
#SPJ1

in python, to assign a string literal to a variable, the string value must be enclosed in quotation marks.

Answers

In Python programming, to assign a string literal to a variable, the string value must be enclosed in quotation marks: True.

What is Python?

Python can be defined as a high-level programming language that is designed and developed to build websites and software applications, especially through the use of dynamic commands (semantics) and data structures.

What is a variable?

A variable can be defined as a specific name which refers to a location in computer memory and it is typically used for storing a value such as an integer or string.

In Python programming, it is very true that for a programmer to assign a string literal to a variable, the string value must be enclosed in quotation marks. For example, print "hello"

Read more on Python programming here: brainly.com/question/26497128

#SPJ1

Complete Question:

in python, to assign a string literal to a variable, the string value must be enclosed in quotation marks. True or false?

One definition of culture suggests that culture is everything you think, everything you do and
everything you possess. The drawing of a cultural system mirrors that definition. In the
drawing, everything you think is represented by:
Technology
Social
Institutions
Ideology
The rectangle

Answers

The drawing that usually represent culture is ideology. The correct option is D.

What is ideology?

An ideology is a set of beliefs or philosophies attributed to a person or group of people, particularly those held for reasons other than epistemic ones, in which "practical elements are as prominent as theoretical ones."

Ideology is a type of social or political philosophy in which practical as well as theoretical elements are prominent. It is an idea system that seeks to both explain and change the world.

Culture can be defined as all of a population's ways of life, including arts, beliefs, and institutions that are passed down from generation to generation.

It has been defined as "an entire society's way of life." As being such, it includes etiquette, dress, language, religion, rituals, and art.

Thus, the correct option is D.

For more details regarding ideology, visit:

https://brainly.com/question/24353091

#SPJ1

How are game designers linked with game players?

A.
In order to be a game player, you must be a game designer.
B.
In order to be a game designer, you must have extensive experience playing video games.
C.
Game designers must survey potential game players before creating a new game.
D.
Game designers create a narrative that game players can shape and become personally involved in.

Answers

Answer:

B) In order to be a game designer, you must have extensive experience playing video games.

Explanation:

You can start by ruling each incorrect answer out.

A) it is not a must to be a game designer in order to play a game

C) it isn't a must, but it is recommended in many cases

D) True, but this does not apply to all games

What is a WYSIWYG program?

A. A program that allows you to see what the HTML code will look like in text form on the site

B. A program that allows you to choose fonts to apply to your HTML codes

C. A program that allows you to take a tutorial on HTML terminology

D. A program that fixes all broken codes from your web page

Answers

Answer:

A. A program that allows you to see what the HTML code will look like in text form on the site

General Formulas and Concepts:

Intro to Digital Tech

HTMLCSS

Explanation:

WYSIWYG, or What You See Is What You Get, is a program designed to allow the user to preview what the HTML code would look like as a final product.

B is incorrect because we use CSS to change font, color, and other things to HTML.

C is incorrect because tutorials can be found online and would not need a program to teach HTML terminology.

D is incorrect because that would be debugging and would use AI and Smart-Sense Intelligence from the coding platform.

WYSIWYG full form - What You See Is What You Get.

Your correct option will be:

Option A. A program that allows you to see what the HTML code will look like in text form on the site.

Hope you could get an idea from here.

Doubt clarification - use comment section.

for your final project, you will create a public service announcement (psa) to teach your peers about digital citizenship and cyber hygiene. you can select any of the topics covered in this unit.

Answers

The ways to write the public service announcement (psa) to teach your peers about digital citizenship and cyber hygiene are:

Select the Topic and Decide on an the people to ask.Know one's Audience. Put together Information on the topic aboveMake use of the  Media well and rightly. Make your Script.Editing the script and then do a Story Boarding.

What is meant by digital citizenship?

Digital Citizenship is known to be a term that connote the ability of a person to be engage rightly, extensively and competently in the world of the digital platforms, working on their skills for effective communication and development.

Therefore, The ways to write the public service announcement (psa) to teach your peers about digital citizenship and cyber hygiene are:

Select the Topic and Decide on an the people to ask.Know one's Audience. Put together Information on the topic aboveMake use of the  Media well and rightly. Make your Script.Editing the script and then do a Story Boarding.

Learn more about digital citizenship from

https://brainly.com/question/27832386

#SPJ1

What are movies filmed before 1990's?

Answers

Answer: Once Upon a Time in the West (1968) PG-13 | 165 min | Western. ...

Cinema Paradiso (1988) R | 155 min | Drama. ...

Blade Runner (1982) R | 117 min | Action, Sci-Fi, Thriller. ...

2001: A Space Odyssey (1968) G | 149 min | Adventure, Sci-Fi. ...

Apocalypse Now (1979) ...

Chinatown (1974) ...

Stardust Memories (1980) ...

Le Notti Bianche (1957)

Explanation:

Which feature in PowerPoint is used to correct common capitalization and text formatting issues but can also be modified for more robust and personalized corrections?

Grammar Checker
Insights
Spelling Checker
AutoCorrect

Answers

Answer:

AutoCorrect: D on edge

Explanation:

Answer:

D.AutoCorrect

Explanation:

a software function that automatically makes or suggests corrections for mistakes in spelling or grammar made while typing.: a computer feature that attempts to correct the spelling of a word as the user types it The iPad boasts an autocorrect system that will try to figure out what you mean to type even when you don't quite tap the right keys.

what is not a type of application software

Answers

Windows nt is not a type of application software.

How would you describe the relationship between blocks of code and commands?

Answers

Code and Commands have similar programs coding has only one thing to do or done but commands can be told anytime by an input device.

The harm of stereotypes are likely to be aggravated in

Answers

Answer:

conflict situations

Answer:

B. Conflict situations

Hope this helps!

Explanation:

2. A machine which is used to process cheques at a bank is a/an:
a. OMR
b. OCR
c. MICR
d. POS ​

Answers

Answer:

C

Explanation:

Option  C is correct. Magnetic Ink Character Reader

A _____ acts as an interface to a database, retrieving data for users and allowing users to enter data in the database.

Answers

Answer:

Explanation:

database is a computer

Select the correct answer.
Which of these components is utilized in use case diagrams?
A.
classes
B.
components
C.
flow
D.
actors

Answers

Answer:

B.components

Explanation:

where should a user disable virus protection settings that might prevent the boot area of the hard drive from being altered? a. bios/uefi setup b. start menu c. device manager d. control panel

Answers

An end user should disable virus protection settings that might prevent the boot area of the hard drive from being altered in the: A. BIOS/UEFI setup.

What is a virus?

A virus can be defined as a malicious software program that moves through computer networks and the operating systems (OS) installed on a computer (host), specifically by attaching themselves to different software programs, links and databases.

This ultimately implies that, you should update the antivirus software and virus definition on a regular basis, so as to protect your computer from the newest viruses.

Furthermore, an end user should disable virus protection settings that might prevent the boot area of the hard drive from being altered in the Basic Output-Input system/Unified Extensible Firmware Interface (BIOS/UEFI) setup.

Read more on BIOS/UEFI here: https://brainly.com/question/15345030

#SPJ1

Other Questions
business communication essentials, by courtland l. bovee and john v. thill. 8th edition. upper saddle river, n.j.: pearson education, 2018. What is rising action of Good Samaritan by Rene sldana larry wants to hold an event that covers dual special needs plans (dsnp). he will use the slide presentation provided by unitedhealthcare to explain the plan benefits and will help consumers complete enrollment applications at the end. what type of event does larry need to conduct? educational event, formal marketing/sales event, formal educational event, informal marketing/sales event, informal [ select ] and [ select ] attributed the five books of the law (genesis-deuteronomy) to moses, although he likely had help from a few other people. In psychology (a social science) if you wanted to use a primary source for an assignment, you would want to use a scholarly journal article that reported original research by the authors.True or False. (PSY101) Which hook effectively introduces an essay with this general information and thesis statement?General information: Despite not being known as rescue animals and usually without formal training, birds have been known to vocally intervene when critical medical help is needed.Thesis: Domestic birds can help their owners in life-threatening situations. If you had to choose, would you say that you like birds, cats, or dogs more? A pet bird can have over 2,000 words in its vocabulary, and sometimes those words save lives. In this essay I will tell you about pet birds that have proven to be big helpers. Joe Goodwing, a bird expert, says that birds are unlikely heroes. dubaiworks manufactures angular contact ball bearings for pumps that operate in harsh environments. the company invested $2.4 million in a process that resulted in net profits of $760,000 per year for five consecutive years. what rate of return did the company make? 2. If freezing rain is falling, then the air temperature is 32F or less.Converse:Inverse:Contrapositive: One anabolic steroid is fluoxymesterone (C20H29FO3). Calculate the percent composition of carbon by mass offluoxymesterone. Which sentence uses parallel structure?A.People should be kind in their actions and in their words.B.People should be kind in their actions and in what they say.C.People should be kind in what they do and in their words. how many wrong can I get in the picat test? In a sample of air at 25 C, the molecules of oxygen, nitrogen and carbon dioxide all move withdifferent average speeds. Which of the following lists the molecules in order of decreasing average speed? 2. Define what is a Flowchart and Algorithm? what is the prescribed dosage of a certain medicine for a 6 year old child if the adult dosage of the medicine is 180 milligrams? a pharmaceutical company has developed a new medication to treat depression. the results of the company's studies indicate that the medication significantly reduces symptoms of depression in 90 percent of people diagnosed with depression. however, numerous well-constructed replications of these studies fail to obtain the same results; rather, the replication studies indicate that the new medication is no more effective than a placebo in reducing the symptoms of depression. researchers can conclude it is likely that the: please choose the correct answer from the following choices, and then select the submit answer button. answer choices company's studies were poorly designed. company's studies used the wrong operational definition for depression. new medication is not an effective treatment for depression. new medication is an effective treatment for depression. Which number is Irrational? asquare root 9 b0.123123123.... c5/9 d0.2535455565.... a contraction period is characterized by the following attributes: businesses that are operating lower productive capacity, unemployment, low retail sales, prices and interest rates, a declining stock market, and expectations of business profits. the most effective type of personal influence to use when buy-in is required is: a. domineering influence. b. position influence. c. interpersonal influence. d. political influence. masamang epekto ng teenage pregnancy How many significant figures are in 91010?