Exam 5: Control Statements: Part 1
Exam 1: Introduction to Computers, the Internet and Visual C#49 Questions
Exam 2: Dive Into Visual Studio Community25 Questions
Exam 3: Introduction to C# Apps41 Questions
Exam 4: Introduction to Classes,Objects,Methods and Strings50 Questions
Exam 5: Control Statements: Part 194 Questions
Exam 6: Control Statements: Part 266 Questions
Exam 7: Methods: a Deeper Look95 Questions
Exam 8: Arrays;Introduction to Exception Handling90 Questions
Exam 9: Introduction to Linq and Generic Collections27 Questions
Exam 10: Classes and Objects: A Deeper Look79 Questions
Exam 11: Object-Oriented Programming: Inheritance51 Questions
Exam 12: Object-Oriented Programming: Polymorphism62 Questions
Exam 13: Exception Handling: A Deeper Look58 Questions
Exam 14: GUI With Windows Forms: Part 164 Questions
Exam 15: GUI With Windows Forms: Part 273 Questions
Exam 16: Strings,Characters and Regular Expressions92 Questions
Exam 17: Files and Streams39 Questions
Exam 18: Searching and Sorting19 Questions
Exam 19: Data Structures28 Questions
Exam 20: Generics22 Questions
Exam 21: Collections35 Questions
Exam 22: Databases and LING25 Questions
Exam 23: Asynchronous Programming With Async and Await37 Questions
Exam 24: XML72 Questions
Exam 25: GUI With Windows Presentation Foundation60 Questions
Select questions type
A can be used in repetition structures to indicate the end of data entry.
(Multiple Choice)
4.8/5
(24)
Postincrementing a variable will delay the incrementing of a variable until the next time the variable is accessed.
(True/False)
4.8/5
(28)
The sentinel value must be chosen so that it cannot be confused with an acceptable in
put value.
(True/False)
4.8/5
(31)
What is output by the following C# code segment
Int temp = 180;
While (temp != 80)
{
If (temp > 90)
{
Console.Write("This porridge is too hot! ");
// cool down
Temp = temp - (temp > 150
100 : 20);
}
Else
{
If (temp < 70)
{
Console.Write("This porridge is too cold! ");
// warm up
Temp = temp + (temp < 50
30 : 20);
}
}
}
If (temp == 80)
{
Console.WriteLine("This porridge is just right!");
}
(Multiple Choice)
4.9/5
(38)
During the 1960s,it became clear that the indiscriminate use of transfers of control was the root of much difficulty experienced by software development groups.
(True/False)
4.8/5
(28)
Pseudocode is most comparable to which of the following languages
(Multiple Choice)
4.9/5
(39)
Which of the following correctly represents the expression a = a + 3
(Multiple Choice)
4.9/5
(34)
A set of statements contained in a pair of braces can be placed anywhere in a program at which a single statement can be placed.
(True/False)
4.9/5
(34)
Which of the following terms is not used to refer to a sentinel value that breaks out of a while statement
(Multiple Choice)
4.9/5
(26)
Control statements are helpful in building and manipulating objects.
(True/False)
4.9/5
(41)
Cast operators are used to perform implicit conversions between data types.
(True/False)
4.8/5
(39)
It is known as when the number of repetitions is known before a loop begins executing.
(Multiple Choice)
4.9/5
(31)
The best way to use braces is to go back and insert them after all the code has been written.
(True/False)
4.8/5
(43)
Showing 61 - 80 of 94
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)