OOP SW 1

OOP SW 1

1st - 3rd Grade

7 Qs

quiz-placeholder

Similar activities

Программирование C#

Программирование C#

1st - 10th Grade

10 Qs

Programming C++

Programming C++

2nd - 5th Grade

8 Qs

JAVA

JAVA

1st Grade

9 Qs

Manipulação de Arrays e elementos JS

Manipulação de Arrays e elementos JS

2nd Grade

12 Qs

Python 1

Python 1

KG - Professional Development

6 Qs

Nintendo consoles

Nintendo consoles

KG - Professional Development

10 Qs

JSON e Express

JSON e Express

3rd Grade

7 Qs

From Scratch to Python Quiz Unit 1 ,1.1-1.3

From Scratch to Python Quiz Unit 1 ,1.1-1.3

1st - 5th 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

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