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, 22.06.2019 04:00
Acetylene is a gas which burns rapidly on its own, and is considered highly explosive. a) true b) false
Answers: 2
question
Computers and Technology, 22.06.2019 11:00
Lisa’s company, abc ltd., lost its biggest client and is now facing a financial crunch. most of her colleagues have resigned, but lisa decides to stay with the company and assist the management in overcoming the financial situation. which quality is lisa demonstrating? a. self-management b. cooperativeness c. responsibility d. loyalty
Answers: 2
question
Computers and Technology, 22.06.2019 11:00
Which are examples of note-taking tools? check all that recording devices sticky notes digital highlighters paper flags highlighting pens digital displays digital flags
Answers: 1
question
Computers and Technology, 22.06.2019 11:10
Look at the far left lane in the picture. explain what the red car is doing and what it needs to do to travel safely.
Answers: 2
You know the right answer?
QUICK ANSWER PLS Critical Thinking Questions

This lesson showed you the general form o...
Questions
Questions on the website: 13722363