ПРОГРАММИРОВАНИЕ НА С++ 8 КЛАСС

ПРОГРАММИРОВАНИЕ НА С++ 8 КЛАСС

7th - 8th Grade

8 Qs

quiz-placeholder

Similar activities

ESTRUCTURAS DE CONTROL PRIMER PARCIAL

ESTRUCTURAS DE CONTROL PRIMER PARCIAL

8th Grade

13 Qs

C++ Coding Problems

C++ Coding Problems

4th Grade - Professional Development

10 Qs

C++ References

C++ References

6th - 12th Grade

12 Qs

Bài tập trắc nghiệm C++

Bài tập trắc nghiệm C++

3rd - 12th Grade

10 Qs

C++ Functions

C++ Functions

6th - 8th Grade

11 Qs

BÀI THỰC HÀNH 2

BÀI THỰC HÀNH 2

7th - 8th Grade

13 Qs

Test vectori Cls 8

Test vectori Cls 8

8th Grade

9 Qs

C++ Arrays

C++ Arrays

8th - 12th Grade

12 Qs

ПРОГРАММИРОВАНИЕ НА С++ 8 КЛАСС

ПРОГРАММИРОВАНИЕ НА С++ 8 КЛАСС

Assessment

Quiz

Computers

7th - 8th Grade

Hard

Created by

Дина Толепергенова

Used 15+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The whole data type is...?

int

float

duble

doudle

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What numbers are called real?

int

long int

float

char

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Select Loop with option

For

While

Do while

if then else

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

The n number is a multiple of 4

n % 10 == 4

n % 0 == 4

n % 4 == 0

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

FOR statement syntax...

for(int i=1; i<=10; i++) {Body of the loop }

{Body of the loop } for(int i=1; i<=10; i++)

for(int i<=10; i=1; i++) {Body of the loop }

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Input operator

COUT

CIN

Return

if

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Output operator

COUT

CIN

RETURN

IF

8.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

WHAT WILL BE THE IMPORTANCE AFTER THE CYCLE IS COMPLETED FOR (INT X=0; X<100; X++)?

100

110

101

99