Язык Си

Язык Си

University

13 Qs

quiz-placeholder

Similar activities

PSC ALM QUIZ

PSC ALM QUIZ

University

16 Qs

IQ Game

IQ Game

University

10 Qs

UAS Logika dan Algoritma Pemrograman

UAS Logika dan Algoritma Pemrograman

1st Grade - University

15 Qs

2D Array and Strings in C

2D Array and Strings in C

University

16 Qs

OS with C programming

OS with C programming

University

12 Qs

Estructurada- Diagramas de Flujo

Estructurada- Diagramas de Flujo

University

11 Qs

Struct

Struct

University

8 Qs

C-Programming

C-Programming

University

15 Qs

Язык Си

Язык Си

Assessment

Quiz

Computers

University

Medium

Created by

GLab 2000

Used 3+ times

FREE Resource

13 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Какой правильный синтаксис для вывода «Hello World!» в Си?

printf("Hello World!");

cout << "Hello World!";

print("Hello World!")

2.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Как прописать коментарий в Си?

*komentariy

#komentariy

//komentariy

/*komentariy*/

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Какой символ использутся для обозночения конца текущей комманды?

/

;

%

*

&

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Как создать переменную с числовым значением 5?

x = 5;

x = (int) 5;

x = 5

int x = 5;

char x = 5;

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Как создать переменную с плавающим числом 2,8?

x = 2.8 double;

x = 2.8 float;

x = 2.8;

float x = 2.8;

6.

MULTIPLE CHOICE QUESTION

1 min • 4 pts

Что будет выведено на экран этой функцией:

printf("%d", 3 & 1);

2

1

3

0

4

7.

MULTIPLE CHOICE QUESTION

1 min • 3 pts

Что будет выведено на экран этой программой:

if(1) {printf("Da"); }else{ printf("Net"); }

Da

Net

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?