Kerry is debugging a program. She identifies a line of code to begin execution and a line of code to end execution so that she is only running part of the computer program. Which is she using?
a.variable inspections
b.breakpoints
c.stepping functions
d.line-by-line search

Answers

Answer 1

Answer:

I think it's B on Edge, breakpoints

Explanation:

Answer 2

Answer:

B

Explanation:


Related Questions

what is keyboard?example of computer?

Answers

Answer:

1.Keyboard is a panel of keys that operate a computer or typewriter.

2.Ada Lovelace and MacBook

What is a Keyboard?

An Keyboard is an input Device used to enter characters and functions into the computer system by pressing buttons.

Which of the following are safety rules when using household chemicals?
A. Never mix household products together B. Keep chemicals in their original bottles C. Turn on a fan or open windows when using household chemicals. D. All of the above

Answers

Answer:

D. All of the above.

Explanation:

Answer:

all of the above

Explanation:

js took the test

In a non-linear control structure, the statements are executed depending upon the

Answers

Answer:

test condition

Explanation:

I WILL GIVE BRAINLIEST TO WHO ANSWERS FIRST AND CORRECTLY.
Use this option to view your presentation as your audience will see it.

File menu
Play button
Slide Show button
Tools menu

Answers

You would need to use the slide show button.

Answer:

It's either slide show button or the play button

Explanation:

Jack follows the steps below.
Step 1: He clicks the Design tab on the ribbon.
Step 2: He navigates to the Document Formatting command group.
Step 3: He clicks the Themes icon.
Step 4: He clicks the Office Theme option in the themes gallery.

Which task is Jack trying to do?
A. He is sharing the Office theme with others.
B. He is creating a new theme for his document.
C. He is saving an existing theme to the themes gallery.
D. He is applying an existing theme to his document.

Answers

Answer:

D is my answer to this question.

Answer:

D, He is applying an existing theme to his document.

Explanation:

got the answer correct on edge.

Write any four "Change Case" options available in OpenOffice writter

Answers

Answer:

please mark me as a brainliest

Answer:

In OpenOffice Writer you can change any text to sentence case, lowercase, uppercase, capitalize every word, or toggle case by following the steps below.

Highlight the text you want to change.

Once highlighted click Format and then Change Case.

Within Change Case select the type of capitalization you want.


You can enter more than one element of data in the same field. *

True
False

Answers

Answer:

true

Explanation:

im smart

4.9 question 2 edhesive
Anyone know how to do this???

Answers

I've included my code in a picture. I hope this helps!

Answer:

sum = 0

for x in range (20, 91, 10):

   sum= sum + x

   print(sum)

 

Explanation:

Write a program that prompts the user to enter the number of students and each student's name and score, and finally displays the student with the highest score (display the student's name and score). Also calculate the average score and indicate by how much the highest score differs from the average. Use a while loop.

Answers

Answer:

Follows are the code to this question:

#include <iostream>//defining header file

using namespace std;

int main()//defining main method

{

int n,s=0,j,number,h=-1;//defining integer variables

string name, nh;//defining string variable

float avg;//defining float variable

cout<<"Enter the number of students: ";//print message

cin>>n;//input value in n

while (j< n) //defining loop for input value

{

getline(cin, name);//use getline method to input value

cout<<"Enter the student name: ";//print message

getline(cin, name);//use getline method to input value

cout<<"Enter the score: ";//print message

cin>>number;//input number value

s+= number;//add numbers into s variable

if(h<number)//defining if block that checks h is greater then number

{

nh= name;//use string variable nh to store name value

h= number;//use integer variable h to store name value

}

j++;//increment j value by 1

}

cout<<name<<endl;//print highest name value

cout<<"score: "<<h<<endl;//print highest score value

avg = (float)s/(float)n;//calculate the average value

cout<<"Average is: "<<avg<<endl;//print average value

cout<<"Difference: "<<(h-avg)<<endl;//print average difference

return 0;

}

Output:

please find attached file.

Explanation:

In the above code, inside the main method four integer variable "n,s,j, number, and h", two string variable "name and nh" and one float variable "avg" is defined.

In the next step, n is defined that is used for the input value. and Inside the main method, a while loop is defined, which uses the "getline" method to the input value, and use s variable to add all numbers.

In the next step, if a block is defined that checks "h" is greater than the number value if the condition is true, it will print the highest value of the input variable and its average difference.

Electronic medical charts make it easier for doctors to

