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

Paytm Interview Questions and Answers

5.07K

Tot. Mock Test: 0


Total Qs: 63+

  •  Select All
  •  Java
  •  C++
  •  .NET
  •  Operating System
  •  SQL
  •  DBMS
  •  Networking
  •  HR Question in TR
  •  Data Structure
  •  Soft. Engineering
  •  Oracle PLSQL
  •  Programming Qs. in TR
  •  Python

    1 / 63

    What are the principle concepts of OOPS?
    Answer:

    1. Abstraction
    2. Encapsulation
    3. Inheritance
    4. Polymorphism
    5. Classes and Object

    Please Login First :
    Answer:

    Abstraction is of the process of hiding unwanted details from the user.

    Please Login First :
    Answer:

    Encapsulation is binding of attributes and behaviors. Hiding the actual implementation and exposing the functionality of any object. Encapsulation is the first step towards OOPS, is the procedure of covering up of data and functions into a single unit (called class). Its main aim is to protect the data from out side world.

    Please Login First :

    4 / 63

    What is polymorphism? Explain with an example?
    Answer:

    Single entity showing multiple behaviours.
    Example: Mobile can be used to take photos , internet usage,text documents creation etc.,
    Two types of polymorphism 1.static polymorphism ( method over riding)
    2. Dynamic polymorphism ( method over loading)

    Please Login First :

    5 / 63

    What is a HashTable?
    Answer:

    No Discussion on this question yet!

    Please Login First :

    6 / 63

    What is deadlock? How do you avoid it?
    Answer:

    No Discussion on this question yet!

    Please Login First :
    Answer:

    No Discussion on this question yet!

    Please Login First :

    8 / 63

    What is acid property in SQL Server?
    Answer:

    It ensures Data validity and

    Please Login First :

    9 / 63

    What is a transaction and ACID properties in DBMS?
    Answer:

    A transaction is a very small unit of a program and it may contain several lowlevel tasks. A transaction in a database system must maintain Atomicity, Consistency, Isolation, and Durability − commonly known as ACID properties − in order to ensure accuracy, completeness, and data integrity.




    • Atomicity − This property states that a transaction must be treated as an atomic unit, that is, either all of its operations are executed or none. There must be no state in a database where a transaction is left partially completed. States should be defined either before the execution of the transaction or after the execution/abortion/failure of the transaction.

    • Consistency − The database must remain in a consistent state after any transaction. No transaction should have any adverse effect on the data residing in the database. If the database was in a consistent state before the execution of a transaction, it must remain consistent after the execution of the transaction as well.

    • Durability − The database should be durable enough to hold all its latest updates even if the system fails or restarts. If a transaction updates a chunk of data in a database and commits, then the database will hold the modified data. If a transaction commits but the system fails before the data could be written on to the disk, then that data will be updated once the system springs back into action.

    • Isolation − In a database system where more than one transaction are being executed simultaneously and in parallel, the property of isolation states that all the transactions will be carried out and executed as if it is the only transaction in the system. No transaction will affect the existence of any other transaction.

    Please Login First :

    10 / 63

    What is the use of ACID property in database management system?
    Answer:

    ACID properties are 4 important properties of a transaction that a DBMS must ensure to maintain data in the case of concurrent access

    Please Login First :


Most Frequent Qs.