[Updated] Goldman Sachs Aptitude Test Questions and Answers
Practice List of TCS Digital Coding Questions !!!
Take 50+ FREE!! Online Data Interpretation Mock test to crack any Exams.

Objects and Classes Questions

NA
SHSTTON
10
Solv. Corr.
33
Solv. In. Corr.
43
Attempted
0 M:22 S
Avg. Time

21 / 41

Choose the correct option.

Access specifiers are followed by


Aa comma

Bmethods

Cboth (a) and (b)

Dnone of these

Answer: Option C

Explanation:

Access specifiers are followed by both comma and methods.

There are 3 access specifiers in c++. Public, Private and Protected. 

Public members are accessible outside the class through an object of the class.

Protected members are also accessible outside the class but only from the class which derived it.All public members of a base class becomes protected members of the derived class.

Private members can not be accessed from outside the class.

In Private inheritance, all public and protected members of base class becomes private to the derived class and can be accessible.

Workspace

NA
SHSTTON
12
Solv. Corr.
27
Solv. In. Corr.
39
Attempted
0 M:0 S
Avg. Time

22 / 41

Choose the correct option.

The scope of the derived class is within


Aglobal scope

Blocal scope

Cin the immediate base classes

Din the abstract class

Answer: Option C

Explanation:

When we derive a class from another class and try to use some variable in derived class, the compiler first checks for the variable in derived class scope and then goes for the variables derived from base class.


Workspace

NA
SHSTTON
24
Solv. Corr.
12
Solv. In. Corr.
36
Attempted
0 M:0 S
Avg. Time

23 / 41

Choose the correct option.

A derived class


Ainherits data members and member functions from base class.

Binheris constructors and destructorsj

Cobject can access protected members with the dot operator.

Dboth (a) and (b)

Answer: Option A

Explanation:

Derived class inherits data members and member functions from base class.


There are 3 access specifiers in c++. Public, Private and Protected. 

Public members are accessible outside the class through an object of the class.

Protected members are also accessible outside the class but only from the class which derived it.All public members of a base class becomes protected members of the derived class.

Private members can not be accessed from outside the class.

In Private inheritance, all public and protected members of base class becomes private to the derived class and can be accessible.

Workspace

NA
SHSTTON
49
Solv. Corr.
46
Solv. In. Corr.
95
Attempted
0 M:0 S
Avg. Time

24 / 41

Choose the correct option.

Which of the following can access private data members or member functions of a class?


AAny function in the program.

BAll global functions in the program.

CAny member function of that class.

DOnly public member functions of that class.

Answer: Option C

Explanation:

Private members of a class can only be accessed by the member functions of that class and can not be accessed by the derived class or global functions in the program.

There are 3 access specifiers in c++. Public, Private and Protected. 

Public members are accessible outside the class through an object of the class.

Protected members are also accessible outside the class but only from the class which derived it.All public members of a base class becomes protected members of the derived class.

Private members can not be accessed from outside the class.

In Private inheritance, all public and protected members of base class becomes private to the derived class and can be accessible.

Workspace

NA
SHSTTON
7
Solv. Corr.
30
Solv. In. Corr.
37
Attempted
0 M:0 S
Avg. Time

25 / 41

Choose the correct option.

Which of the following type of data member can be shared by all instances of its class?


APublic

BInherited

CStatic

DFriend

Answer: Option C

Explanation:

Static data members will be shared by all instances of its class.

Static class member functions are independent of how many objects are created for that class. There will be only one copy the static member function will be existed for all instances of the class. We don't have to instantiate a class to access static functions of that class. we use scope resolution operator '::' to access static member functions.

Workspace

NA
SHSTTON
34
Solv. Corr.
54
Solv. In. Corr.
88
Attempted
0 M:0 S
Avg. Time

26 / 41

Choose the correct option.

Which of the following statement is correct with respect to the use of friend keyword inside a class?


AA private data member can be declared as a friend.

BA class may be declared as a friend.

CAn object may be declared as a friend.

DWe can use friend keyword as a class name.

Answer: Option B

Explanation:

A private data member can not be declared as a friend. A class can be declared as a friend.

A friend function is a regular function with its definition placed outside of any class. But a friend function when defined will have access to all private and public members of the class.

To define a friend function, we will declare the function name preceded with keyword inside the class and function definition will be placed outside of the class.

A friend function can be invoked directly by using the function name.

Workspace

NA
SHSTTON
21
Solv. Corr.
15
Solv. In. Corr.
36
Attempted
0 M:0 S
Avg. Time

27 / 41

Choose the correct option.

Which of the following access specifies is used in a class definition by default?


AProtected

BPublic

CPrivate

DFriend

Answer: Option C

Explanation:

Private is default access specifier for data members of a class if not provided one.


