PLS HELP <3 Type the correct answer in the box. Use numerals instead of words. If necessary, use / for the fraction bar.

var a = 0;

var b = 1;

var c

for(i = 1; I <= 5; i++)

{

C = a +b;

a = b;

b = c;

}

document. write(c);

The output of the document. write statement is ____?

Answers

Answer 1

Answer:

The output of the document. write statement is

Explanation:

Initially: [tex]a = 0[/tex] and [tex]b = 1[/tex]

The iteration is repeated 5 times and the calculation is as follows:

First iteration:

[tex]c = a + b =0 + 1 = 1[/tex]:=> [tex]c = 1[/tex]

[tex]a = b[/tex]:=> [tex]a= 1[/tex]

[tex]b = c[/tex]:=>[tex]b = 1[/tex]

Second iteration:

[tex]c = a + b =1 + 1 = 2[/tex]:=> [tex]c = 2[/tex]

[tex]a = b[/tex]:=> [tex]a= 1[/tex]

[tex]b = c[/tex]:=>[tex]b = 2[/tex]

Third iteration:

[tex]c = a + b =1 + 2= 3[/tex]:=> [tex]c = 3[/tex]

[tex]a = b[/tex]:=> [tex]a= 2[/tex]

[tex]b = c[/tex]:=>[tex]b = 3[/tex]

Fourth iteration:

[tex]c = a + b =2 + 3= 5[/tex]:=> [tex]c = 5[/tex]

[tex]a = b[/tex]:=> [tex]a= 3[/tex]

[tex]b = c[/tex]:=>[tex]b = 5[/tex]

Fifth iteration:

[tex]c = a + b =3 + 5= 8[/tex]:=> [tex]c = 8[/tex]

[tex]a = b[/tex]:=> [tex]a= 5[/tex]

[tex]b = c[/tex]:=>[tex]b = 8[/tex]

End of iteration

document. write(c) prints the value of c which is 8


Related Questions

What programming language does the LMC 'understand'?

Answers

Answer:

The LMC is generally used to teach students, because it models a simple von Neumann architecture computer—which has all of the basic features of a modern computer. It can be programmed in machine code (albeit in decimal rather than binary) or assembly code.

Consider the following static method, calculate.

public static int calculate(int x)
{
x = x + x;
x = x + x;
x = x + x;

return x;
}
Which of the following can be used to replace the body of calculate so that the modified version of calculate will return the same result as the original version for all values of x?

return 8 * x;
return 3 + x;
return 3 * x;
return 6 * x;
return 4 * x;

Answers

Answer:

return 8 * x

Explanation:

Given

The attached code segment

Required

Which single statement can replace the program body

From calculate(), we have:

[tex]x = x + x;\\ x = x + x;\\ x = x + x;[/tex]

The first line (x = x + x) implies that:

[tex]x=2x[/tex]

So, on the next line; 2x will be substituted for x

i.e.

[tex]x = x + x[/tex] becomes

[tex]x = 2x + 2x[/tex]

[tex]x = 4x[/tex]

So, on the third line; 4x will be substituted for x

i.e.

[tex]x = x + x[/tex] becomes

[tex]x = 4x+ 4x[/tex]

[tex]x = 8x[/tex]

In programming: 8x = 8 * x:

This means that: return 8 * x can be used to replace the body


Please help meeee , you will get 20 points

Answers

Answer:

true

Explanation:

true trueee 3uehehehdgeyeyehhehehegegegrhrtggrevegrgrhehehru

I THINK IT FALSE

#Carry on learning

