Cheri's teacher asked her to write a program using the input() function. What will this allow her program to do?
Add comments to the code
Allow others to understand the code
Display a string on the screen
Make the program interactive

Answers

Answer 1

Answer:

D

Explanation: I took the test.

Answer 2

Answer:

D

Explanation:

1: A imput() would allow it to be interactive that means you can "imput" your awncer.

Hope this helped :)


Related Questions

1 1
2 14
7 4
10 31
- What do you think this list represents?
Hint: pay attention to the format of the list (two numbers) ... also, this list
happens throughout the year.
o Answer:

Answers

Answer:

they are all holidays

Explanation:

Jan 1st New years

Feb 14th Valentines day

July 4th Independence day

October 31st Halloween

What are some characteristics of effective notes? Check all that apply.
The notes are neatly formatted.
The notes have dates.
The notes contain a little information.
The notes use abbreviations.
The notes avoid headings.

Answers

Answer:

It is A,B, and D

Explanation:

The characteristics of effective notes are the notes are neatly formatted, the notes have dates, and the notes use abbreviations. The correct options are a, b, and d.

What are effective notes?

Notes are the list of things that are written to memorize them easily. It is also an extract of large books or school materials.

Taking notes is mostly used to promote active learning and create study materials for exams. You should be able to organize material into an understandable format that will aid in your learning process by developing note-taking skills.

Observe a happening. This section may consist of a lecture by the instructor, a lab experiment, a slide display of the works of an artist, or a passage from the assigned reading. Take notes about what you observed in that situation.

Therefore, the correct options are

a. The notes are neatly formatted.

b. The notes have dates.

d. The notes use abbreviations.

To learn more about effective notes, refer to the link:

https://brainly.com/question/14314367

#SPJ2

Which calendar view is based on a user's configuration of the five days of the week that the user works along with
work hours, configurable in the Outlook Calendar options?
Day
Schedule View
Week
Work Week

Answers

Answer: Work Week

Explanation:

i just did the review

Answer:   D) Work Week

How does Frankenstein feel about his creation?

He hates the creature and wants to kill him.

He feels guilty for creating the creature.

He feels a sense of obligation towards his creation.

He feels responsible for the creature’s suffering.

Answers

Answer:

he just regrets that he made a monster and deeply feels guilty that it is in pain of reliving

Explanation:

Select the correct answer.
Which task represents an unethical use of technology and resources at the workplace?
OA. using computer resources for an upcoming project presentation
OB. sharing a coworker's performance scores with colleagues
OC. generating a confidential report after receiving proper authorization
OD. providing references and giving due credit for work that isn't one's own
O E. printing presentation notes for an upcoming client meeting
Reset
Next

Answers

Answer:

A

Explanation:

because when you make a presentation so you are already use technology

Answer:

a

Explanation:

Please help, this question is from plato.
What is the purpose of the domain name?
The domain name: (.net , .com , org , .gov)
is an example of a service provider. The domain name .gov.nz is an example of a (New york , New Zealand, news, commercial)
government website.

Answers

Answer:

New Zealand government

Explanation:

Answer:

.net is for service providers and .gov.nz is for new Zealand governement

Explanation:

WILL GIVE BRAINLIEST, JAVA PROGRAMMING PLS HELP
Here is the prompt:
The code provided is intended to use a while loop to print the first 9 multiples of an integer entered by the user. For example if the user enters 5, the program should print the numbers 5, 10, 15.,... up to 45, one per line. Debug the code so it functions as described.
Here is the code:
Scanner scan = new Scanner(System.in);
int num = scan.nextInt();
int fac = 1;
while(fac < 9){
System.out.println(num*fac);
fac++;
System.out.println(num*fac);
}

}
}

Answers

Answer:

import java.util.Scanner;

public class Main {

   public static void main(String[] args) {

       Scanner scan = new Scanner(System.in);

       int num = scan.nextInt();

       int fac = 1;

       while(fac <= 9){

           System.out.println(num*fac);

           fac++;

       }  

   }

}

Explanation:

Hello, I tried out your program, and I just wanted to point out some little issues :)

You need to import the java.util.Scanner in order to use Scanners :)

Also, (not sure if you just didn't copy the stuff at the start) but you need the public class and the public static void main.

Last of all, since you're printing out all of the first 9 multiples, the 9th is included, so you use <= instead of <.

I have sent you the right code above ^^ :)

Please mark brainliest if this has helped you.

