subject

QUICK ANSWER PLS Critical Thinking Questions

This lesson showed you the general form of the syntax for a for loop in JavaScript:
for (initialize counter; condition; update counter) {
code block;
}
What does each part do, and why is it necessary?

Consider this JavaScript loop:
var new = 0;
for (i=3;i<=5;i++){
new=new+i;
}
Explain what the loop does and what the result of executing it will be.

Most people are annoyed when they are asked to type in their password more than once. Can you think of a way to perform data verification that does not require users to type in their password twice?

A website asks the user to enter his or her date of birth with the month first and then the day of the month. Describe what you could do to prevent problems with the code if a user enters the information in the wrong order by placing the day of the month before the month.

Your classmate is frustrated because the code that was designed to add up her five quiz grades is not working properly. What change would you suggest to your classmate based on this code?
for (i=1;i<=5;i++){
sum=0
sum=sum+i;
}

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 24.06.2019 22:30
What are the 4 basic items that are traded throughout the world?
Answers: 1
question
Computers and Technology, 25.06.2019 00:00
Rom is designed for computer instructions temporary storage of data processing data
Answers: 1
question
Computers and Technology, 25.06.2019 07:00
How do the portrait and landscape page orientations in the process of printing a worksheet?
Answers: 1
question
Computers and Technology, 25.06.2019 10:00
Aline ab is in 1st quadrant , its ends a and b respectively are 20mm and 60mm infront of vp respectively . the distance between the end projectors is 75 mm . the line is inclined at 30 degrees to the hp and end a 20 degrees above the hp . draw its projections , find true length
Answers: 2
You know the right answer?
QUICK ANSWER PLS Critical Thinking Questions

This lesson showed you the general form o...
Questions