Adsız Test

Adsız Test

12th Grade

9 Qs

quiz-placeholder

Similar activities

Ôn tập Xâu Tệp Chương Trình Con

Ôn tập Xâu Tệp Chương Trình Con

KG - 12th Grade

10 Qs

python

python

9th - 12th Grade

10 Qs

เกมส์ เรื่อง โครงสร้างโปรแกรมภาษาซี

เกมส์ เรื่อง โครงสร้างโปรแกรมภาษาซี

KG - University

8 Qs

Evaluación RA 1.1

Evaluación RA 1.1

KG - Professional Development

12 Qs

แบบทดสอบที่ 1

แบบทดสอบที่ 1

10th - 12th Grade

10 Qs

PROGRAMACION

PROGRAMACION

9th Grade - University

10 Qs

some questions

some questions

11th Grade - University

8 Qs

Skill Development - Debugging Practice1

Skill Development - Debugging Practice1

10th Grade - Professional Development

10 Qs

Adsız Test

Adsız Test

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Emsal Academy

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Programın çıktısı ne olur?

hi

hello

no

error

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Programın çıktısı ne olur?

hi

how are you

compile time error

error

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

  1. #include <stdio.h>

  2. void main()

  3. {

  4. int x = 5;

  5. if (true);

  6. printf("hello");

  7. }

hello

Hata

Hiçbir şey görüntülenmeyecek

Derleyiciye bağlı

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Programın çıktısı ne olur?

false, 0

true, 0

true, 10

compile time error

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

  1. #include <stdio.h>

  2. void main()

  3. {

  4. int x = 5;

  5. if (x < 1);

  6. printf("Hello");

  7.  

  8. }

Nothing

Run time error

Hello

Varies

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

  1. #include <stdio.h>

  2. int main()

  3. {

  4. int x = 0;

  5. if (x++)

  6. printf("true\n");

  7. else if (x == 1)

  8. printf("false\n");

  9. }

true

false

compile time error

undefined behaviour

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

  1. #include <stdio.h>

  2. int main()

  3. {

  4. int x = 0;

  5. if (x == 1)

  6. if (x == 0)

  7. printf("inside if\n");

  8. else

  9. printf("inside else if\n");

  10. else

  11. printf("inside else\n");

  12. }

inside if

inside else if

inside else

compile time error

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Programın çıktısı ne olur?

true

false

Derleyiciye bağlıdır

Ekranda bir şey yazmaz

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Programın çıktısı ne olacaktır?

True

False

True False

No Output