share information on patients with other doctors.
share information on patients with the government.
communicate with patients about medical issues.
track infectious diseases through a database.

Answers

Answer:

Share information on patients with other doctors

Explanation:

Got it right on edge test

Answer:

Share information on patients with other doctors

Explanation:

A folder is one icon considered a short cut true or false

Answers

Answer:

True

Explanation:

A shortcut can be an icon that points to a certain app or website.

I WILL GIVE BRAINLIEST TO WHO ANSWERS FIRST AND CORRECTLY.
Select the statements that describe working with text in presentation programs.

Working with text in presentation programs requires learning a new set of rules.
Working with text in presentation programs is similar to working with text in other applications.
The alignment of text in placeholders cannot be changed.
Font size and font color can be changed in presentations.
Audience size influences font size.

Answers

Answer:

Your answer is 1, 3, and 4.. Working with text in presentation programs requires learning a new set of rules, The alignment of text in placeholders cannot be changed, and Font sizes and color can be changed in presentations... Hope this helps!

Explanation:

Which selling method is most likely to irritate potential customers? A. Running a trade fair booth B. Cold calling C. Running a flea market booth D. Telemarketing to people who are interested in the product. ​

Answers

Answer:

B

Explanation:

Answer:    B.   Cold Calling

Explanation:

In business, cold calling means to contact people who haven't actually proved to be interested in their products/services. A salesperson may try cold calling to try and convince the person to be. This may be irritating to potential customers because instead of finding it out for themselves, the salesperson is shoving information down their throats.

I hope this helped!

Good luck <3

In Python, arrays are usually reserved for
sorting operations.
indexing operations.
searching operations.
numerical operations.

Answers

Answer:

D on Edge, or Numerical Operations

Explanation:

In Python, arrays are usually reserved for numerical operations, such as sorting numbers from lowest to highest.

Answer:

D

Explanation:

What process should be followed while giving a reference?
sam

Answers

Keep the information factual. Avoid opinions about issues such as personal conflicts
Qualify what you say. For example, “It was our experience or “In this situation
Make your praise specific. ...
Refer to specific tasks or projects
Avoid examples that highlight a candidate's weaknesses.

4.5 Code Practice


Write a loop that inputs words until the user enters STOP. After each input, the program should number each entry and print in this format:

#1: You entered _____
When STOP is entered, the total number of words entered should be printed in this format:

All done. __ words entered.

Sample Run
Please enter the next word: cat
#1: You entered cat
Please enter the next word: iguana
#2: You entered iguana
Please enter the next word: zebra
#3: You entered zebra
Please enter the next word: dolphin
#4: You entered dolphin
Please enter the next word: STOP
All done. 4 words entered.

Answers

In python 3:

i = 0

while True:

   word = input("Please enter the next word: ")

   if word == "STOP":

       break

   i += 1

   print("#{}: You entered {}".format(i, word))

print("All done. {} word(s) entered.".format(i))

I hope this helps!

The program is an illustration of loops.

Loops are used to perform repetitive operations.

The program in Python, where comments are used to explain each line is as follows:

#This gets input for the first word

word = input("Please enter the next word: ")

#This initializes count to 0

count = 0

#The following iteration is repeated until the user enters "STOP"

while word != "STOP":

   #This prints the word entered

   print("You entered",word)

   #This increments count by 1

   count += 1

   #This gets input for the next words

   word = input("Please enter the next word: ")

   

   

#This prints the count of all words

print("All",count,"words entered!")

At the end of the program, the number of valid inputs is printed.

Read more about similar programs at:

https://brainly.com/question/18283451

In a business environment, in which situation would email be more appropriate for communicating than texting?
А
Sending a message to your supervisor for not able to attend social gathering
00
Sending a contract to your supervisor for her review and advice
C с
Sending a message to a friend about meeting at the ballgame later that evening
D
Sending a message to a co-worker about a special delivery at the front desk

Answers

Answer:

The answer to this question would be the second one.

Explanation:

The reason for this is because all of the other answers are not as work-related as the second one.

Why can't you test a program for run-time errors when it has compile-time (syntax) errors

Answers

Answer:

your computer will not allow it

Explanation:

because it is not one of the main dyonostics

Complete the sentence.
use only apps acquired from app stores.
PLEASE HELP

Answers

Answer:

that's a hard one maybe u should email ur teacher bc the punctuation on that is fine and it's not an incomplete sentence

Ccccccccccccccccccccccc

How is computer programming useful in real life? Help me

Answers

