can someone help me with this trace table - its computer science

Can Someone Help Me With This Trace Table - Its Computer Science

Answers

Answer 1

TThe while loop keeps going until count is greater than or equal to 10.

count = 0, sum = 0

count = 2, sum =2

count = 4, sum = 6

count = 6, sum = 12

count = 8, sum = 20

count = 10, sum = 30

Now that count is equal to 10, it exits the while loop and the program ends. The values above complete your trace table.


Related Questions

Lesson 3: Wrapping Up Unit 6
3-D Computer Modeling A Unit 6: Visual Elements

does anyone know pls help

Answers

Answer:

A visual representation of colors arranged according to their hues, or the chromatic relation they share

Explanation:

Answer:

I don't understand what you mean sorry :(

Explanation:

Given the following class, public class Magazine { private static double SUBSCRIPTION_DISCOUNT = .60; private String title;
private String publisher;
private double newsstandPrice;
public Magazine(String theTitle, String thePublisher, double theNewsPrice) {
title = theTitle;
publisher = thePublisher;
newsstandPrice = theNewsPrice;
}
public String getTitle() {
return title;
}
public String getPublisher() {
return publisher;
}
public double getNewsstandPrice() {
return newsstandPrice;
}
public double getSubscriptionPrice() {
// implementation not shown
public void setNewsstandPrice(double newPrice) {
newsstandPrice = newPrice;
}
}
Which of the following methods is an accessor method?
I. getTitle
II. getPublisher
III. setNewsstandPrice

I only
I and II only
II only
I and III only
III only

Answers

Answer:

The answer is "III only"

Explanation:

An accessor method is also an instance function that receives or establishes the value of an object's properties. This method is called methods through obtaining information about an entity. This method reverses it to process, which has two accessory string techniques to reach source string data reference length Accessor method.

Do the lengths of 10,4 and 5 form a triangle explain why please I’m confused

Answers

Answer:

no

Explanation:

Imagine having sticks of these lengths. Attach the 4 and 5 to both ends of the 10. No way you can have them touch each other, not even when the triangle is flat.

The 4 and 5 add up to 9, that is less than 10.

The Triangle Inequality Theorem states that the sum of any 2 sides of a triangle must be greater than the measure of the third side.

Hey guys, I am new here but I keep getting questions that are too hard for me and I already set my grade level, what else can I do

Answers

Answer:

I don't know, Brainly says im an expert but i dont think so

Which statement best describes what a project manager controls

Answers

Project controls are processes for gathering and analyzing project data to keep costs and schedules on track. The functions of project controls include initiating, planning, monitoring and controlling, communicating, and closing out project costs and schedule.

The delegation of responsibilities in a project is a project manager controls. Hence, option D is correct.

What is delegation of responsibilities?

Transferring accountability for particular tasks from one person to another is referred to as delegation. From a managerial standpoint, delegation happens when a manager gives their staff members particular tasks to do.

The manager can distribute authority, but responsibility and accountability cannot, according to the idea of absolute responsibility. Both the tasks that the manager has delegated to his subordinates and the actions of his subordinates fall under his purview of accountability to his own superior.

Effective delegation helps you and your team become better leaders and professionals, frees up time, gets you ready to manage bigger teams, and motivates team members to work harder. A crucial managerial skill to develop throughout your career is delegation.

Thus, option D is correct.

For more information about delegation of responsibilities, click here:

https://brainly.com/question/14875204

#SPJ5

The options were missing-

the overall choice of which work becomes a project

the overall deadline when a project is due

the overall resources allocated for a project

the delegation of responsibilities in a project

which guidelines should be used to make formatting tasks more efficient

Answers

“Use pasted text only; this does not keep the original formatting”
which guidelines should be used to make formatting tasks more efficient

I REALLY Need help on this.

Answers

Make a deposit talk to A representative transfer money and Check account balance

Robert's got a quick hand
He'll look around the room he won't tell you his plan
He's got a rolled cigarette
Hanging out his mouth, he's a cowboy kid
Yeah, he found a six shooter gun
In his dad's closet, in a box of fun things
And I don't even know what
But he's coming for you, yeah, he's coming for you
All the other kids with the pumped up kicks
You better run, better run, outrun my gun
All the other kids with the pumped up kicks
You better run, better run faster than my bullet
All the other kids with the pumped up kicks
You better run, better run, outrun my gun
All the other kids with the pumped up kicks
You better run, better run faster than my bullet
Daddy works a long day
He's coming home late, yeah, he's coming home late
And he's bringing me a surprise
Cause dinner's in the kitchen and it's packed in ice
I've waited for a long time
Yeah, the slight of my hand is now a quick pull trigger
I reason with my cigarette
Then say your hair's on fire
You must have lost your wits, yeah
All the other kids with the pumped up kicks
You better run, better run, outrun my gun
All the other kids with the pumped up kicks
You better run, better run faster than my bullet
All the other kids with the pumped up kicks
You better run, better run, outrun my gun
All the other kids with the pumped up kicks
You better run, better run faster than my bullet
All the other kids with the pumped up kicks
You better run, better run, outrun my gun
All the other kids with the pumped up kicks
You better run, better run faster than my bullet
All the other kids with the pumped up kicks
You better run, better run, outrun my gun
All the other kids with the pumped up kicks
You better run, better run faster than my bullet
All the other kids with the pumped up kicks
You better run, better run, outrun my gun
All the other kids with the pumped up kicks
You better run, better run faster than my bullet

Answers

verry
good
song
love
it
ALL THE OTHER KIDS WITH THE PUMPED UP KICKS YOU BETTER RUN BETTER RUN ! FASTER THAN MY GUN !

PLEASE HELP ME !!!!!!!!

Answers

Answer:

This is way to long

Explanation:

Which SmartArt feature would you use to illustrate bulleted points?

A. Circle
B. List
C. Process
D. Pyramid

Answers

Answer:

List

Example:

* Milk

* Cheese

* Bread

That is bulleted points

Topics with problems or controversies are strong topic ideas.


Please select the best answer from the choices provided

T
F

Answers

Answer:

This would be considered true

Topics with problems or controversies are strong topic ideas is a true statement.

What is ideas in philosophy?

The term ideas is known to be the outcome of human thoughts.

Based on the above, Topics with problems or controversies are strong topic ideas is a true statement because they are entered on relevant areas of human live that need to be addressed.

Learn more about ideas from

https://brainly.com/question/540693

#SPJ1

7.5 Code practice Plz answer ASAP

Answers

def calculate_GPA(grade, weight):

   grades = {"A": 4, "B": 3, "C": 2, "D": 1, "F": 0}

   if weight == 0:

       return grades[grade]

   else:

       return grades[grade] + 1

classes = int(input("How many Classes are you taking? "))

total = 0

for x in range(classes):

   letter = input("Enter your Letter Grade: ")

   user_weight = int(input("Is it weighted? (1 = yes) "))

   grade = calculate_GPA(letter, user_weight)

   total += grade

   print("Your GPA score is: ", grade)

print("Your weighted GPA is a",(total/classes))

I wrote my code in python 3.8. I was able to replicate the output in your picture exactly. If you need me to make any changes, I'll do my best.

The function is an illustration of for loops

For loops are used to perform repetitive operations; just like the while loop

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

#This defines the studentGPA function

def studentGPA(grade, weight):

   #This initializes a dictionary for all grades

   allGrade = {"A": 4, "B": 3, "C": 2, "D": 1, "F": 0}

   #This sets the return grade to 0

   retValue = 0

   #If the grade is valid

   if grade in allGrade:

       #If the weight is 0

       if weight == 0:

           #Then score is not graded

           retValue = allGrade[grade]

       #If otherwise

       else:

           #This adds 1 to the return grade

           retValue = allGrade[grade]+1

   #This returns the grade point

   return retValue

#The main begins here    

#This gets the number of classes

klass = int(input("How many Classes are you taking? "))

#This initializes the total grade to 0

total = 0

#This following is repeated for each class

for x in range(klass):

   #This gets input for the letter grade

   letterGrade = input("Enter your Letter Grade: ")

   #This gets input for the weight

   weight = int(input("Is it weighted? (1 = yes) "))

   #This gets the corresponding grade

   grade = studentGPA(letterGrade, weight)

   #This prints the grade point

   print("Your GPA score is: ", grade)

   #This calculates the total grade

   total += grade

#This calculates the GPA

GPA = total/klass

#This prints the GPA

print("Your weighted GPA is a",GPA)

Read more about for loop at:

https://brainly.com/question/12736327

Justice wrote a program and forgot to put the steps in the correct order. Which step does she need to review?

Planning
Filtering
Ordering
Sequencing

Answers

Answer: Sequencing

Explanation: I did test!

Sequencing step does she need to review.

What is Sequencing?

Sequencing is the act of placing a process's phases in order from start to finish. It is a crucial ability that is employed in math, physics, and other subject areas in addition to reading comprehension.

Look at a few sequence structures that can be used to structure instructions in a passage.

Students simply arrange a series of stages in a process or method in the proper order as part of sequencing activities. They might include topics like how to assemble equipment, set up and name a word processing file, or install an electrical switch.

Therefore, Sequencing step does she need to review.

To learn more about Sequencing, refer to the link:

https://brainly.com/question/30586864

#SPJ3

I need an open response pleaseeeeeee

The format is "Describe‌ ‌the‌ ‌smart‌ ‌home‌ ‌devices‌ ‌impact‌ ‌of‌ ‌technology‌ ‌on education"

Answers

Answer:

Explanation:

Smart Home devices have had a large impact on education. It has allowed students of all ages to better understand the concept of interconnected devices and artificial intelligence. This alone has also opened up a new door of information by allowing for instant answers to question through such smart home devices as Alexa or Home. Which are artificial intelligence virtual assistants.

what purpose would the auto fill feature be most helpful for?

Answers

Answer:

Completing the items in a series

Explanation:

Auto fill is a function found in software and applications that allows you to input a range of numbers or characters in a specific range and finish the entry you began typing with the program.

AutoFill effectively helps you to build tablets more efficiently, allowing you to fill cells with a set of data quickly, It allows you to create whole columns or rows of data that are centered on other cells' values. Autofill is used in all the rows to fill out a specific feature.

6. At age 17, what was Minhaj's definition of the American Dream?

Answers

“To me being American means having the opportunity to reach for our goals. It’s accepting where we come from while embracing our dreams and where we’re headed. It’s what makes America great.”

. Which of the following are container elements?

a. bold b. underline c. italics d. all of these

Answers

It’s c cba to explain

Answer:

I think letter b. underline, but not sure

Skyler is ready to transfer his Webpage files from his computer to a Web server. Which of the
following is a set of rules that enables his large Webpage files to be exchanged between his
computer and the Web server?
O FTP
O SSH
O HTTP
O SSL

Answers

Answer:

FTP

Explanation:

FTP (File Transfer Protocol) is a protocol that allows the transfer of files across different machines.

which of the following statements most accurately describes the difference between aptitudes and skills​

Answers

Explanation

Aptitudes are ability, and skills are the potential. Aptitudes can be learned or trained, unlike skills. Aptitude is the level of skill that a person has gained.

Answer:

D

Explanation:

Pleasee helpppppppppppppppppppppp me!

Answers

The answer is d- Alan Turing

A ________ network has no central computer.

Answers

Answer:

Ring Networks

Explanation:

They do not have a central computer system controlling the operation of the entire network. Instead, the various computers in the network are arranged around a ring, and each computer may communicate with any other computer in the ring.

They lack a centralized computer system in charge of managing the entire network. Instead, the network's many computers are placed in a ring, and any one of them is free to speak with any other computer in the ring.

What role of ring network in central computer?

When a straightforward network is required, ring network topologies are used. They are appropriate for places that do not require particularly fast data transmission rates and where it is unlikely that the network's size or structure will change.

The data move in the shape of a ring from one node to the next. If computer A wants to transfer information to computer D, the information is first put in the packet.

Therefore, A tiny office with only a few nodes, for instance, might employ a ring network design.

Learn more about ring network here:

https://brainly.com/question/15837844

#SPJ2

Do you think people need the product that these businesses offer? Why?

Answers

Answer:

Depends

Explanation:

It depends on what items you're talking about, essentials are definitely a must and if they're a waste, maybe not. It all depends on the buyer honestly since you never know what it could be used for.

also what products were you aiming to talk about?

Select the correct answer.
What is also known as a visual aid in a presentation?
OA. background
OB. animation
OC. review
OD. slide.

Answers

Answer: Slide

Explanation:

A visual aid is something which makes the viewer under the presentation without using the audio and it enhances the presentation. The photographs, graphs, charts are usually included in the slides to make people understand the presentation more clearly.

The slides includes the information in a written form and along with it are attached some photos, pie charts, et cetera.

So, even when the people are not listening to the presentation they can understand the presentation.

What surprised you the most about computer science ?

Answers

Answer:

Computer science is the study of algorithmic processes

Explanation:

:) its interesting

