Quiz 2

Quiz 2

University

11 Qs

quiz-placeholder

Similar activities

Estructura de Control Selectiva

Estructura de Control Selectiva

University

15 Qs

STRUKTUR DATA (QUIZ FINAL)

STRUKTUR DATA (QUIZ FINAL)

University

15 Qs

Ulangan Harian Semester Genap Kelas X MM

Ulangan Harian Semester Genap Kelas X MM

University

10 Qs

C++ misc-1

C++ misc-1

University

15 Qs

Loops-2

Loops-2

University

15 Qs

C++ estructuras de control

C++ estructuras de control

University

9 Qs

Progdas-Q3-2023-2

Progdas-Q3-2023-2

University

10 Qs

training ep.2

training ep.2

University

11 Qs

Quiz 2

Quiz 2

Assessment

Quiz

Computers

University

Hard

Created by

MA CPC

Used 3+ times

FREE Resource

11 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

 int x = 32;

      if( x % 2) cout << "odd" ;

   else cout << "even" ;

odd

even

syntax error

odd even

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int x = 8;

      if( x > 10) cout << "yes" ;

   else cout << "no" ;


YES

NO

no

yes

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int age = 22;

if(age >= 18 && age < 65) cout << "adult";

else cout << "not adult";


adult

not Adult

syntax error

adult not adult

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int x = 0;

if(x) cout << " non-zero";

else cout << "zero";


Non-zero

zero

 syntax error

Non-zero Zero

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

char grade = 'B';

if(grade == 'A') cout << "Excellent"; 

else if(grade == 'D') cout << "Pass";



Excellent

Good

Pass

None of the above

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int a = 3;

if (a = 5)

    cout << "True";

else

    cout << "False";


True

False

Syntax error

None of the above

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int x = 2;

  cout << ( ( x > 2) ? "Good" : "Bad" );


Bad

Good

Syntax error

None of the above

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?