[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 :: iGate

69.09K

Tot. Mock Test: 11


Total Qs: 160+

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

    121 / 160

    What is DDL (Data Definition Language)?
    Answer:

    A data base schema which is specified by a set of definitions expressed by a special language is called DDL. Data Definition Language (DDL) is used to define and manage all the objects in an SQL database.

    Please Login First :
    Answer:

    It is a special language used to manipulate the Data. Data Manipulation Language (DML), which is used to select, insert, update, and delete data in the objects defined using DDL.

    Please Login First :

    123 / 160

    What is a PRIMARY KEY?
    Answer:

    The PRIMARY KEY is the column(s) used to uniquely identify each row of a table.

    Please Login First :

    124 / 160

    What is a FOREIGN KEY?
    Answer:

    A FOREIGN KEY is one or more columns whose values are based on the PRIMARY or CANDITATE KEY values from the database.

    Please Login First :

    125 / 160

    What is a UNIQUE KEY?
    Answer:

    A UNIQUE KEY is one or more columns that must be unique for each row of the table.

    Please Login First :

    126 / 160

    What is the difference between UNIQUE and PRIMARY KEY?
    Answer:

    The UNIQUE KEY column restricts entry of duplicate values but entry of NULL value is allowed. In case of PRIMARY KEY columns entry of duplicate as well as value is also restricted.

    Please Login First :
    Answer:

    A View is a database object that is a logical representation of a table. It is derived from a table but has no storage space of its own and often may be used in the same manner as a table.

    Please Login First :
    Answer:

    ROWID is the logical address of a row, and it is unique within the database.

    Please Login First :
    Answer:

    INDEX is a general term for an SQL feature used primarily to speed up execution and impose UNIQUENESS upon data. You can use an index to gain fast access to specific information in a database table. An index is a structure that orders the values of one or more columns in a database table. The index provides pointers to the data values stored in specified columns of the table, and then orders those pointers according to the sort order you specify.

    Please Login First :

    130 / 160

    What is a cursor? How do you replace a Cursor?
    Answer:

    : An entity that maps over a result set and establishes a position on a single row within the result set. After the cursor is positioned on a row, operations can be performed on that row, or on a block of rows starting at that position. The most common operation is to fetch (retrieve) the current row or block of rows.

    Please Login First :


Most Frequent Qs.