Debugging a code involves locating and fixing the errors/bugs in the code.

The error in the code is that, the following print statement is repeated twice

System.out.println(num*fac);

The correction is to remove the first appearance of

System.out.println(num*fac);

So, the corrected code is as follows

Scanner scan = new Scanner(System.in);

int num = scan.nextInt();

int fac = 1;

while(fac < 9){

System.out.println(num*fac);

fac++;

}

Read more about debugging at:

https://brainly.com/question/23527739

Need it ASP please
like rte now plz help me ​

Answers

Answer:

b

Explanation:

A path between two nodes in a network. It may be known to be  the physical cable, the signal transmitted within the cable or to a sub channel within a carrier frequency. In radio and TV, it refers to the assigned carrier frequency.

Answer:

Hey not to be mean but do I know you. you added me in my both accounts just asking

Explanation:

B

How major is the technology problem in the United States?

Answers

Answer:

The technology problems in the U.S are like

New security threats. Headline-grabbing recent events may spark surprising new security threats, says Rick Grinnell, founder and managing partner of Glasswing Ventures. ...

Data protection. ...

Skills gap. ...

Multi-cloud security. ...

Innovation and digital transformation. ...

Finding new revenue streams. ...

Lack of agility. ...

Outsourcing risks. danger

Explanation:

Hope this helped!!!

What is the dotted path called when creating a motion tween?

Answers

Answer:

Tween dots

Explanation:

When creating a motion tween in Adobe, the dotted path is called tween dots or frame dots and it is used to show the position of the intended object in the same timeline.

Hey y'all I need this answer like immediately. How do you select non-adjacent cells in Excel? I'll give you brainliest, pleaseee!!!

Answers

Answer:

Click on a cell to select it. Or use the keyboard to navigate to it and select it.

To select a range, select a cell, then with the left mouse button pressed, drag over the other cells.

Or use the Shift + arrow keys to select the range.

To select non-adjacent cells and cell ranges, hold Ctrl and select the cells.

Explanation:

i hope that helps! if it doesn't help than i'm sorry!!

Can someone help me with these questions it's for drivers ed

Answers

Answer:

OK

Explanation:

1= I

2= C

3= H

4= B

5= E

6= G or J

7= D

8= A

9= F

10= G or J

Which line of code converts 2.56 into a string data type?

string(2.56)

str(2.56)

makestring(2.56)

tostring(2.56)

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The correct option for this question is tostring(2.56).

when you will convert any value/number to string then you call tostring() function. Because it is a builtin function in most of the language. It converts any value given in the parameter to a string.

Other options are not correct because string(2.56) looks a name of function string with parameter 2.56. str() and makestring() presenting the same purpose because their name shows that they are user-defined functions.

Answer:

str(2.56)

Explanation:

Joann wants to save the building block she created for the title of her company.
In which file does she save this building block?
O Building Blocks.dotx
O Building Blocks.html
O Building Blocks. thmx
O Building Blocks.qpbb

Answers

Answer:

The actual answer is A.

Explanation:

Answer:

a

Explanation:

This is a True or False question. Please Help!!

Answers

hold the alt and press the mouse to drag and release to drop

The awnser to this is D, control

What are the four types of technical drawing?​

Answers

Answer:

3D drawings (isometric perspective)

exploded-view 3D drawings

complete working drawings

detail drawings (2D orthogonal projections)

diagrams

Write the javascript coding using the conditional statement for the following Scenario

Display 1."status=walking" if the entered speed is less than 10 and greater than 2

2. "status=cycling or driving" if speed>10. otherwise if speed is equal to zero display "status=idle".

Answers

Answ

can ive the website from where u got it

Explanation:

it is important to give the health and safety experience to new or inexperienced workers, including those that have been away from the workforce for some time
a. training
b.exposure
c.hygiene​

Answers

Answer:

a. training

Explanation:

"Training" is crucial when it comes to new workers or workers who are coming back after a long vacation or whatever reason. The risk of injuries and making mistakes is high for new workers because they are still adjusting to the company's processes. This is similar to a baby who's learning to walk. The baby makes several slips before mastering the skill. For a worker who has been away from the workforce, training should also be given because that worker needs to freshen up his skills and relearn what he needs to grasp before working.

This situation is especially true to construction workers who work under contractual projects. This means, they always have to be trained every time about their new jobsite before even working.

Which of the following statements about variables or values are true? Check all that apply.

Variables store values.

Variables store permanent data.

Values are the result of functions.