It can help you with technology and can help you become a computer programmer if you like technology hope this works I’m sorry if it doesn’t

What is Hypertext Transfer Protocol?

Answers

Answer:

an application layer protocol for distributed, collaborative, hypermedia information systems.

Explanation:

+20 POINTS!!!~~~~~When adding delegates to his mailbox, which role should Joel use if he would like the user to be able to read and create items in a particular folder?

Editor
Publishing Editor
Author
Manager

Answers

Answer:

B) Publishing Editor

Explanation:

Joel should use the publishing editor tool. The correct option is B.

What is a mailbox?

A mailbox is where electronic mail messages found on a remote server or downloaded to the user's hard drive are stored.

In this scenario, the role he should assign to the delegates is the publishing editor. This role grants them the ability to create, read, modify, and delete all items within a given folder, as well as create subfolders.

The other options listed either do not grant access to create/modify existing files or simply grant all of these rights to files created by the user but not to files already present in the folder. As a result, this would be the most appropriate role for Joel's goals.

To know more about mailbox follow

https://brainly.com/question/13276817

#SPJ6

Tim is trying to explain to his aunt how her computer works, but she does not understand what a CPU does. Which description will most likely help Tim’s aunt understand the CPU’s role?

Answers

Answer:

CPU is considered as the brain of the computer. CPU performs all types of data processing operations. It stores data, intermediate results, and instructions (program). It controls the operation of all parts of the computer.

Explanation:

Answer:

The CPU processes commands from software.

Explanation:

Learned on edge

If you can’t see the Assets panel, which of these three buttons do you press?

A) Plugins
B) Assets
c) Layers

Answers

Answer: B

Explanation:

The answer is B


Explanation

I did it

would a interactive book be considered a game?

Answers

[tex]\huge\bold\red{Answer:-}[/tex]

✮With its anthology of Interactive Fiction, Studio Oleomingus creates an interplay of text and built environments.

✮The readers/viewers are given the freedom to tailor the story according to their own sensibilities.

FOLLOW ME ♥️

Answer:

No i wouldn’t say so

Explanation:

If the grade is 60, which action will be executed?

Answers

Answer:

Study with tutor

Explanation:

Edgenuity

In a paragraph of 125 words, describe the benefits of having an electronic résumé.

Answers

Answer:

Employers benefit from the advantages online resumes offer, including having access to a host of possible applicants based on specific search criteria and limiting their search to applications that possess the exact skills and qualities they are looking for.

Answer:

There are numerous advantages to creating an online resume. Companies themselves are increasing their use of online services because they offer significant cost savings over traditional hiring methods. As such, many industries and government organizations will now specifically ask job seekers to post their resumes online in a specific format (e.g., MS Word, HTML, or PDF), either by uploading them from another location or recreating them on their website.

     However, the main advantage of online resumes is that they are instant; sending a resume through the mail is likely to take days, and if a company needs to hire someone fast, or are looking for temporary or freelance work, they're unlikely to go to the trouble to post an advertisement, wait for resumes to arrive, and then sort through them.

     Companies will instead be looking for a speedy solution, and having an online resume immediately opens up these avenues to you.

     Keeping your resume online also allows you to instantly update your resume with your most recent achievements, even notifying potential employers of this update if they are considering your resume.

Explanation:

A family member who hasnít worked with computers before has decided to change jobs. Youíve been asked to explain some of the basics. You begin by explaining the basic idea of word processing software, spreadsheets, databases, and presentation software. You sense that the following question is coming: ìWhy so many different things? Why canít there just be one software that you could use for everything?î How would you answer?

Answers

There are too many diverse forms of media. For all of them to be suited under one program would make every server monotonous and pretty much the same. With different programs, different forms of diverse media are created.

How to use modulo operator in Java

Answers

To use modulo in Java, you have to use the percent symbol %.

For instance,

int x = 2;

int y = 2;

System.out.println(x%y) will print 0 to the screen.

Maria has designed an app for a shopping mall. She is planning to use Google’s cloud testing facility. What will this facility do?
A.
It will offer actionable insights about users.
B.
It will enable her to manage a staged rollout.
C.
It will test the app on a wide range of physical devices.
D.
It will help her acquire new users.

Answers

Answer:

C I think

Explanation:

