Quiz 2 - CS110

Quiz 2 - CS110

University

15 Qs

quiz-placeholder

Similar activities

C BOOTCAMP DAY 2

C BOOTCAMP DAY 2

University

20 Qs

Programación Básica 1.1 Instrucciones

Programación Básica 1.1 Instrucciones

University

20 Qs

Test Final

Test Final

University

20 Qs

Структуры С++

Структуры С++

University

11 Qs

C++ Quiz-1

C++ Quiz-1

University

15 Qs

Basic C++ Programming Questions

Basic C++ Programming Questions

University

20 Qs

C++ Array

C++ Array

University

10 Qs

Computer Programming Final Exam Part 2

Computer Programming Final Exam Part 2

University

20 Qs

Quiz 2 - CS110

Quiz 2 - CS110

Assessment

Quiz

Computers

University

Easy

Created by

Avariella Lapuz

Used 54+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the output?

int i = 1;

int j = i--;

cout << "i is " << i;

cout << " and j is " << j;

i is 1 and j is 1

i is 1 and j is 0

i is 0 and j is 1

i is 0 and j is 0

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of these data types requires the most amount of memory?

short

float

int

long

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of these data types requires the most amount of memory?

double

long double

short

long

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Solve the following problem

int X = 3;

int Y = x % 2 / 10+10 / 2

What does Y equal to?

3

1

5

6

8

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

is q6uub9TN a valid C++ Identifier?

True

False

6.

MULTIPLE SELECT QUESTION

1 min • 1 pt

What is a resonable constant value? (Choose 3)

Pi

Inflation

Speed of light

Gravity

Gas prices

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What header should be included to use advanced math functions?

#include <c++math>

#include <advmath>

#include <cmath>

#include <arithmathc>

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?