Adsız Test

Adsız Test

12th Grade

9 Qs

quiz-placeholder

Similar activities

Ulangan harian 1 Algoritma dan Pemrograman

Ulangan harian 1 Algoritma dan Pemrograman

12th Grade - University

13 Qs

C Language

C Language

10th Grade - University

11 Qs

Coding Fundamentals in C

Coding Fundamentals in C

6th Grade - Professional Development

12 Qs

c fundamentals

c fundamentals

12th Grade

11 Qs

Ô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

Control Structures

Control Structures

12th Grade

10 Qs

UAS Praktikum: Logika dan Algoritma Pemrograman

UAS Praktikum: Logika dan Algoritma Pemrograman

1st Grade - University

10 Qs

Code.org Control Structures

Code.org Control Structures

12th Grade

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