AP Computer Science A : Class Libraries

Study concepts, example questions & explanations for AP Computer Science A

varsity tutors app store varsity tutors android store

Example Questions

Example Question #1 : Class Design

Which of the following header statements allow you to omit using the std:: when using cout?

Possible Answers:

#include <iostream>

#include  <cmath>

#include <standard>

You don't need a header statement.

using namespace std;

Correct answer:

using namespace std;

Explanation:

You must put using namespace std; at the top of your file to avoid having to type std:: every time you use cout and cin.

Learning Tools by Varsity Tutors