Variables in code are useful only on a single occasion.

Answers

Answer:

A and C

Explanation:

Variables store values as well as values are the result of functions. The correct options are A and D.

What are variables?

A variable in programming is a value that can change based on external factors or data that has been supplied to the program.

A program typically consists of data that it uses while running and instructions that tell the machine what to execute.

A variable is a place where values are kept. In order to use a variable, we must first declare it in order to inform the program that it exists and then assign it in order to inform the computer of the value we are placing in the variable.

Values are both stored in variables and the output of functions. Variables can have a wide range of values, which is why they are called variables.

Thus, A and D are the correct options.

For more details regarding variables, visit:

https://brainly.com/question/17344045

#SPJ2

What is computer. Write full form of mips​

Answers

Answer:

Stands for "Million Instructions Per Second." It is a method of measuring the raw speed of a computer's processor. ... The MIPS measurement has been used by computer manufacturers like IBM to measure the "cost of computing." The value of computers is determined in MIPS per dollar.

BIOS has two Jobs. One is to boot up, or start, the computer. What is the other?
Pl I need help

Answers

Answer:

Determining what peripheral dives are being used

Explanation:

BIOS, in full Basic Input/Output System, a Computer program that is typically stored in EPROM and used by the CPU to perform start-up procedures when the computer is turned on. Its two major procedures are determining what peripheral devices (keyboard, mouse, disk drives, printers, video cards, etc.) are available and loading the operating system (OS) into main memory.

P.S. I would include a link to the website I copied this answer from but it's not letting me.

Which statement is true about the location-sharing site Gowalla?

Answers

Answer:

a user gets a newbie badge for their first check-in into gowalla.

Explanation:

A user gets a newbie badge for their first check-in into gowalla.

What is Gowalla?

On the location-based social networking site Gowalla, members can check-in to broadcast their whereabouts. The undirected friendship network, which has 196,591 nodes and 950,327 edges, was compiled using their open API.

Longtime readers of TechCrunch will probably remember the startup as an ambitious consumer social app that first caught the attention of Silicon Valley investors but ultimately failed to gain traction.

It appeared that the tale would end there, founder Josh Williams tells TechCrunch that he has made the decision to bring back the Gowalla name and advance its original intent by relying on augmented reality technology.

Therefore, A user gets a newbie badge for their first check-in into gowalla.

To learn more about Gowalla, refer to the link:

https://brainly.com/question/12028030

#SPJ2

full form of SMPT???

Answers

Answer:

Simple Mail Transfer Protocol (SMTP) is the standard protocol for sending emails across the Internet.

The operation of early electronic computing devices required:

an operating system (OS).

a single human operator.

customer-produced helper program libraries.

several computers networked together.

Answers

Answer:

c

Explanation:

Select all that apply.

Which of the following are grouping found in the Page Design tab?

Page grouping
Page Setup grouping
Layout grouping
Insert grouping
Schemes grouping
Design grouping

Answers

The grouping that are found in the Page Design tab include the following:

A. Page grouping

B. Page Setup grouping

C. Layout grouping

E. Schemes grouping

A page design can be defined as the way in which a page is organized, arranged and presented to end users. Also, the way the contents of a page are arranged is referred to as page layout.

In page design, there are two (2) main types of page layout and these include:

Landscape orientationPortrait orientation

Generally, the Page Design tab is made up of group of commands that can be used to create, modify (edit), and manipulate a page and they include the following:

1. Page grouping

2. Page Setup grouping

3. Layout grouping

4. Schemes grouping

Read more on Page Design here: https://brainly.com/question/8391970

What kinds of useful tags might you use to help you organize and find the documents in the future?

Answers

Answer:

you can use color tags(blue for biology) or just simply word tags (biology for biology)

Explanation:

Hope this helps a little.

The useful tags might you use to help you organize and find the documents in the future insertion point.

What is the use insertion point?

If any user or person scrolls the following contents by using the keyboard from one position to another position in the document of the user then, the insertion point moves automatically without any implementation when the user presses any key they want. If the user clicks on the arrow keys then, it also works like that.

The <dd> tag is used in HTML document to explain set of terms. The <dd> tag list is used in conjunction with the <dl> term. Inside a <dd> tag we can insert text, sentence, paragraph or links. There are 4 primary tags to build any website. Every HTML document begins and ends with HTML tag.

The PCR stands for 'Patient Care Report.' It is a legal document that needs to have all the procedures done to the patient. This document becomes part of the patients permanent medical record and is used in court in legal cases. It is also used to bill medical expenses.

