OOP SW 1

OOP SW 1

1st - 3rd Grade

7 Qs

quiz-placeholder

Similar activities

C# lesson10

C# lesson10

1st - 10th Grade

10 Qs

Repaso Javascript

Repaso Javascript

1st - 3rd Grade

10 Qs

Computers

Computers

2nd - 3rd Grade

12 Qs

Interface_web_Quizz01

Interface_web_Quizz01

1st - 10th Grade

10 Qs

Python

Python

1st Grade - University

10 Qs

Python Basics

Python Basics

1st Grade

10 Qs

3.9 Synthesis: 3.6 + 3.7

3.9 Synthesis: 3.6 + 3.7

2nd Grade

10 Qs

The Computer Mouse

The Computer Mouse

1st - 5th Grade

10 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