SummaryIn this lab, you complete a partially prewritten Java program that uses an array.The program prompts the user to interactively enter eight batting averages, which the program stores in an array. The program should then find the minimum and maximum batting average stored in the array as well as the average of the eight batting averages. The data file provided for this lab includes the input statement and some variable declarations. Comments are included in the file to help you write the remainder of the program.Instructions1.Ensure the file named BattingAverage.java is open.Write the Java statements as indicated by the comments.Execute the program by clicking "Run Code." Enter the following batting averages: .299, .157, .242, .203, .198, .333, .270, .190. The minimum batting average should be .157, and the maximum batting average should be .333. The average should be .2365.import java.util.Scanner;public class BattingAverage{public static void main(String args[]){Scanner s = new Scanner(System.in);// Declare a named constant for array size here.// Declare array here.// Use this integer variable as your loop index.int loopIndex;// Use this variable to store the batting average input by user.double battingAverage;// String version of batting average input by user.String averageString;// Use these variables to store the minimim and maximum batting averages.double min, max;// Use these variables to store the total and the average.double total, average;// Write a loop to get batting averages from user and assign to array.System.out.println("Enter a batting average: ");averageString = s.nextLine();battingAverage = Double.parseDouble(averageString);// Assign value to array.// Assign the first element in the array to be the minimum and the maximum.min = averages[0];max = averages[0];// Start out your total with the value of the first element in the array.total = averages[0];// Write a loop here to access array values starting with averages[1]// Within the loop test for minimum and maximum batting averages.// Also accumulate a total of all batting averages.// Calculate the average of the 8 averages.// Print the averages stored in the averages array.// Print the maximum batting average, minimum batting average, and average batting average.System.exit(0);}{

Answers

Answer:

The complete program is as follows:

import java.util.Scanner;

public class Main{

   public static void main(String args[]){

       Scanner s = new Scanner(System.in);

       final int lent = 8;

       Double averages[] = new Double[lent];

       int loopIndex;

       double battingAverage;

       String averageString;

       double min, max;

       double total, average;

       for(loopIndex = 0;loopIndex<lent;loopIndex++){

       System.out.print("Enter a batting average: ");

       averageString = s.nextLine();

       battingAverage = Double.parseDouble(averageString);

       averages[loopIndex] = battingAverage;        }

       min = averages[0];max = averages[0];

       total = averages[0];

       for(loopIndex = 1;loopIndex<lent;loopIndex++){

       if(averages[loopIndex]>=max){

           max = averages[loopIndex];        }

       if(averages[loopIndex]<=min){

           min = averages[loopIndex];        }

       total+=averages[loopIndex];        }

       battingAverage = total/8;

       for(loopIndex = 0;loopIndex<lent;loopIndex++){

       System.out.println(averages[loopIndex]+" ");        }

       System.out.println("Average: "+battingAverage);

       System.out.println("Minimum: "+min);

       System.out.println("Maximum: "+max);

       System.exit(0);

       }}

Explanation:

See attachment for complete program with comments

A restaurant recorded the ages of customers on two separate days. You are going to write a program to compare the number of customers in their twenties (ages 20 to 29). What is the missing line of code to count the number of customers in their twenties? customerAges = [13, 3, 11, 24, 35, 25, 15, 18, 1] count20s = 0 if 20 <= item <= 29: count20s = count20s + 1

Answers

Answer:

You will need to implement a for loop ( I am assuming this is java)

Explanation:

int count20s = 0;

for(int x =0; x< customerAges.length;x++){

if(20 <= customerAges[x] && customerAges[x] <= 29){

     count20s++;

}

What are the characteristics of a good text-based adventure game? In other words, what are some features that should be in the game to make it appealing to players?

Answers

Answer:

spelling and good format

Explanation:thats all i know

You are asked to write a program that will display a letter that corresponds with a numeric rating system. The program should use a switch statement. The numeric rating is stored in a variable named rate and rate may equal 1, 2, 3, or 4. The corresponding letter is stored in a variable named grade and grade may be A, B, C, or D. Which is the test expression for this switch statement

Answers

The switch statements are similar to the if statements in a computer program

The test expression for the switch statement is the variable rate

How to determine the test expression

From the question, we have the following highlights

The program displays a corresponding letter of a rateThe rating is stored in the variable rate

This means that, the numerical value of the variable rate would be tested and the corresponding letter would be printed

Hence, the test expression for the switch statement is the variable rate

Read more about computer programs at:

https://brainly.com/question/16397886

Can someone help me calculate this Multimedia math:

A monochrome sequence (black and white) uses a frame size of 176 x 144 pixels and has 8 bits/pixels. Registered with Frame Rate 10 frames/sec. Video is transmitted through a 64 Kbit/sec bandwidth line.
(a) Calculate Compression Ratio (Crude Bit Speed / Compressed Bit Speed) which will be needed.
(b) What will happen if the Ratio compression is higher than it in (a)?
(c) What will happen if the Ratio compression is lower than it in (a)?

Answers

Answer:

I will try to help you answer this. it seems really confusing but I'll do my best to solve it and get it back to you. Hope I'm able to help!

1. Define Primary Key. Why do we need primary key ?

2. Define Field size.

3. Define Validation Rule.

4. . Not leaving the house and a lack of exercise can cause health problems like obesity. TRUE OR FALSE

5. Rebecca only works 3 days in a week but she works longer hours each day to ensure she hits the 40-hour work week.
-art-time working
-Compressed hours
-Job sharing
-Flexible hour

Answers

Answer:

1 .The main purpose of primary key is to identify the uniqueness of a row, where as unique key is to prevent the duplicates, following are the main difference between primary key and unique key.

Explanation:

2. Field size means the dimensions along the major axes of an area in a plane perpendicular to the central axis of the useful beam of incident radiation at the normal treatment distance and defined by the intersection of the major axes and the 50 percent isodose line.

Consider the following class declarations.

public class Dog
{
private String name;
public Dog()
{
name = "NoName";
}
}
public class Poodle extends Dog
{
private String size;
public Poodle(String s)
{

size = s;
}
}

The following statement appears in a method in another class.
Poodle myDog = new Poodle("toy");
Which of the following best describes the result of executing the statement?

a. The Poodle variable myDog is instantiated as a Poodle. The instance variable size is initialized to "toy". The instance variable name is not assiged a value.
b. The Poodle variable myDog is instantiated as a Poodle. The instance variable size is initialized to "toy". An implicit call to the no-argument Dog constructor is made, initializing the instance variable name to "NoName".
c. The Poodle variable myDog is instantiated as a Poodle. The instance variable size is initialized to "toy". An implicit call to the no-argument Dog constructor is made, initializing the instance variable name to "toy".
d. A runtime error occurs because super is not used to call the no-argument Dog constructor.
e. A runtime error occurs because there is no one-argument Dog constructor.

Answers

Answer:

The poodle variable myDog is intentioned as a Poodle. The instance variable size is initialized to “toy”. The instance variable name is not assigned a value.

D have a good one pal let me know

When is blue for when the instance in which the directory of compulsion in the air!

Answers

I think it’s what the other person said

What is the difference between a 13 column abacus and 5 column abacus?

Answers

Answer:  The difference between these two types of abaci are the number the beads.

Explanation:

have a great day or night

Answer:

The difference between these two types of abaci are the number the beads.

Explanation:

The memory hierarchy of a computer system organizes storage by using small, fast, expensive memories at the top of the hierarchy and supplementing them with larger, slower, cheaper memories at each successive level. Explain how the principle of memory locality makes such a system capable of providing efficient access to the data and instructions needed for executing programs.

Answers

Answer:

Following are the responses to this question:

Explanation:

The computer system's memory hierarchy arranges space through tiny, fast, costly stocks only at top of the pyramid and complements them through big, lighter, cheap storage facilities at every representation made. It is needed to limit the time for data access for application executes. A very design of the main memory allows a system to have easy access to the information and instructions necessary to execution time. A traditional technique of system memory works like:

[tex]Level\ 0 (Top Level) \to CPU \ Registers\\\\Level \ 1 \to Cache\ Memory \ (SRAMs)\\\\Level\ 2 \to Main \ Memory \ (DRAMs)\\\\Level \ 3 \to Magnetic \ Disk\ (Disk \ Storage)\\\\Level \ 4 \to Optical \ Disk\\\\Level \ 5 \to Magnetic\ Tape\\\\[/tex]

Because as memory cost rises below level 5 to level 0. CPU registers become costly as the cache memory, which then, in turn, is much more costly than for the memory.

Whenever the access time of CPU registries becomes reduced from level 5 to level 0, its time complexity between reading/write transactions is much more swift than Cache Memory Access period which in turn is quicker than that of the main memory Communication cost and so forth.

So, we need a memory hierarchy to analyze the information (read/write requests) efficiently, in turn for all the top-level to read the information more quickly and thoroughly. Therefore, the architecture of the computer program's Main memory enables a system to provide secure access to information and guidance for running programs.


Imaging a computer is part of what phase of conversion?
a. Backup
b. Configuration
c. Procurement

Answers

B. Because the computer can rearrange itself when it is in a phase of conversion

How many cycles would it take to complete these multicycle instructions after pipelining assuming: Full forwarding 1 Adder that takes 2 cycles (subtraction uses the adder) 1 Multiplier that takes 10 cycles 1Divider that takes40 cycles 1 Integer ALU that takes1cycle(Loads and Stores) You can write and read from the register file in the same cycle. Begin your your cycle counting from 1 (NOT 0)

Answers

js downs djdknsekmnd

See the picture and answer the coding question

Answers

Answer:

Actually I don't know computer so I can't help you sorry bro

Take a better picture please

Write Inheritance program for the following scenario. Employee is super class where as Manager and Regular are the sub class. Partial Employee class is created, you have to complete the Employee class and implement Manager and Regular class. The main is class is given that creates objects of all classes and displays the output.
• The subclasses uses super keyword in the constructor to assigned the data.
• All the classes implements toString() method.

Answers

Answer:

Explanation:

public class Employee{

//Existing employee code

public String getName(){

return Name;

}

public double getSalary(){

return salary;

}

public int getId(){

return id;

}

public void setName(String name){

this.name = name;

}

//Manager Class

public class Manager extends Employee{

private double bonus;

public Manager(int id,String name,double salary,double bonus){

super(id,name,salary);

this.bonus = bonus;

}

public void setBonus(double bonus){

this.bonus = bonus;

}

public double getBonus(){

return bonus;

}

}

//Regular Class

public class Regular extends Employee{

private double overtime;

public Manager(int id,String name,double salary,double overtime){

super(id,name,salary);

this.overtime = overtime;

}

public void setOvertime(double overtime){

this.overtime = overtime;

}

public double getOvertime(){

return overtime;

}

}

This program reads a file called 'test.txt'. You are required to write two functions that build a wordlist out of all of the words found in the file and print all of the unique words found in the file. Remove punctuations using 'string.punctuation' and 'strip()' before adding words to the wordlist.
Write a function build_wordlist() that takes a 'file pointer' as an argument and reads the contents, builds the wordlist after removing punctuations, and then returns the wordlist. Another function find_unique() will take this wordlist as a parameter and return another wordlist comprising of all unique words found in the wordlist.
Example:
Contents of 'test.txt':
test file
another line in the test file
Output:
['another', 'file', 'in', 'line', 'test', 'the']
This the skeleton for 1:
#build_wordlist() function goes here
#find_unique() function goes here
def main():
infile = open("test.txt", 'r')
word_list = build_wordlist(infile)
new_wordlist = find_unique(word_list)
new_wordlist.sort()
print(new_wordlist)
main()

Answers

Answer:

Explanation:

The following code has the two requested functions, fully working and tested for bugs. It is written in Python as is the sample code in the question and a sample output can be seen in the picture attached below.

import string

def build_wordlist(file_pointer):

   words = file_pointer.read()

   words = [word.strip(string.punctuation) for word in words.split()]

   return words

def find_unique(word_list):

   unique_words = []

   for word in word_list:

       if word not in unique_words:

           unique_words.append(word)

   return unique_words

def main():

   infile = open("test.txt", 'r')

   word_list = build_wordlist(infile)

   new_wordlist = find_unique(word_list)

   new_wordlist.sort()

   print(new_wordlist)

main()

How can you create the first row of the table as the header of the table?
In the Insert Table dialog box, you select the ______
checkbox to create the first row as the header of the table.

Answers

Answer:

table style option

Explanation:

Answer: table style

Explanation:

Where should a photographer place lights for a headshot? Headshot lighting is more important with darker backgrounds. The light should be at a 45-degree angle from the subject. The light should be in front of the subject. The third light should be the subject to form a ring of light around the subject’s hair.

Answers

Answer:

Headshot lighting is more important with darker backgrounds. The  

(key)  light should be at a 45-degree angle from the subject. The  

(fill)  light should be in front of the subject. The third light should be  

(behind) the subject to form a ring of light around the subject’s hair.

Explanation:

i searched it up individually and thats what i got

HELP PLEASE
What will be printed to the console after this program runs?
var numbers = [2, 5, 3, 1, 6]
function changeNums(numList, addNum, subtractNum) {
for(var i=0; i if(numList[i] % 3 == 0){
numList[i] = numList[i] + addNum;
} else {
numList[i] = numList[i] - subtract Num;
}
}
}
changeNums (numbers, 3, 2);
console.log(numbers);

Answers

The output that will be printed to console after the program runs is (b) [0, 3, 6, -1, 9]

When the program is analyzed, we have the following highlights

The program increases numbers that are divisible by 3, by the value of variable addNumOther numbers are reduced by the value of variable subtractNum

In the program, the values of addNum and subtractNum are 3 and 2, respectively.

In the list, 3 and 6 are divisible by 3

2, 5 and 1 are not divisible by 3

When the program runs, 3 and 6 are replaced by 6 and 9.

While 2, 5 and 1 are replaced by 0, 3 and -1

Hence, the output that will be printed to console after the program runs is (b) [0, 3, 6, -1, 9]

Read more about similar programs at:

https://brainly.com/question/24833629

please help me on this coding problem :)

Consider the following code segment.

int a = 0;
int b = 3;

while ((b != 0) && ((a / b) >= 0)
{
a = a + 2;
b = b - 1;
}
What are the values of a and b after the while loop completes its execution?

a = 4, b = 1
a = 0, b = 3
a = 6, b = 0
a = 8, b = -1

Answers

Answer:

a=4 , b=1

Explanation:

I'm not a computer science major at all but I think I can help you with this code.

Our program wants us to add 2 to a get new a value while also subtracting 1 from b value to obtain new b value. We we want to for for as long b is not 0 and a/b is nonnegative.

One round we get:

New a=0+2=2

New b=3-1=2

Let's see if we can go another round:

New a=2+2=4

New b=2-1=1

We can't go another round because b would be negative while a is positive which would make a/b negative. So our loop stops at this 2nd round.

a=4 , b=1

Other notes:

2nd choice makes no sense because a is always going to increase because of the addition on a and b was going to decrease because of the subtraction on it.

Third choice makes no sense because a/b doesn't even exist.

Fourth choice a/b is negative not nonnegative.

An administrative assistant is responsible for scheduling appointments at a doctor’s office. Which component would allow the administrative assistant to enter each patient’s name, date of birth, doctor’s name, and appointment date and time?

Answers

Answer: Form

Explanation:

Answer:

A on edge

Explanation:

Select the correct answer.
Which function returns the lowest value of a given set of numbers or range of cells?

A.
ROUND
B.
COUNT
C.
MAX
D.
MIN

Answers

Answer:

D. Min

Explanation:

king(a. has eaten b.ate c.had eaten) when Airah called​

Answers

Answer:

c

Explanation:

king had eaten when Airah called

In JavaScript what is the resulting value of answer for answer = 5 + 3 * 2? Explain why the answer is not 16.

Answers

Answer:

with this type of math , you actually multiply first before you add

Explanation:

2×3 =6.

6+5=11.

JavaScript is the resulting in the value are the of answer for answer = 5 + 3 × 2 = 11. It was not the 16.

What is JavaScript?

The word JavaScript refers to a text-based programming language, and the server-side is what allows users to make web pages interactive. HTML and CSS are two programming languages that are used to make web pages dynamic.

According to the JavaScript, are the resulting the values, and they define are the answer.

As per the rule of the bod mas rule.

5 + 3 × 2 = ?

3 × 2 = 6

5 + 6 = 11

As a result, the JavaScript are the based on the resulting in the value 5 + 3 × 2 = 11.

Learn more about on JavaScript, here:

https://brainly.com/question/28448181

#SPJ2

.
T
Which of the following objects are not contained within
an Access database?
Select one:
a Tables and forms,
b. Queries and reports.
c. Macros and Modules
d. Web sites and worksheets​

Answers

Answer:

17 38 ay

Explanation:

a

29. Write a program in a script file that calculates the cost of renting a car according to the following price schedule: The program asks the user to enter the type of car (sedan or SUV), the number of days, and the number of miles driven. The program then displays the cost (rounded to cents) for the rent. Run the program three times for the following cases: (a) Sedan, 10 days, 769 miles. (b) SUV, 32 days, 4,056 miles. (c) Sedan, 3 days, 511 miles.

Answers

Answer:The price for renting a car at a car rental company is according to the following schedule: Write a MATLAB program in a script file that calculates the cost of renting a car based on the shown price schedule. The program must ask the user to enter the type of car (Sedan or SUV), the number of days, and the number of miles driven. The program then displays the cost (rounded to cents) for the rent in a sentence that reads: "The cost of the rent is XXX $." where XXX is the cost value in $. Run the program three times for the following cases: Sedan, 10 days, 769 miles. SUV, 32 days, 4, 056 miles. Sedan, 3 days, 511 miles. Use fprintf () to display the text and data. The data should be displayed in f format with two decimal digits.

Explanation:

CEO of Entertainment Inc. wants to keep track of performance of engagement that the company has engaged. For each customer and agent, he wants to know total number of contracts by month, and monthly contract success ratio (calculated by total number of contracts expired each month divided by total amount of contract price each month). In addition, for each customer and agent he wants to know total numbers of contracts expired each week, and total number of contracts still active each week.

Required:
Provide 4-step dimensional model in the SQL and create data warehouse solution in SQL for the dimensional model that you propose.

Answers

How are we suppose to make a dimensional model in a type only answer sheet?

Answer:

How do you know how to make a dimensional model?


Question 12 of 30
In Alienware systems, errors are indicated via the tricolor Power Button LED.
True
False

Answers

Answer:

False.

Explanation:

Bought the latest Alienware 15 r3 with i7 7th gen, 1060gtx, etc. Next day laptop wont post, turns on, reboots, then does the same thing, meanwhile the power led button blinks 6 times. So making a little research and its seems like a video card is kaput, dont know if its the intel or the nvidia. Aynway, I bought this laptop from a company in Canada, and it seems it was alredy registered so I cand procced with a transfership ownership.

Answer:

I think the answer

is true.

Other Questions
subject is art pls answer the question with an answer. look at the photo :) help ASAP! It would be so helpful A water tower that is 120 feet tall casts a 48-foot long shadow. If Shannon is 60 inches tall and standing near the tower, find the length of her shadow.HALppp Answer this correctly and explain your answer Ill give you brainalist + 10 points Kala deposits $7000 into an account that pays simple Interest at a rate of 4% per year How much interest will she be paid in the first 4 years? Which ratios correctly compare bananas to apples, as shown in the picture ( 6 apples in a circle and 1 banana in the center ) check all that apply.... Pls help Study the graph showing energy consumption per person in four US states, as well as the average energy consumption per person across the nation. Which two statements are correct conclusions from the graph data? According to Malala Yousafzai, what is the purpose of education? To what extent do you agree with her claim? Cite evidence from the text and your own education in your answer * 1.5 times 3 in a decimal In order to intimidate African Americans and African American groups, many individuals used tactics that ranged from verbal threats to violent actions.Which of the following tactics was used against Emmett Till?A discriminationB segregationC lynchingD verbal abuse balanced the equation please Fe + O2 Fe2O3 According to the passage, Turk Creek Bridge was the site of what act of Klan terrorism? the burning of a Freedmens school the murder of African Americans the killing of a scalawag What's the value of[tex] \sqrt{3 \times 3} [/tex] The French and Indian War was fought mostly over control of land in thisarea of North America: *The Ohio River ValleyJamestown, VirginiaSan Francisco, CaliforniaSalem, Massachusetts change the following to algebraic expressionsnine times a number decreased by 11 Choose the word or phrase that expresses how long something has been going on.A) yaB) hace + queC) deber D) hay que Order the set of numbers from LEAST to GREATEST. 5.72 103, 8.12 102, 6.1 103, 9.11 102 A) 5.72 103, 6.1 103, 9.11 102, 8.12 102 B) 5.72 103, 6.1 103, 8.12 102, 9.11 102 C) 8.12 102, 9.11 102, 5.72 103, 6.1 103 D) 9.11 102, 8.12 102, 5.72 103, 6.1 103 Simplify the expressions by combining like terms2/3p + 4/3p - 1/3p A remote-controlled car travels 3 feet in 4 seconds. A remote-controlled truck travels 2 feet in 6 seconds. What is the difference of the speeds of the remote-controlled vehicles, in feet per minute? What dangers do runaways face?