c++Test

c++Test

6th Grade

10 Qs

quiz-placeholder

Similar activities

Instructiunea If

Instructiunea If

6th Grade

10 Qs

Classes in C++

Classes in C++

6th - 9th Grade

14 Qs

Programare cu C++ nivel medie 6

Programare cu C++ nivel medie 6

6th - 8th Grade

10 Qs

Passing Pointers C++

Passing Pointers C++

6th - 8th Grade

10 Qs

Programare cu C++ nivel medie 3

Programare cu C++ nivel medie 3

4th - 9th Grade

10 Qs

Программирование C#

Программирование C#

1st - 10th Grade

10 Qs

C++ test

C++ test

1st - 10th Grade

10 Qs

C++ Coding Problems

C++ Coding Problems

4th Grade - Professional Development

10 Qs

c++Test

c++Test

Assessment

Quiz

Computers

6th Grade

Hard

Created by

alex stefu

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Ce se afiseaza in urma executarii urmatoarelor linii de cod:

int n =5;

for(int i =0;i<n;i++)

cout<<i<<"-";

0-1-2-3-4-5-
0-1-2-3-4-5-6-
0-1-2-3-4-5-6-7-
0-1-2-3-4-

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Completati urmatorul cod astfel incat mesajul de afisare sa fie : 1 3 5 7 9 11

int i =1,n=1;

while(n<= 6){

cout<<i<< " " ;

i = _____;

n++;

}

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Ce se afiseaza in urma executarii urmatoarelor linii de cod:

int n =10;

for(int i =0;i<n;i++)

cout<<i--<<" ";

The code will print the numbers from 0 to 9
The code will result in an infinite loop.
The code will print the numbers from 10 to 1
The code will result in a compilation error

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Care este rezultatul urmatoarei operatii:

int x = 5;

int y = 3;

int z = x * y + 2;

15

17

18

20

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Ce se afiseaza in urma executarii urmatoarelor linii de cod:

int n = 3;

for(int i = 0; i < n; i++)

cout << i*i << "-";

0-1-4-

0-1-2-3-

0-1-4-9-

0-1-2-3-4-

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

ce se va afisa :

int i = 1;

cout << i++ << "?-?";

cout<<++i;

eroare

1?-?3

1?-?2

0-1

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Ce se afiseaza?

int n = 54128;

cout<<n/100%100;

12
54
41
28

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?