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

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

7th - 8th Grade

8 Qs

quiz-placeholder

Similar activities

Structura alternativă și operatori

Structura alternativă și operatori

6th - 8th Grade

8 Qs

C++ Recursion

C++ Recursion

8th - 12th Grade

12 Qs

С++ цикл for

С++ цикл for

6th - 9th Grade

10 Qs

Массивы в C++: ввод/вывод

Массивы в C++: ввод/вывод

6th - 8th Grade

11 Qs

C++

C++

7th Grade

12 Qs

C++ Pointer

C++ Pointer

6th - 8th Grade

10 Qs

Passing Pointers C++

Passing Pointers C++

6th - 8th Grade

10 Qs

Kuis Percabangan

Kuis Percabangan

1st - 10th 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