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

Technical Interview Questions and Answers :: Societe Generale

102.88K

Tot. Mock Test: 3


Total Qs: 75+

  •  Select All
  •  Oracle PLSQL
  •  SQL
  •  Java
  •  C++
  •  Informatica
  •  WebMethod
  •  DBMS
  •  C
  •  Soft. Engineering
  •  Data Structure
  •  HR Question in TR

    41 / 75

    What is Polymorphism/Late Binding? Explain the different forms of Polymorphism.
    Answer:

    When an object is sent a message then it does not know itself what type it is, the runtime environment will decide about function calling over an object. This feature of connecting an object with its associated message at runtime is known as Polymorphism or Late binding or Dynamic binding.

    Please Login First :

    42 / 75

    What is method overloading and overriding?
    Answer:

    Method Overloading:
    A method with changed formal parameters will lead to implementing method overloading.
    int calculateSum(int i,int j)
    float calculateSum(float i,int j)
    double calculateSum(double i,int j)
    float calculateSum(int i,float j)

    Method Overriding:
    The method with the same signature but with changed implementation lead to method overriding and that can occur in a parent child relation of classes. A method defined in parent class can be overridden in its child class with different implementation from its base class.
    1. Pointers are supported in C++ while not in Java. The memory management is done automatically with help of part of JVM called Garbage Collector.
    2. Multiple inheritance is not supported in Java but supported in C++.
    3. There are no structures and unions in Java.
    4. There is no scope resolution operator in Java (::).
    5. There are no destructors in Java like C++.
    6. There is no virtual keyword in Java because all non-static method use dynamic binding.

    Please Login First :
    Answer:

    super is a keyword in java used to refer to the base class in inheritance

    Please Login First :

    44 / 75

    What is an abstract class?Can we instantiate an abstract class?
    Answer:

    A virtual function, equated to zero is called a pure virtual function. It is a function declared in a base class that has no definition relative to the base class. A class containing such pure function is called an abstract class.
    It objectives are
    • Provide some traits to the derived classes.
    • To create a base pointer required for achieving run time polymorphism.

    Please Login First :
    Answer:

    Singleton class is a design pattern where it allowes creating only one object per class



    we should define constructor as private it object creation is restricted



    we should use static method this method is returen object of same class only

    Please Login First :
    Answer:

    No, java vannot run on 1MB RAM machine. The harware requirement is 128MB RAM.

    Please Login First :
    Answer:

    Java Virtual Machine(JVM) is what makes Java platform independent. A compiled java code creates a .class file which can then be run on any platform which has JVM installed on it.

    Please Login First :

    48 / 75

    What are collections in java?
    Answer:

    A collection is an object that can hold references to other objects. The collection interfaces declare the operations that can be performed on each type ofcollection. The classes and interfaces of thecollections framework are in package java.util.

    Please Login First :

    49 / 75

    What are the exceptions in java?
    Answer:

    An exception (or exceptional event) is a problem that arises during the execution of a program. When an Exception occurs the normal flow of the program is disrupted and the program/Application terminates abnormally.

    Please Login First :

    50 / 75

    What are the types of classes in java?
    Answer:

    there are two classes.
    outer class
    inner class

    Please Login First :


Most Frequent Qs.