C# Console writeline,write,{}

C# Console writeline,write,{}

9th Grade

7 Qs

quiz-placeholder

Similar activities

History of Computer Games Quiz

History of Computer Games Quiz

7th Grade - University

11 Qs

C# 101 Mid-Semester Review

C# 101 Mid-Semester Review

9th - 12th Grade

12 Qs

List Operations

List Operations

9th - 12th Grade

10 Qs

PythonTest

PythonTest

6th Grade - Professional Development

11 Qs

AP CSP code.org Unit 3 2020

AP CSP code.org Unit 3 2020

9th - 12th Grade

10 Qs

ICT Java programming workshop

ICT Java programming workshop

9th Grade

10 Qs

C# lesson10

C# lesson10

1st - 10th Grade

10 Qs

Tinkercad Arduino

Tinkercad Arduino

5th - 10th Grade

8 Qs

C# Console writeline,write,{}

C# Console writeline,write,{}

Assessment

Quiz

Computers

9th Grade

Hard

Created by

Şükrü Demir

Used 5+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

int x=15,y=10,z=5;

Console.WriteLine("{0}+{1}={2}",x,y,z);

5+10=15

10+5=15

15+10=5

15+5=10

Hata verir

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

int Ad="Pınar",soyad="Kaya";

Console.WriteLine(ad);

Console.WriteLine(soyad);

Pınar Kaya

Pınar

Kaya

Kaya

Pınar

Kaya Pınar

Hata verir

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

String Ad="Pınar",soyad="Kaya";

Console.WriteLine("{0} \n {1}",ad,soyad);

Pınar Kaya

Kaya Pınar

Pınar

Kaya

Kaya

Pınar

Hata verir

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

int a="15",b="5";

Console.WriteLine(a);

Console.WriteLine(b);

15

5

5

15

15 5

5 15

Hata verir

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

int a=15,b=5;

Console.WriteLine(a+b);

String x="Bursa",y="Konya";

Console.WriteLine(x+y);

20 BursaKonya

15+5 BursaKonya

20

BursaKonya

155

BursaKonya

Hata verir

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Console.Write("A\nKARA");

Console.Write("O\nLUK");

AnKARA OnLUK

AKARA OLUK

A

KARAO

LUK

A

KARA

O

LUK

Hata verir

7.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

int x = 5;

int y; y = 3;

Console.WriteLine(x + y);

Console.WriteLine((x + y));

53

8

8

83

538

883

Hata verir