Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Visual C# How to Program
Quiz 6: Control Statements: Part 2
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 1
Multiple Choice
Which of the following is not a control statement in C#
Question 2
True/False
The for repetition statement handles the details of counter-controlled repeti tion.
Question 3
Multiple Choice
Consider the following two C# code segments: Segment 1 Segment 2 Int i = 0; For (int i=0;i < = 20;++i) While (i < 20) { { Console.WriteLine (i) ; ++i; } Console.WriteLine (i) ; } Which of the following statements is true
Question 4
Multiple Choice
The first line of the for statement is sometimes called the:
Question 5
Multiple Choice
Which of the following for-loop control headers results in equivalent numbers of iterations: 1) for (int q = 1;q < = 100;++q) 2) for (int q = 100;q >= 0;--q) 3) for (int q = 99;q > 0;q -= 9) 4) for (int q = 990;q > 0;q -= 90)