Therefore, The useful tags might you use to help you organize and find the documents in the future insertion point.

Learn more about insertion point on:

https://brainly.com/question/14274782

#SPJ2

___________________________________________________________________________________________PLS HE;LP!

Answers

Answer: Oh okay, what do I help with

Explanation:

Match each scenario to the absolute value expression that describes it. 1. the distance moved when going backwards five spaces in a board game |-5| 2. the amount of improvement when increasing your grade by 7% |+7| 3. the change in height when climbing a 5-foot wall |+5| 4. the change of an account balance when spending $8 |-8| 5. the effect of eating five out of one dozen pears |+8| 6. the amount of change when the temperature rises from 5°C to 13°C |-7| i will mark brainlist

Answers

Answer:

that is what it looks like now you should know what the answer.

Explanation:

What is an Odometer (Driver's Ed)

Answers

Answer:

It's the thing that indicates the total number of miles the car has been driven.

Explanation:

I hope this helps!

Answer:

an instrument for measuring the distance traveled (as by a vehicle)

Explanation:

Hope this helps! <3

Pls help!!!!!!!!!!!!

Answers

Answer:

think D and A

Explanation:

Not 100% sure good luck

the first and fourth one. hope this helps :)
Other Questions
Solve the multistep inequality. 4x + 3 < 5x 6 Question 3 (1 point)Which of the following best explains the scenario below?On a summer morning, Mrs. Houser walks barefoot across her paved driveway withno problem. However, later that afternoon she steps barefoot onto the samedriveway and must quickly run off because the bottoms of her feet feel like they areburning. (Lesson 3.02-3.04 Thermal Energy)Choose the best explanation for this scenario:As the temperature increased during the day, the particles in the pavementmoved slower and the thermal energy decreased.As the temperature increased during the day, the particles in the pavementmoved faster and the thermal energy decreased.As the temperature increased during the day, the particles in the pavementmoved faster and the thermal energy increased.As the temperature increased during the day, the particles in the pavementmoved slower and the thermal energy increased.Pls help ASAP Which is more efficient in terms of producing ATP from glucose?1) Anaerobic respiration2) Aerobic respiration Which of these choices is a method of indirect characterization?describing a character's personalityexplaining what a character looks likeshowing how a character solves problemssumming up a character's backgroundPLZ anzwer ASAPthis is language arts solve for a in the figure shown. What animals, plants, and objects are associated with Artemis? Shannon goes on vacation to Turkey with her family. Wanting to see if pizza is the same in all countries, she and her family go to a franchise pizza restaurant they visit frequently at home. They are astonished that the pizza that costs $10 at home costs 50 Turkish lira! They discuss why the pizza would cost more money, especially because it tastes almost the same.What might cause a $10 pizza to cost 50 lira in Turkey? What number is between 0.3 and 7.5 3. According to the tables provided in lecture on gender inequality by income/occupation/class, in which socialclass of work do women out eam men?a female dominated working poor occupations.b. female dominated middle class occupations.c. all occupations when they are female dominated.d. never 12. Which of the following should a writer's workshop NOT involve? O Argument O Analysis O Discussion O Active listening For which of the following reasons did Stephen F Austin need a new contract to establish a colony HELP ME PLZZ I DONT WANT TO FAIL!!!! 7Raul went to the store and bought 2.5 pounds of chicken for $10.00. What was thecost per pound of the chicken? Round your answer to the nearest cent, if necessary.(5 Points)*A. $3.00O B. $4.00C. $0.56D. $2.6 what are warshiped arabs before lhe islam -5 A six-sided number cube is rolled twice.Choose all of the dependent events.A. The event that the first roll is a 3 or 4, and the event that the sum of the rolls is greater than 7.B. The event that the first roll is greater than 3, and the event that the second roll is less than 3.C. The event that the first rollis even, and the event that the second roll is also even.D. The event that the first rollis odd, and the event that the sum of the rolls is 8.E. The event that the first rollis odd, and the event that the second roll is a 1. The selection from the Navajo Origin Legend shows the origin ofA. buckskinB. cornC. marriageD. funeral It is important to know that the traditional crafting should be considered just as valuable as any of the fine arts Is (-4, 15) a solution to the equation y = -2x + 5? How do you know (PLEASE EXPLAIN HOW YOU KNOW)? Write a quadratic equation with the following transformations.1. Reflected over the x-axis2. Moved down 6