[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.

Inheritance Questions

NA
SHSTTON
135
Solv. Corr.
60
Solv. In. Corr.
195
Attempted
15 M:54 S
Avg. Time

1 / 9

Choose the correct option.

Which of the following is a technique for hiding the internal implementation details of an object?


AEncapsulation

BPolymorphism

CInheritance

DAll of the above.

Answer: Option A

Explanation:

Here is no explanation for this answer

Workspace

NA
SHSTTON
104
Solv. Corr.
112
Solv. In. Corr.
216
Attempted
0 M:59 S
Avg. Time

2 / 9

Choose the correct option.

In an Object Oriented system, if class A inherits its properties from class B, class A and B are known as _______________ and ___________ class respectively.


ASuper and Sub

Boverloading and overriding

CSub and Super

DNone

Answer: Option C

Explanation:

Here is no explanation for this answer

Workspace

NA
SHSTTON
40
Solv. Corr.
70
Solv. In. Corr.
110
Attempted
0 M:23 S
Avg. Time

3 / 9

What all gets printed when the following program is compiled and run.
public class test {
public static void main(String args[]) {
inti, j=1;
i = (j>1)?2:1;
switch(i) {
case 0: System.out.println(0); break;
case 1: System.out.println(1);
case 2: System.out.println(2); break;
case 3: System.out.println(3); break;
      }
   }
}

A0

B1

C2

D3

EBoth B & C

Answer: Option E

Explanation:

what the f!!!  what is the symbol "?"

Workspace

NA
SHSTTON
26
Solv. Corr.
76
Solv. In. Corr.
102
Attempted
0 M:0 S
Avg. Time

4 / 9

What is the output for the below code?
import javutil.Iterator;
import javutil.TreeSet;
public class Test {
public static void main(String... args) {
TreeSet s1 = new TreeSet();
s1.add("one");
s1.add("two");
s1.add("three");
s1.add("one");
Iterator it = s1.iterator();
while (it.hasNext() ) {
System.out.print( it.next() + " " );
}
}
}

Aone three two

BRuntime Exception

Cone three two one

Done two three

Answer: Option A

Explanation:

TreeSet assures no duplicate entries.it will return elements in natural order, which, for Strings means alphabetical.

Workspace

NA
SHSTTON
42
Solv. Corr.
59
Solv. In. Corr.
101
Attempted
0 M:0 S
Avg. Time

5 / 9

What is the output for the below code?
interface A {
public void printValue();
}
public class Test{
public static void main (String[] args){
A a1 = new A() {
public void printValue(){
System.out.println("A");
 }
 };
 a1.printValue();
 }
 }

ACompilation fails due to an error on line 3

BA

CCompilation fails due to an error on line 8

Dnull

Answer: Option B

Explanation:

The A a1 reference variable refers not to an instance of interface A, but to an instance of an anonymous (unnamed) class. So no compilation error.

Workspace

NA
SHSTTON
27
Solv. Corr.
66
Solv. In. Corr.
93
Attempted
0 M:3 S
Avg. Time

6 / 9

What will be the result of compiling and run the following code:
public class Test {
public static void main(String... args) throws Exception {
File file = new File("test.txt");
System.out.println(file.exists());
file.createNewFile();
System.out.println(file.exists());
}
}

Atrue true

Bfalse true

Cfalse false

DNone of the above

Answer: Option B

Explanation:

creating a new instance of the class File, you're not yet making an actual file, you're just creating a filename. So file.exists() return false. createNewFile() method created an actual
file.so file.exists() return true.

Workspace

NA
SHSTTON
21
Solv. Corr.
67
Solv. In. Corr.
88
Attempted
0 M:0 S
Avg. Time

7 / 9

What is the output for the below code?
public interface InfA {
protected String getName();
}
public class Test implements InfA{
public String getName(){
return "test-name";
}
public static void main (String[] args){
Test t = new Test();
System.out.println(t.getName());
}
}

Atest-name

BCompilation fails due to an error on lines 2

CCompilation fails due to an error on lines 1

DCompilation succeed but Runtime Exception

Answer: Option B

Explanation:

Illegal modifier for the interface method InfgetName(); only public and abstract are permitted

Workspace

NA
SHSTTON
25
Solv. Corr.
58
Solv. In. Corr.
83
Attempted
0 M:0 S
Avg. Time

8 / 9

What will be the result of compiling the following code:
public class SuperClass {
public int doIt(String str, Integer... datthrows Exception{
String signature = "(String, Integer[])";
System.out.println(str + " " + signature);
return 1;
}
}
public class SubClass extends SuperClass{
public int doIt(String str, Integer... dat
{
String signature = "(String, Integer[])";
System.out.println("Overridden: " + str + " " +
signature);
return 0;
}
public static void main(String... args)
{
SuperClass sb = new SubClass();
sb.doIt("hello", ;
}
}

AOverridden: hello (String, Integer[])

Bhello (String, Integer[])

CComplilation fails

DNone of the above

Answer: Option C

Explanation:

Unhandled exception type Exception.

Workspace

NA
SHSTTON
21
Solv. Corr.
77
Solv. In. Corr.
98
Attempted
0 M:0 S
Avg. Time

9 / 9

What is the output for the below code?
public class A {
public void printName(){
System.out.println("Value-A");
}
}
public class B extends A{
public void printName(){
System.out.println("Name-B");
}
}
public class C extends A{
public void printName(){
System.out.println("Name-C");
}
}
public class Test{
public static void main (String[] args) {
B b = new B();
C c = new C();
b = c;
newPrint(b);
}
public static void newPrint(A {
printName();
}
}

AName-B

BName-C

CCompilation fails due to an error on lines 5

DCompilation fails due to an error on lines 9

Answer: Option C

Explanation:

Reference variable can refer to any object of the same type as the declared reference OR can refer to any subtype of the declared type. Reference variable "b" is type of class B
and reference variable "c" is a type of class So Compilation fails.

Workspace


JAVA Programming Inheritance Questions and Answers pdf

At JAVA Programming topic Inheritance page No: 1 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 JAVA Programming Inheritance topic questions offline too, by downloading the MCQs practice question of Inheritance 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 Inheritance e-book pdf covering all types of questions in detail. These JAVA 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 JAVA Programming Inheritance 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 JAVA Programming topic-based ebook. It is recommended to bookmark this page JAVA Programming Inheritance for your preparation. Most of the students and fresher candidates finding it hard to clear the JAVA Programming section in exams. Here Given Inheritance practice questions, quiz, fully solved questions, tips & trick and Mock tests, which include question from each topic will help you to excel in Inheritance. 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 JAVA Programming topic Inheritance, 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 Inheritance, 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 Inheritance MCQs practice question, and one after solving all the question of the respective level, you can refer back your Inheritance quiz result any time or you can download it as pdf for reference.

JAVA Programming Inheritance Customize Online Mock Test

This is own type of mock test, where At this JAVA Programming Inheritance MCQs mock test section, you will able to attempt only the questions related to Inheritance, 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 Inheritance, 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 Inheritance 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 Inheritance questions, by providing the same type of practice questions from practice exercise. The best part of this Inheritance, all these mock tests listed here are free and you can take as Many time, as many you want. When you continue to give Inheritance 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 Inheritance Customize topic on which you will practice more will beneficial for you in future during campus placement.Inheritance Mock Tests

JAVA Programming Inheritance Quiz Online Test

The details of the JAVA Programming Inheritance 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 JAVA Programming Inheritance that you see and keep them in mind while answering questions.

JAVA Programming Inheritance MCQs Practice Questions with Answer

On this Inheritance 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 Inheritance Question Quickly. It contains all the JAVA Programming topic Inheritance 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 JAVA Programming topic and Inheritance topic based quiz.

JAVA Programming Inheritance solved examples question

Clarity of concepts is a must if you want to master the skill of solving JAVA Programming problems. This page contains sample JAVA Programming Inheritance questions and answers for freshers and competitive exams. Inheritance 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 qInheritanceJAVA Programming? Here are some examples solved with the Common Rules/tricks/tips of JAVA Programming. Enhance your chance to score maximum marks in JAVA Programming sections through. Error Spotting Grammar Questions Online Test for Free. Fully solved Sentence Formation MCQs questions with detailed answer description. JAVA 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 Inheritance 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 Inheritance examples with a detailed answer and description. You can solve Inheritance 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 Inheritance. Inheritance became one of the most important sections in the entire competitive exams, Companies Campus, and entrance online test. Go through Inheritance Examples, Inheritance sample questions. You can Evaluate your level of preparation in Inheritance by Taking the Q4Interivew Inheritance Online Mock Test based on most important questions. All the Inheritance practice questions given here along with answers and explanations are absolutely free, you can take any number of time any mock Test.

Why JAVA Programming Inheritance?

In this practice section, you can practice JAVA Programming Questions based on "Inheritance" 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 JAVA Programming Inheritance questions and answers with explanation?

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

Where can I get JAVA Programming Inheritance Interview Questions and Answers (objective type, multiple-choice, quiz, solved examples)?

Here you can find objective type JAVA Programming Inheritance questions and answers for interview and entrance examination. Multiple choice and true or false type questions are also provided.