Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Quiz 2 CIT100 Programming Language Concepts Part I Short answers (5 points each)

ID: 3874999 • Letter: Q

Question



Quiz 2 CIT100 Programming Language Concepts Part I Short answers (5 points each) Your Name: MD ARIFUL HOQUE Fill the blank with a quoted string literal as variable greeting's initial value. string greeting = Fill the blank with a verbatim string literal as variable praise's initial value. string praise = Finish the following code so that the label IbiDisplay will display the following two sentences on two 1. 2. 3. separate lines: The library is closed. Please visit us next Monday iblDisplay-Text . The following selection statement can be described as a) single-alternative, b) double-alternative, c) multiple-alternative, d) nested. 4. i (age100) txtDisplay. Text "You were born in 1918. operator 5. In the previous question, the sign =is called operators. It belongs to a group of operators called The byte variable x has the value of 100. What value will the expression after the "if keyword return? if (x! 100) The above statement will return 6.

Explanation / Answer

Answers:

1)string greeting = " Hello " ;

2)string praise = @" Hello ";

3)|b|Display.Text = Console.WriteLine(@" The library is closed. please visit us next Monday");

4)single - alternative

5)Equal To operator , Binary operators

6)True(ie. 1 )