OOP SW 1

OOP SW 1

1st - 3rd Grade

7 Qs

quiz-placeholder

Similar activities

Computer Hardware

Computer Hardware

3rd - 11th Grade

10 Qs

Computers

Computers

2nd - 4th Grade

10 Qs

Gaming

Gaming

3rd - 4th Grade

10 Qs

SENAC - ATIVIDADE 3 - 2° ANO

SENAC - ATIVIDADE 3 - 2° ANO

2nd Grade

6 Qs

Nintendo consoles

Nintendo consoles

KG - Professional Development

10 Qs

Ratchet and Clank Rift Apart Quiz

Ratchet and Clank Rift Apart Quiz

KG - 12th Grade

10 Qs

history of games 1105km

history of games 1105km

1st Grade

10 Qs

COMPUTERS

COMPUTERS

KG - 2nd Grade

7 Qs

OOP SW 1

OOP SW 1

Assessment

Quiz

Computers

1st - 3rd Grade

Hard

Created by

MARY COLUMBRES

Used 8+ times

FREE Resource

AI

Enhance your content

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

It is a platform that provides a standardized set of services.

C#

Framework

.NET

Visual Studio

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

It is the basic and Virtual Machine component of the .NET Framework.

Framework Class Library

.NET Framework

Visual Studio

Common Language Runtime

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

This is a type of value that is stored in the stack.

Variable

Reference

Value

Function

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

It is used to display a string in the console without a new line.

WriteLine

ReadLine

Read

Write

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

This is used to get input from the user.

ReadLine()

ReadKey()

Console.Input

Read

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Choose the correct output of the program below:

name="Jacob";

Console.Write(name + "Love \n C#");

Jacob Love C#

JacobLove C#

JacobLove

C#

Jacob

Love

C#

7.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Choose the correct output of the given code below:

string var1="I";

string var2="love";

string var3="programming"

Console.Write(var1);

Console.WriteLine(var2);

Console.WriteLine(var3);

I love programming

Ilove programming

Ilove

programming

Error