Answer:

don't know

I am not sure what you mean

Explanation:

what type of waves are used on a tv remote control?

Answers

Answer:

(IR) Light

Explanation:

The signal of the remote control, control the pules of the infrared light. But human eye cant see, but can see through a digital camera.

To finish the work safety and early, what OHSP should be done?

Answers

Answer: Always power off and unplug the computer before working on it.

Explanation:


Binary digits can represent the state of an electrical charge. How
many different states of an electrical charge can binary digits
represent?

Answers

On and off can be represented.

What would be the final step to applying your customized voting butons in Outlook messages?
O Type your new choices in the Text Bar.
O Click on Voting Buttons and choose Custom.
O Open the Voting Buttons menu and choose your customized choices.
O Click Submit and your custom voting choices will appear in the message body.

Answers

Answer:

Open the Voting Buttons menu and choose your customized choices.

Explanation:

Answer:

C

Explanation:

Which expression is equivalent to 3x + 3x + 3x?

From Performance Matters

Answers

9x because you can add 3x+3x+3x because they are the same and can be added
Answer:
The answer is 9x

anybody remember that football game that everyone used to play during school

Answers

Answer:

Like an actual video game or the one where you would play during recess then get in trouble when someone got hurt

Explanation:

Other Questions
If polygon ABCD is moved right 3 and up 2, what would the new coordinates of vertex D?a) (0,9)b) (1,0)c) (4,2)d) (-3,5) Do you think that business practices in an Islamic country are likely to differ from business practices in a Christian country PLEASE ANSWERAt Shoe Carnival a pair of shoes costs $83.05. How much do the shoescost after a 15% discount? * If $5,000 is invested at 6% interest, how much money must be invested at 8% interest so that the total interest from the two investments is $660 after one year? what is the historical context of the heliocentric theory What is the area of the real objet that the scale drawing models A. 300 square cm B. 60 square cm C. 25 square cm D. 12 square cm What were the first thermometers made of and what liquid was inside Choose all equations for which x=2 is a solution. A:x+3=5B:x+2=8 C:x+1=1 D:x-2=4 Ex-7=5- 4. A boat shop rents its boats for $20 per hour and charges a flat fee of$10 dollars for insurance in case of damage. What is the total cost forrenting one boat for 5 hours? Hint: multiply and add the fee. *O $100$110$30O $70 Mitosis is responsible for growth, repair, and maintenance in an organism because a. it occurs at a faster rate than meiosis.b. the chromosome number is reduced by half.c. exact duplicates of each mother cell are produced.d. it is the only process that involves replication of genetic material. find the angle with straight line y is equals to root 3 x minus 4 makes angle with y axis what is a relative motion Wasting your timeYou're wasting mineHate to see you leavingFate worse than dyingYour city gave me asthmaThat's why I'm leavingYour water gave me cancerThe pavement hurt my feelingsShout at the wallBecause the walls don't love youShout at the wallBecause the walls don't love youThere's a reasonLondon puts barriers on the tube lineThere's a reasonLondon puts barriers on the railsThere's a reasonLondon puts barriers on the tube lineThere's a reasonLondon puts barriers on the railsThere's a reasonLondon puts barriers on the tube lineThere's a reasonThey fail Last week Tasha and Amy got into a fight at school. Tasha is accusing Amy of talking behind her back. Since the fight, Tasha has beenspamming Amy's social media profile with posts calling her a backstabber, a liar, and a cheat, among other things, Amy insists the matter wasall a misunderstanding, but some of her friends have started to turn against her.In this situation Amy should try to confront Tasha face to face to sort the matter out. (5 points)O TrueO False Which state government has a legislature with only one house while the other 49 states have legislatures with two houses of government eachMarylandNebraskaHawaiiAlaska What is the autput the following machine when the intut is 4INPUT--------Subtract7----------Divide by 3----------OUTPUT Select the correct answer.What is the solution for x in the equation?-3x+7X-8 = 34 + 9x-2OAL =OB.L =COMOC.I = 8OD.I = -8 Two dice are rolled in succession. Determine the probability that their sum is 10 or more, given that the first die is a 5 or 6. Show your work. 4. Segn el articulo, zque obstruye la movtlidad social y la reduccin de la pobreza en Amrica Latina?1.La disparidad de gnero 2. El desequilibrio educativo 3. La disparidad de ingresos 4. El mal desempeo del mercado laboral at southeast middle school 16 1/4 % of the students wear braces. what fraction of the students wear braces?