There are 3 access specifiers in c++. Public, Private and Protected. 

Public members are accessible outside the class through an object of the class.

Protected members are also accessible outside the class but only from the class which derived it.All public members of a base class becomes protected members of the derived class.

Private members can not be accessed from outside the class.

In Private inheritance, all public and protected members of base class becomes private to the derived class and can be accessible.

Workspace

NA
SHSTTON
60
Solv. Corr.
28
Solv. In. Corr.
88
Attempted
0 M:0 S
Avg. Time

28 / 41

Choose the correct option.

In C++ ____________ operator is used for Dynamic memory allocation.


AScope resolution

BConditional

CNew

DMembership access

Answer: Option C

Explanation:

This technique Dynamic memory allocation. We use 'new' operator in c++ to dynamically allocate memory in runtime. We can dynamically allocate space in runtime but we can not create new dynamic variables. for this reason usually we create dynamic variable and we store its address in a pointer. Below is one example of dynamic memory allocation.


int * x;  //declare a pointer 

x = new int;    // dynamically allocate memory of type int and assign its address to x

Workspace

NA
SHSTTON
33
Solv. Corr.
5
Solv. In. Corr.
38
Attempted
0 M:0 S
Avg. Time

29 / 41

Choose the correct option.

Which of the following also known as an instance of a class?


AFriend Functions

BObject

CMember Functions

DMember Variables

Answer: Option B

Explanation:

Instance and Object are almost same in c++.

But in general, in Object oriented programming model, instance and object had one basic difference.

Lets say,

Test t;

here t is an object of the class. the 't' becomes an instance when we instantiate it like new t().

Workspace

NA
SHSTTON
63
Solv. Corr.
26
Solv. In. Corr.
89
Attempted
0 M:0 S
Avg. Time

30 / 41

Choose the correct option.

Which of the following keywords is used to control access to a class member?


ADefault

BBreak

CProtected

DAsm

Answer: Option C

Explanation:

Protected is access specifier and is used to control access to class members.


There are 3 access specifiers in c++. Public, Private and Protected. 

Public members are accessible outside the class through an object of the class.

Protected members are also accessible outside the class but only from the class which derived it.All public members of a base class becomes protected members of the derived class.

Private members can not be accessed from outside the class.

In Private inheritance, all public and protected members of base class becomes private to the derived class and can be accessible.

Workspace

C++ Programming Objects and Classes Questions and Answers pdf

At C++ Programming topic Objects and Classes page No: 3 you will find list of 10 practice questions, tips/trick and shortcut to solve questions, solved questions, quiz, and download option to download the whole question along with solution as pdf format for offline practice. You can practice all the listed C++ Programming Objects and Classes topic questions offline too, by downloading the MCQs practice question of Objects and Classes with detail solution, with formula/Tips & Tricks, with Solved examples and with top-rated users answers, which will give you best answer ascross webs. It is one of the perfect Objects and Classes e-book pdf covering all types of questions in detail. These C++ Programming test with answers pdf cover all types of question asked in IIFT, XAT, SNAP, GRE, GMAT, NMAT, CMAT, MAT or for IT companies written exam like Wipro, HCL, Infosys, Accenture, Government exams, IBPS Exams etc. There are multiple formats to download your online free C++ Programming Objects and Classes e-book, like fully solved, unsolved questions with Answers sheet. Even you can customize your ebook format by adjusting the given options in the download section to make it your one of the best C++ Programming topic-based ebook. It is recommended to bookmark this page C++ Programming Objects and Classes for your preparation. Most of the students and fresher candidates finding it hard to clear the C++ Programming section in exams. Here Given Objects and Classes practice questions, quiz, fully solved questions, tips & trick and Mock tests, which include question from each topic will help you to excel in Objects and Classes. Each test has all the basics questions to advanced questions with answer and explanation for your clear understanding, you can download the test result as pdf for further reference.

At C++ Programming topic Objects and Classes, you will get multiple online quiz difficulty wise, which will have a total of 6 quizzes, categorized as easy, medium, and moderate level. While preparing for any Objects and Classes, take all the list quiz and check your preparation level for that topic. Each quiz have 10 different question, which needs to be answered in 20 min., all the listed quiz here is free, however, you will get only one chance for each quiz to attempt(Take Quiz seriously), so it is always recommended to take one quiz in each section before you start solving Objects and Classes MCQs practice question, and one after solving all the question of the respective level, you can refer back your Objects and Classes quiz result any time or you can download it as pdf for reference.

C++ Programming Objects and Classes Customize Online Mock Test

