Язык Си

Язык Си

University

13 Qs

quiz-placeholder

Similar activities

C programming-1

C programming-1

University

13 Qs

Python basics

Python basics

University

11 Qs

Python_1

Python_1

University

15 Qs

Quiz 1 - Intro to C

Quiz 1 - Intro to C

University

10 Qs

Input And Output in C

Input And Output in C

University

10 Qs

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

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

KG - University

8 Qs

C/C++ Programming Chapter 2

C/C++ Programming Chapter 2

University

16 Qs

Informatika x

Informatika x

University

10 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?