Cplus

Cplus

Assessment

Flashcard

Computers

6th - 8th Grade

Hard

Created by

Gayathri Vijay

FREE Resource

Student preview

quiz-placeholder

4 questions

Show all answers

1.

FLASHCARD QUESTION

Front

In the following code, what are x, y and z? #include <iostream.h> void main() { int x, y; float z, k; }

Back

variables

2.

FLASHCARD QUESTION

Front

In the following code what is int and float?

#include <iostream.h> void main() { int a,b; float x;}

Back

datatypes

3.

FLASHCARD QUESTION

Front

What is the keyword to display the output on screen?

Back

cout

4.

FLASHCARD QUESTION

Front

C++ code to display: Name: Vihaan Class :VII Vairam

Back

cout<<"Name:Vihaan"<<"\t"<<"Class:VII Vairam";