This is own type of mock test, where At this C++ Programming Objects and Classes MCQs mock test section, you will able to attempt only the questions related to Objects and Classes, in that question will be a different level, important, and all the questions will be part of some of the mock tests across Q4interview FREE Mock test. You need to choose the topic as Objects and Classes, and click on Double click to generate your customize mock test. While attempting the mock test you need to choose any of the one options out of given option. It is recommended to go through the direction given along with each question, as these questions will be randomly and so that same direction will not be applicable across the entire test. Once you submit your mock test, the result will be generated for Objects and Classes Customize mock test, where your performance point points will be highlighted. Q4interview analysis every single point which helps you to improve your topic understanding and help you to know your type of mistakes and way to improve Objects and Classes questions, by providing the same type of practice questions from practice exercise. The best part of this Objects and Classes, all these mock tests listed here are free and you can take as Many time, as many you want. When you continue to give Objects and Classes Customize Online Mock Test here regularly, then you will understand how much you have developed your accuracy on a topic, after that you will be able to decide how much attention you need to focus on. Your continued practice will increase your confidence, speed and thinking ability intensely, the Objects and Classes Customize topic on which you will practice more will beneficial for you in future during campus placement.Objects and Classes Mock Tests

C++ Programming Objects and Classes Quiz Online Test

The details of the C++ Programming Objects and Classes quiz are as follows. There are 10 questions for you. You have to answer them in 20 minutes. Within 20 minutes you have to see the errors in the sentences given as a question. Four options are also given to you, and you have to choose your opinion. You must be confident in your answer that the choices are difficult. Therefore, below we provide you with some information about C++ Programming Objects and Classes that you see and keep them in mind while answering questions.

C++ Programming Objects and Classes MCQs Practice Questions with Answer

On this Objects and Classes section of page you will find the easiest quickest ways to solve a question, formulas, shortcuts and tips and tricks to solve various easiest methods to solve Objects and Classes Question Quickly. It contains all the C++ Programming topic Objects and Classes questions which are common in any of the preliminary exams of any company. The solution is provided along with the questions. The practice of these questions is a must as they are easy as well as scoring and asked in all the exams They will confirm the selection if all the questions attempted wisely with little practice. It is recommanded to Take Mock test based on C++ Programming topic and Objects and Classes topic based quiz.

C++ Programming Objects and Classes solved examples question

Clarity of concepts is a must if you want to master the skill of solving C++ Programming problems. This page contains sample C++ Programming Objects and Classes questions and answers for freshers and competitive exams. Objects and Classes Questions with the detailed description, the explanation will help you to master the topic. Here solved examples with detailed answer description, explanations are given and it would be easy to understand. How to solve qObjects and ClassesC++ Programming? Here are some examples solved with the Common Rules/tricks/tips of C++ Programming. Enhance your chance to score maximum marks in C++ Programming sections through. Error Spotting Grammar Questions Online Test for Free. Fully solved Sentence Formation MCQs questions with detailed answer description. C++ Programming is an important topic for any exams but most aspirants find it difficult. You need to learn various tricks tips, rules, etc to solve quickly. At this page, you will find frequently asked Objects and Classes questions or problems with solutions, shortcuts, formulas for all-important competitive exams like IT companies exams, interviews. It is always a best practice to go through the example and understand the types of question and way to solve it, so let's do some examples to calculate efficiency, read through all the given here solved examples. You can post your solution, tips, trick and shortcut if you have any in respect to questions.

You can get here fully solved Objects and Classes examples with a detailed answer and description. You can solve Objects and Classes problems with solutions, the questions by companies wise by filtering the questions, additionally, you can check what type of questions are being asked in IT companies Written Round from Objects and Classes. Objects and Classes became one of the most important sections in the entire competitive exams, Companies Campus, and entrance online test. Go through Objects and Classes Examples, Objects and Classes sample questions. You can Evaluate your level of preparation in Objects and Classes by Taking the Q4Interivew Objects and Classes Online Mock Test based on most important questions. All the Objects and Classes practice questions given here along with answers and explanations are absolutely free, you can take any number of time any mock Test.

Why C++ Programming Objects and Classes?

In this practice section, you can practice C++ Programming Questions based on "Objects and Classes" and improve your skills in order to face the interview, competitive examination, IT companies Written exam, and various other entrance tests (CAT, GATE, GRE, MAT, Bank Exam, Railway Exam etc.) with full confidence.

Where can I get C++ Programming Objects and Classes questions and answers with explanation?

Q4Interview provides you lots of fully solved C++ Programming (Objects and Classes) questions and answers with Explanation. Solved examples with detailed answer description, explanation are given and it would be easy to understand. You can download C++ Programming Objects and Classes quiz questions with answers as PDF files and eBooks.

Where can I get C++ Programming Objects and Classes Interview Questions and Answers (objective type, multiple-choice, quiz, solved examples)?

Here you can find objective type C++ Programming Objects and Classes questions and answers for interview and entrance examination. Multiple choice and true or false type questions are also provided.