Exam 7: Javascript: Control Statements I
Exam 1: Introduction to Computers and the Internet31 Questions
Exam 2: Introduction to Html5: Part 120 Questions
Exam 4: Cascading Style Sheets Css29 Questions
Exam 5: Introduction to Cascading Style Sheets36 Questions
Exam 6: Javascript: Introduction to Scripting14 Questions
Exam 7: Javascript: Control Statements I29 Questions
Exam 8: Javascript: Control Statements II15 Questions
Exam 9: Javascript: Functions24 Questions
Exam 10: Javascript: Arrays18 Questions
Exam 11: Javascript: Objects16 Questions
Exam 12: Document Object Model Dom: Objects and Collections9 Questions
Exam 13: Javascript: Event Handling10 Questions
Exam 14: Html5: Introduction to Canvas36 Questions
Exam 15: Xml21 Questions
Exam 16: Ajax-Enabled Rich Internet Applications With Xml and Json10 Questions
Exam 17: Web Servers Iis and Apache7 Questions
Exam 18: Database: Sql, Mysql, Linq and Javadb12 Questions
Exam 19: Php15 Questions
Exam 20: Web App Development With Aspnet in C#37 Questions
Exam 21: Web App Development With Aspnet in C#: a Deeper Look7 Questions
Exam 22: Windows Communication Foundation Wcf Web Services in C#20 Questions
Exam 23: Web App Development With Aspnet in Visual Basic67 Questions
Exam 24: Web App Development With Aspnet in Vb, a Deeper Look6 Questions
Exam 25: Windows Communication Foundation Wcf Web Services in Vb20 Questions
Exam 26: Javaserver Faces Web Apps: Part 115 Questions
Exam 27: Javaserver Faces Web Apps: Part 27 Questions
Exam 28: Web Services in Java27 Questions
Select questions type
A program in which all statements are executed one after the other in the order in which they are written exhibits ________.
(Multiple Choice)
4.7/5
(37)
What is the value of i after the following statements
I = 2;
I++;
(Multiple Choice)
4.7/5
(30)
Which of the following flowchart symbols can represent an if statement
(Multiple Choice)
4.8/5
(37)
The word sequence in the term sequence structure refers to the sequence of ________.
(Multiple Choice)
4.9/5
(46)
What would the browser display if the following code were executed in a script
Var x = 11;
Var y = 14;
If ( x > 13 )
If ( y > 13 )
Document.writeln( "x and y are > 13" );
Else
Document.writeln( "x is < = 13" );
(Multiple Choice)
4.9/5
(32)
Which of the following is the correct abbreviation for the statement a = a * 7;
(Multiple Choice)
4.8/5
(43)
What would the browser display if the following script were executed
< script type = "text/javascript" >
Var count = 0;
Var total = 0;
While ( count < = 5 )
{
Total = total + 10;
Count = count + 1;
}
Document.write( total );
< /script >
(Multiple Choice)
4.8/5
(36)
What type of loop is shown in the script below
< script type = "text/javascript" >
Var gradeValue = 0,
Total = 0,
Grade = 0;
While ( gradeValue != - 1 )
{
Total = total + gradeValue;
Grade = window.prompt( "Enter Integer Grade, -1 to Quit:" , "0" );
GradeValue = parseInt( grade );
}
< /script >
(Multiple Choice)
4.9/5
(34)
Showing 21 - 29 of 29
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)