Other Questions
Choose the correct word form of 187.023 1 x 100 + 8 x 10 + 7 x 1 + 2 x 0.01 +3 x 0.001one hundred eighty-seven. twenty-three thousandthsone hundred eighty-seven and twenty-three thousandthsone eight seven twenty-three thousandths Find the balance in the account after the given period. $4000 principle earning 3% compounded annually 6 years Help me on these questions please answer 22-26 1)How did U.S policy towards the Plains Indians change in the late 1850s? In the human body, is every organ a part of only one organ system? Or are some organs a part of two or more organ systems? A. Every organ is a part of only one organ system, which is necessary because organ systems work independently of one another. B. Every organ is a part of only one organ system, although organ systems often interact with one another. C. Some organs are a part of two or more organ systems. For example, the heart is a part of the circulatory and digestive systems. D. "And thus every man, by consenting with others to make one body politic under one government, puts himself under an obligation, to every one of that society, to submit to the determination of the majority, and to be concluded by it" John Locke, Two Treatises on Government The first African American to serve in Congress wasEbenezer D. Bassett.Francis Cardozo.Blanche Bruce.Hiram Revels. Guide QuestionsThe Last Dog1.Before the story begins, Brock has wandered into many "ancient fictions. Describethese "ancient fictions.2. Describe the dome where Brock lives.3. A proverb in Brock's world is The key to survival is efficiency. 4. Give an exampleof something that happens in Brock's world that illustrates this proverb.5. How was Brock raised as a child?6. Which event takes place before Brock meets the dog?7. What is the puppy doing when Brock first finds it? 8. Describe the people in Brocks world as to their behavior and feelings. 9. How does meeting the dog change Brock? How does this meeting change both his personality and his future? 10. Why does Brock bite brog on the tail? 11. Find the meaning of the following words: foresighted, evasive, languishing, disembodied,foray,reproof, copious, posterity. 12. What is the last thing Brock does in the story? What is the relationship between biomes and ecosystems???Please answer soon At a local business school, there is a toasted submarine sandwich process that uses a conveyor-fed oven. ( See picture below) Alice is the sole operator of the sub making process. In the first step of the process, she spends 2 minutes putting various ingredients in the sub. Then, she puts the sub on a conveyor belt and, over a period of 12 minutes, the conveyor moves the sub from the beginning of the oven to the end of the oven, fully toasting it. After the sub comes out of the oven, Alice spends 1 minute slicing the sandwich and putting it in a box. At most, 5 subs can fit in the oven at once. The toasting time in the oven does not depend on the number of subs in the oven.Required:a. Draw a process-flow chart for the sandwich-making process.b. Calculate the hourly capacity of this sandwich-making process.c. Suppose another employee is hired to do the slicing and boxing, and Zeynep now only loads the sandwiches with the right ingredients. What is the hourly capacity of this process with the additional employee? someone help with this ASAP I HAVE FEW MINS !!! Curtis charges a flat fee of $2.50 for each delivery plus $0.20 per mile for each mile he drives. For one delivery, Curtis drives 6 miles. The company evaluates all projects by applying the IRR Rule. If the appropriate interest rate is 9%, should the company accept this project? Describe Southern politics What is wrong with the answer, 10.5 x 10^3? Think about the proper form used to show a number in scientific notation. the moon lost its volcanic __ beacuse of its weak gravity Shenandoah Skies is the name of an oil painting by artist Kara Lee. In each of the following cases, determine the amount and character of the taxpayers gain or loss on sale of the painting. A. The taxpayer is Kara Lee, who sold her painting to the Reller Gallery for $6,000. B. The taxpayer is the Reller Gallery, who sold the painting purchased from Kara to a regular customer for $10,000. C. The taxpayer is Lollard Inc., the regular customer that purchased the painting from the Reller Gallery. Lollard displayed the painting in the lobby of its corporate headquarters until it sold Shenandoah Skies to a collector from Dallas. The collector paid $45,000 for the painting. What is the only real number which, when divided by itself, is 2020times itself? Blago Wholesale Company began operations on January 1, 2017, and uses the average cost method in costing its inventory. Management is contemplating a change to the FIFO method in 2018 and is interested in determining how such a change will affect net income. Accordingly, the following information has been developed: 2017 2018 Final inventory: Average cost $150,000 $255,000 FIFO 160,000 270,000 Condensed income statements for Blago Wholesale appear below: 2017 2018 Sales $1,000,000 $1,200,000 Cost of goods sold 600,000 720,000 Gross profit 400,000 480,000 Selling, general, and administrative 250,000 275,000 Net income $150,000 $205,000 Required: Based on this information, what would 2018 net income be after the change to the FIFO method?