Search Header Logo

C# Quizz - LC Year 9

Authored by Professores IB Lourenço Castanho undefined

Instructional Technology

9th - 12th Grade

Used 7+ times

C# Quizz - LC Year 9
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the difference between Console.Write and Console.WriteLine?

Console.WriteLine moves to the next line.
Console.Write moves to the next line.
Both move to the next line.
Console.WriteLine keeps on the same line.
None

Answer explanation

Console.WriteLine writes and moves to the next line, while Console.Write keeps writing on the same line.

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the correct format to name a variable in camel case?

MyVariable
myVariable
My_variable
my_variable
None

Answer explanation

Camel case starts with a lowercase letter, and each new word starts with an uppercase letter.

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following is true when using var to initialize variables?

var requires a specific type like int, string.
var is used when the type is unknown.
var cannot store strings.
var can store multiple types of values.
None

Answer explanation

var automatically infers the type of the value it is assigned, such as int, string, or double.

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What will be the output of the following code? Console.WriteLine("Hello\tWorld\n!");

Hello World

!

Hello World
Hello World !
Hello World
None

Answer explanation

The \t adds a tab space and \n moves to the next line.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following methods allows you to concatenate strings in Console.WriteLine?

+ (plus sign)
$ (dollar sign)
& (ampersand)
@ (verbatim symbol)
None

Answer explanation

Concatenation uses + to combine multiple strings. Interpolation uses $.

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What will be the output of this code: Console.WriteLine(3 + 2 * 5);

13
25
10
15
None

Answer explanation

The multiplication happens before the addition, following the order of operations (PEMDAS).

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you check if a number is positive or negative using if/else in C#?

if(number > 0)
if(number < 0)
if(number = 0)
if(number >= 0)
None

Answer explanation

The if condition checks if the number is greater than 0 to determine if it's positive.

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?