C# Quizz - LC Year 9

C# Quizz - LC Year 9

9th - 12th Grade

10 Qs

quiz-placeholder

Similar activities

GAME DESIGN: IA4 REVIEW - UNIT 2

GAME DESIGN: IA4 REVIEW - UNIT 2

12th Grade

10 Qs

Python Functions and Returns

Python Functions and Returns

9th - 12th Grade

14 Qs

Scripting Workspace Quiz

Scripting Workspace Quiz

12th Grade

15 Qs

Языки программирования

Языки программирования

9th Grade - University

10 Qs

Information Technology - Career Fair

Information Technology - Career Fair

9th - 12th Grade

8 Qs

Navigate Between IOS Modes - Syntax Checker

Navigate Between IOS Modes - Syntax Checker

10th Grade

13 Qs

mincraft pro

mincraft pro

KG - Professional Development

12 Qs

Research Skills

Research Skills

7th - 9th Grade

10 Qs

C# Quizz - LC Year 9

C# Quizz - LC Year 9

Assessment

Quiz

Instructional Technology

9th - 12th Grade

Hard

Created by

Professores IB Lourenço Castanho undefined

Used 7+ times

FREE Resource

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.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?