0% found this document useful (0 votes)
6 views23 pages

Interview Q & A

The document contains a comprehensive list of interview questions and answers across various technical topics including Windows, .NET, OOP concepts, and SQL. It covers fundamental concepts such as Active Directory, .NET framework, object-oriented programming features, and SQL database management. Each section provides key definitions and differences to aid in understanding essential technical terms and practices.

Uploaded by

karna.416
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views23 pages

Interview Q & A

The document contains a comprehensive list of interview questions and answers across various technical topics including Windows, .NET, OOP concepts, and SQL. It covers fundamental concepts such as Active Directory, .NET framework, object-oriented programming features, and SQL database management. Each section provides key definitions and differences to aid in understanding essential technical terms and practices.

Uploaded by

karna.416
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Interview Q & A

1. Windows
 What is event viewer?
 What is called a domain name?
 What is a host and domain?
 What is Active Directory (AD) group?
 Difference between system & application logs?
 What is cache memory?
 What is difference between host and server?
 What is the difference http and https?
 What is meant by client and server?
 What is difference between server and cloud?
 Difference between ROM & RAM?

2. .NET
 What is .NET?
 What is the .NET framework?
 What are the most important aspects of .NET?
 What is the difference between value type and reference type?
 What is the difference between constants and read-only variables?
 What is caching in .NET?
 What is the difference between Stack and Queue?
 What are globalization and localization?
 What is Multithreading?
 What is the difference between a DLL & EXE?
 What is .net library?
 What is the difference between Stack and Heap?
 What are a base class and derived class?
 What is Garbage Collection in .NET?

3. OOPs Concept
 What is an object?
 What is the difference between class & object?
 What are the basic features of OOP?
 Name some OOP languages?
 What is inheritance?
 What is Polymorphism?
 Difference between Abstraction & Encapsulation?

4. SQL
 What is a Database?
 What is the difference between DBMS & RDBMS
 What is SQL?
 What are tables and Fields?
 What is a primary key?
Interview Q & A

 What is a unique key?


 What is a foreign key?
 What is a join?
 What are the types of joins?
 What is stored procedure?
 What is the difference between stored procedure & function?
 What is a view?
 What is an index?
 What is a Cursor?
 What is subquery?
 What is the difference between UNION & UNION ALL?
 What is a trigger?
 What is the difference between Delete & Truncate?
 What is a constraint?

ANSWERS:
Interview Q & A

What is the Active Directory?

Active Directory (AD) is Microsoft's proprietary directory service. It runs on Windows Server and enables
administrators to manage permissions and access to network resources. Active Directory stores data as
objects. An object is a single element, such as a user, group, application or device such as a printer.

What is called domain name?

A domain name is a string of text that maps to a numeric IP address, used to access a website from
client software. In plain English, a domain name is the text that a user types into a browser window to
reach a particular website. For instance, the domain name for Google is '[Link]'.

What is a host and domain?

The main difference between domain and hosting is that domain is the address, which allows a visitor to
easily find your website online, while hosting is where the website files are stored. In order to have a
functioning website, you need both – a domain and hosting space.

What is difference between host and server?

A host is a device that connects to a computer, this could be a computer, laptop, tablet or smartphone.
A server is a piece of hardware or even software that can provide a service to other devices. It can also
provide services to programs connected to the network.

What is the difference http and https?

HTTPS is HTTP with encryption. The only difference between the two protocols is that HTTPS uses TLS
(SSL) to encrypt normal HTTP requests and responses. As a result, HTTPS is far more secure than HTTP. A
website that uses HTTP has http:// in its URL, while a website that uses HTTPS has https://

What is meant by client and server?

A server is simply a computer that provides the network resources and provides service to other
computers when they request it. A client is the computer running a program that requests the service
from a server

What is difference between server and cloud?

A cloud is a type of a server, which is remote (usually in Data Centers), meaning you access it via the
internet. You are renting the server space, rather than owning the server. A local (regular) server is one
that you do buy and own physically, as well as have on site with you.

Basic .Net Interview Questions

1. What is .NET?

Ans: .NET is a developer platform to build a variety of applications for web, mobile, desktop, and IoT. It
supports various languages like C#, F#, Visual Basic, J#, C++, etc. for building the applications.
Interview Q & A

2. What is the .NET framework?

Ans: The .NET framework is a software development platform that supports an object-oriented
approach. It offers services, like memory management, networking, security, and type safety.

3. What languages does the .NET Framework support?

Ans: .NET Framework supports over 60 programming languages, out of these 11 programming languages
are designed and developed by Microsoft.

4. What are the most important aspects of .NET?

Ans: .NET is an open-source platform containing around 32 programming languages and several tools for
application creation. It is highly secure and runs comfortably on multiple computer platforms.

5. Explain OOP and its relation to the .NET Framework?

Ans: OOP is the acronym for Object-Oriented Programming. It is a programming structure that uses self-
contained entities called ‘objects’ instead of methods to achieve the desired functionality. OOP
allows .NET developers to create modular programs and classes containing methods, properties, fields,
events, and other logical modules.

6. What are the basic features of OOP?

Ans: The basic features of OOP are:

Encapsulation: Creation of self-contained modules that bind together the data and the functions that
access that data.

Abstraction: Handles complexity and allows the implementation of further complex logic without
disclosing it to the user object.

Polymorphism: Operation performed depends upon the context at runtime to facilitate easy integration.

Inheritance: Creation of classes in a hierarchy to enable a class to inherit behavior from its parent class
allowing reuse of code.

Related Article: OOP Interview Questions and Answers

7. Name some OOP languages?

Ans: Simula was the first OOP language and Java, JavaScript, Python, C++, Visual Basic. NET, Ruby, Scala,
PHP are few others.

8. What is JIT?
Interview Q & A

Ans: JIT stands for Just In Time. It is a compiler in CLR responsible for the execution of .NET programs of
different languages by converting them into machine code. It speeds up the code execution and
supports multiple platforms.

9. What are the different types of JIT Compilers?

Ans: There are 3 types of JIT Compilers:

i. Pre-JIT compiler: It compiles all the source code into the machine code in a single compilation cycle,
i.e. at the application deployment time.

ii. Normal JIT Compiler: The source code methods required at run-time are compiled into machine code
and stored in the cache to be called later.

iii. Econo JIT Compiler: The methods required only at run-time are compiled using this compiler and they
are not stored for future use.

10. What is BCL?

Ans: BCL stands for Base Class Library. It comprises classes, interface, and value types. It is the
foundation for building .NET Framework applications, components, and controls.

11. What is FCL?

Ans: FCL stands for Framework Class Library and is a collection of reusable types, including classes,
interfaces, and data types included in the .NET Framework. It is used for developing a wide variety of
applications, as it provides access to system functionality.

12. What is caching in .NET?

Ans: Caching functionality in .NET Framework allows data storage in memory for rapid access. It helps
improve performance by making data available, even if the data source is temporarily unavailable, and
enhances scalability.

13. What are the types of caching in .NET?

Ans: There are 3 types of caches in .NET:

In-Memory Cache

Persistent in-process Cache

Distributed Cache

Related Article: Learn .Net Libraries

14. What is a cross-page posting?

Ans: Cross-page posting is used to submit a form to a different page while creating a multi-page form to
collect information from the user. You can specify the page you want to post to using the PostBackURL
attribute.
Interview Q & A

15. Discuss the difference between constants and read-only variables?

Ans: Constant fields are created using the const keyword and their value remains the same throughout
the program. The Read-only fields are created using a read-only keyword and their value can be
changed. Const is a compile-time constant while Read-only is a runtime constant.

16. Explain the difference between value type and reference type?

Ans: Types in .NET Framework are either Value Type or Reference Type. A Value Type is stored in the
stack and it holds the data within its own memory allocation. While a Reference Type is stored in the
heap and it contains a pointer to another memory location that holds the real data.

17. What are EXE and DLL?

Ans: EXE is an executable file that works as an application and it runs individually as it contains an entry
point. DLL is a Dynamic Link Library which is a supportive file to other applications, and it cannot run
individually.

18. What is the difference between Stack and Heap?

Ans: The stack is used for static memory allocation and access to this memory is fast and simple to keep
track of. Heap is used for dynamic memory allocation and memory allocation to variables that happen at
run time. Accessing the heap memory is complex and slower compared to the stack.

19. What is the difference between Stack and Queue?

Ans: The values in a stack are processed following the LIFO (Last-In, First-Out) principle, so all elements
are inserted and deleted from the top end. But a queue lists items on a FIFO (First-In, First-Out) basis in
terms of both insertion and deletion. The elements are inserted from the rear end in a queue and
deleted from the front end.

20. What are the differences between systems. StringBuilder and system. string?

Ans: System. a .string is immutable and fixed-length, whereas StringBuilder is mutable and variable
length. The size of the .string cannot be changed, but that of the .stringbuilder can be changed.

Advanced .Net Interview Questions

21. What is the difference between the While and For loop? Provide a .NET syntax for both loops?

Ans: The For loop provides a concise way of writing the loop structure, but the While loop is a control
flow statement that allows repetitive execution of the code. Initialization, condition checking, iteration
statements are written at the top of the For loop, but only initialization and condition checking is done
at the top of the while loop.

22. What are a base class and derived class?

Ans: The base class is a class whose members and functions can be inherited, and the derived class is the
class that inherits those members and may also have additional properties.

23. What is the extension method for a class?


Interview Q & A

Ans: The extension method is used to add new methods in the existing class or the structure without
modifying the source code of the original type. Special permission from the original type or re-compiling
it isn’t required.

24. What is inheritance?

Ans: Inheritance is a method for creating hierarchies of objects wherein one class, called a subclass, is
based on another class, called a base class.

25. What is the inheritance hierarchy?

Ans: Inheritance hierarchy is a singly rooted tree structure for organizing classes.

26. What are implementation inheritance and interface inheritance?

Ans: Implementation inheritance is when a class inherits all members of the class from which it is
derived. Interface inheritance is when the class inherits only signatures of the functions from another
class.

27. How can a class be prevented from being inherited?

Ans: To prevent a class from being inherited, the sealed keyword in C# can be used. The NotInheritable
keyword can be used in [Link] to prevent accidental inheritance of the class.

28. What is a constructor in C#?

Ans: A constructor is a special method of the class that contains a collection of instructions and gets
automatically invoked when an instance of the class is created.

29. Explain Different Types of Constructors in C#?

Ans: There are 5 types of constructors in C#, as given below:

Default Constructor: It is without any parameters.

Parameterized Constructor: It has one parameter.

Copy Constructor: It creates an object by copying variables from another object.

Static Constructor: It is created using a static keyword and will be invoked only once for all of the
instances of the class.

Private Constructor: It is created with a private specifier and does not allow other classes to derive from
this class or create an instance of it.

30. Define Method Overriding?

Ans: Method Overriding is a process that allows using the same name, return type, argument, and
invoking the same functions from another class (base class) in the derived class.

31. What is Shadowing?


Interview Q & A

Ans: Shadowing makes the method of the parent class available to the child class without using the
override keyword. It is also known as Method Hiding.

32. What is the difference between shadowing and overriding?

Ans: Shadowing is used to provide a new implementation for the base class method and helps protect
against subsequent base class modification. Overriding allows you to rewrite a base class function with a
different definition and achieve polymorphism.

33. What is Polymorphism?

Ans: Polymorphism refers to one interface with multiple functions. It means that the same method or
property can perform different actions depending on the run-time type of the instance that invokes it.

34. What are the types of Polymorphism?

Ans: There are two types of Polymorphism:

i. Static or compile-time polymorphism

ii. Dynamic or runtime polymorphism

35. Do we have multiple inheritances in .NET? Why?

Ans: No, .NET supports only single inheritance due to the diamond problem. Also, it would add
complexity when used in different languages. However, multiple interfaces can solve the purpose.

36. What is the Diamond of Death?

Ans: It is an ambiguity that arises due to multiple inheritances in C#. Two classes B and C inherit from A,
and D inherits from both B and C but doesn’t override the method defined in A. The Diamond Problem
arises when class B or C has overridden the method differently and D cannot decide to inherit from
either B or C.

37. What is an Interface?

Ans: An interface is a declaration for a set of class members. It is a reference type that contains only
abstract members such as Events, Methods, Properties, etc.

38. What are the events and delegates?

Ans: Events notify other classes and objects when the desired action occurs in a class or object. A
delegate is a type-safe function pointer that defines a method signature in CLI.

39. What is business logic?

Ans: It is the application processing layer that coordinates between the User Interface Layer and Data
Access Layer.

40. What is the difference between a component and a control?


Interview Q & A

Ans: A Component does not draw itself on the form and can be placed below the form area. A control
draws itself on the form and can be placed inside the form area. Also, all controls are components, but
not all components are controls.

41. Differentiate between user controls and custom controls?

Ans: User and Custom controls inherit from different levels in the inheritance tree. Custom control is
designed for use by a single application while user control can be used by more than one application.

42. What are the functional and non-functional requirements?

Ans: Functional requirements are the basic and mandatory facilities that must be incorporated into a
system. Non-functional requirements are quality-related attributes that the system must deliver.

43. What is .Net Reflection?

Ans: Reflection objects are used for creating type instances and obtaining type information at runtime.
The classes in the [Link] namespace gives access to the metadata of a running program.

44. What is the Global Assembly Cache (GAC)?

Ans: The Global Assembly Cache is a machine-wide code cache that is stored in a folder in the Windows
directory. It stores the .NET assemblies that are specifically designated to be shared by all applications
executed on the system.

45. What is Object-Role Modeling (ORM)?

Ans: Object-Role Modeling (ORM) is a powerful method for designing and querying information systems
at the conceptual level. It is an easy and understandable description of the application for non-technical
users.

46. What are globalization and localization?

Ans: Globalization is designing and coding culture-neutral and language-neutral applications.


Localization is customizing the application and translating the UI based on specific cultures and regions.

47. What is MIME?

Ans: MIME stands for Multipurpose Internet Mail Extension. It is an add-on or a supplementary protocol
that allows non-ASCII data to be sent through SMTP. It facilitates the exchange of data files on the
internet and was proposed by Bell Communications in 1991.

48. What is a Hashtable?

Ans: The Hashtable class is a collection that stores key-value pairs. It organizes the pairs based on the
hash code of each key and uses it to access elements in the collection.

49. Name design patterns in the .NET Framework?

Ans: There are 23 design patterns classified into 3 categories:


Interview Q & A

1. Creational Design Pattern

i. Factory Method

ii. Abstract Factory

iii. Builder

iv. Prototype

v. Singleton

2. Structural Design Patterns

i. Adapter

ii. Bridge

iii. Composite

iv. Decorator

v. Façade

vi. Flyweight

vii. Proxy

3. Behavioral Design Patterns

i. Chain of Responsibility

ii. Command

iii. Interpreter

iv. Iterator

v. Mediator

vi. Memento

vii. Observer

viii. State

ix. Strategy

x. Visitor

xi. Template Method

.Net Interview Questions for Experienced

50. What are the design principles used in .NET?

Ans: Net uses the SOLID design principle which includes the following:
Interview Q & A

Single responsibility principle (SRP)

Open-Closed Principle (OCP)

Liskov substitution principle (LSP)

Interface segregation principle (ISP)

Dependency inversion principle (DIP)

51. What is Marshaling?

Ans: Marshaling is the process of transforming types in the managed and unmanaged code.

52. What are Boxing and Unboxing?

Ans: Boxing and Unboxing is a concept of C#, which enables a unified view of the type system to treat
the value of any type as an object.

53. What is the difference between Server. Transfer and Response. Redirect?

Ans: These are used to redirect a user from one web page to the other one. The Response. The redirect
method requests a new URL and specifies the new URL. The Server. The transfer method terminates the
execution of the current page and starts the execution of a new page.

54. What is Garbage Collection in .NET?

Ans: Garbage Collection in .NET Framework facilitates automatic memory management. It automatically
releases the memory space after all the actions related to the object in the heap memory are
completed.

55. What are the divisions of the Memory Heap?

Ans: The memory heap is divided into three generations.

Generation 0: Used to store short-lived objects. Frequent Garbage Collection happens in this
Generation.

Generation 1: Used for medium-lived objects.

Generation 2: Used for long-lived objects.

56. What is the difference between trace class and debug class?

Ans: The call to Debug class is included in Debug mode only and it is used at the time of application
development. While the call to Trace class will be included in Debug as well as Release mode also and it
is used at the time of application deployment.

57. Differentiate between a Debug build and a Release build?


Interview Q & A

Ans: Debug builds do not optimize and allow the accurate setting of breakpoints. They contain
debugging symbols, but the code built-in "Release" mode is optimized for speed or size without any
debug data.

58. What is the application object?

Ans: The Application object is used to share information among all users of an application. You can tie a
group of ASP files that work together to perform some purpose.

59. What is the session object?

Ans: A Session object stores information and variables about a user and retains it through the session.

60. What are managed and unmanaged codes?

Ans: Managed code runs inside CLR and installing the .NET Framework is necessary to execute it.
Unmanaged code does not depend on CLR for execution and is developed using languages outside
the .NET framework.

61. How is a Managed code executed?

Ans: The steps for executing a managed code are as follows:

Choose a language compiler depending on the language of the code.

Convert the code into Intermediate language using its own compiler.

The IL is then targeted to CLR which converts the code into native code using JIT.

Execution of Native code.

62. What are the different parts of an Assembly?

Ans: The different parts of an Assembly are:

i. Manifest: Also known as the assembly metadata, it has information about the version of an assembly.

ii. Type Metadata: Binary information of the program.

iii. MSIL: Microsoft Intermediate Language code.

iv. Resources: List of related files.

63. What is MVC?

Ans: MVC is an architectural model for building .Net applications. It stands for Model View Controller. It
is easy to use and offers full control over the HTML.

64. Explain the difference between Function and Stored procedure?

Ans: Stored Procedures are pre-compiled objects which execute the code when called for. While a
Function is compiled and executed when it is called for.
Interview Q & A

65. What is a .NET web service?

Ans: It is a component that allows the publishing of the application's function on the web to make it
accessible to the public. It resides on a Web server and provides information and services using standard
Web protocols such as HTTP and Simple Object Access Protocol (SOAP).

66. What are the advantages of Web Services?

Ans: The advantages of Web Services are:

It is simple to build and supported by a variety of platforms.

It can extend its interface and add new methods without affecting the client's operations.

It is stateless and firewall-friendly.

67. What is MEF?

Ans: MEF stands for Managed Extensibility Framework. It is a library that allows the host application to
consume external extensions without any configuration requirement.

68. What are Tuples?

Ans: Tuples are data structures that hold object properties and contain a sequence of elements of
different data types. They were introduced as a Tuple<T> class in .NET Framework 4.0 to avoid the need
of creating separate types to hold object properties.

69. What is ADO?

Ans: ADO stands for ActiveX Data Objects. It is an application program for writing Windows applications.
It is used to get access to a relational or non-relational database from database providers such as
Microsoft and others.

70. What are the fundamental objects in [Link]?

Ans: There are two fundamental objects in [Link]:

i. DataReader: connected architecture.

ii. DataSet: disconnected architecture.

71. What is Object Pooling?

Ans: Object Pooling is a concept for optimal use of limited resources through software constructs. The
ready-to-use objects, connections, and threads are stored in a pool (group) of objects in memory for
later use. For creating a new object, it is pulled from the pool and allocated for the request. Pooling
helps in improving performance and facilitates scalability.

72. What are client-side and server-side validations in Web pages?

Ans: Client-side validations take place at the client end with the help of JavaScript and VBScript offering
a better user experience. The inputs for client-side validation are validated in the user’s browser. While,
Interview Q & A

server-side validations take place at the server end using [Link] and PHP, and the feedback is sent
through a dynamically generated new webpage.

73. What is Serialization?

Ans: Serialization is the process of converting the state of an object into a form (a stream of bytes) to be
persisted or transported. Deserialization converts a stream into an object and is the opposite of
serialization. These processes allow data to be stored and transferred.

74. What is a PE file?

Ans: PE stands for Portable Executable. It is a derivative of the Microsoft Common Object File Format
(COFF). Windows executable. EXE or DLL files follow the PE file format. It consists of four parts:

1. PE/COFF headers: Contains information regarding. EXE or DLL file.

2. CLR header: Contains information about CLR & memory management.

3. CLR data: Contains metadata of DDLs and MSIL code generated by compilers.

4. Native image section: Contains sections like .data, .rdata, .rsrc, .text etc.

75. What is the difference between DLL and EXE?

Ans: .EXE files are single outbound files that cannot be shared with other applications. DLL files are
multiple inbound files that are shareable.

76. What is the difference between [Link] and dataset. copy?

Ans: [Link] copies only the structure of the DataSet which includes all DataTable schemas,
relations, and constraints but it does not copy any data. Dataset. copy is a deep copy of the DataSet that
duplicates both its structure and data.

77. Describe the use of ErrorProvider Control in .NET?

Ans: The ErrorProvider control is used to indicate invalid data or errors to the end-user while filling a
data entry form. In case of invalid data entry, the error message attached to the error description string
is displayed next to the control.

78. Differentiate between Task and Thread in .NET?

Ans: The thread represents an actual OS-level thread, with its own stack and kernel resources, and
allows the highest degree of control. You can choose to Abort() or Suspend() or Resume() a thread, and
set thread-level properties, like the stack size, apartment state, or culture. While a Task class from the
Task Parallel Library is executed by a TaskScheduler to return a result and allows you to find out when it
finishes.

79. .NET is an OOP or an AOP framework?

Ans: NET is an OOP framework as Encapsulation and Inheritance are key features of the Object-Oriented
Programming framework.
Interview Q & A

80. What is Multithreading?

Ans: Multi-threading is a process that contains multiple threads each of which performs different
activities within a single process. .NET supports multithreading in two ways:

Starting threads with ThreadStart delegates.

Using the ThreadPool class with asynchronous methods.

Frequently Asked SQL Interview Questions and Answers for Freshers and Experienced

1. What is DBMS?

A Database Management System (DBMS) is a program that controls creation, maintenance and use of a
database. DBMS can be termed as File Manager that manages data in a database rather than saving it in
file systems.

2. What is RDBMS?

RDBMS stands for Relational Database Management System. RDBMS store the data into the collection
of tables, which is related by common fields between the columns of the table. It also provides
relational operators to manipulate the data stored into the tables.

Example: SQL Server.

3. What is SQL?

SQL stands for Structured Query Language , and it is used to communicate with the Database. This is a
standard language used to perform tasks such as retrieval, updation, insertion and deletion of data from
a database.

4. What is a Database?

Database is nothing but an organized form of data for easy access, storing, retrieval and managing of
data. This is also known as structured form of data which can be accessed in many ways.

Example: School Management Database, Bank Management Database.

5. What are tables and Fields?

A table is a set of data that are organized in a model with Columns and Rows. Columns can be
categorized as vertical, and Rows are horizontal. A table has specified number of column called fields but
can have any number of rows which is called record.

Example:.

Table: Employee.
Interview Q & A

Field: Emp ID, Emp Name, Date of Birth.

Data: 201456, David, 11/15/1960.

6. What is a primary key?

A primary key is a combination of fields which uniquely specify a row. This is a special kind of unique key,
and it has implicit NOT NULL constraint. It means, Primary key values cannot be NULL.

7. What is a unique key?

A Unique key constraint uniquely identified each record in the database. This provides uniqueness for
the column or set of columns.

A Primary key constraint has automatic unique constraint defined on it. But not, in the case of Unique
Key.

There can be many unique constraint defined per table, but only one Primary key constraint defined per
table.

8. What is a foreign key?

A foreign key is one table which can be related to the primary key of another table. Relationship needs
to be created between two tables by referencing foreign key with the primary key of another table.

9. What is a join?

This is a keyword used to query data from more tables based on the relationship between the fields of
the tables. Keys play a major role when JOINs are used.

10. What are the types of join and explain each?

There are various types of join which can be used to retrieve data and it depends on the relationship
between tables.

Inner Join.

Inner join return rows when there is at least one match of rows between the tables.

Right Join.

Right join return rows which are common between the tables and all rows of Right hand side table.
Simply, it returns all the rows from the right hand side table even though there are no matches in the
left hand side table.

Left Join.

Left join return rows which are common between the tables and all rows of Left hand side table. Simply,
it returns all the rows from Left hand side table even though there are no matches in the Right hand side
table.

Full Join.
Interview Q & A

Full join return rows when there are matching rows in any one of the tables. This means, it returns all
the rows from the left hand side table and all the rows from the right hand side table.

11. What is normalization?

Normalization is the process of minimizing redundancy and dependency by organizing fields and table of
a database. The main aim of Normalization is to add, delete or modify field that can be made in a single
table.

12. What is Denormalization?

DeNormalization is a technique used to access the data from higher to lower normal forms of database.
It is also process of introducing redundancy into a table by incorporating data from the related tables.

13. What are all the different normalizations?

The normal forms can be divided into 5 forms, and they are explained below -.

First Normal Form (1NF):.

This should remove all the duplicate columns from the table. Creation of tables for the related data and
identification of unique columns.

Second Normal Form (2NF):.

Meeting all requirements of the first normal form. Placing the subsets of data in separate tables and
Creation of relationships between the tables using primary keys.

Third Normal Form (3NF):.

This should meet all requirements of 2NF. Removing the columns which are not dependent on primary
key constraints.

Fourth Normal Form (4NF):.

Meeting all the requirements of third normal form and it should not have multi- valued dependencies.

14. What is a View?

A view is a virtual table which consists of a subset of data contained in a table. Views are not virtually
present, and it takes less space to store. View can have data of one or more tables combined, and it is
depending on the relationship.

15. What is an Index?

An index is performance tuning method of allowing faster retrieval of records from the table. An index
creates an entry for each value and it will be faster to retrieve data.

16. What are all the different types of indexes?

There are three types of indexes -.


Interview Q & A

Unique Index.

This indexing does not allow the field to have duplicate values if the column is unique indexed. Unique
index can be applied automatically when primary key is defined.

Clustered Index.

This type of index reorders the physical order of the table and search based on the key values. Each
table can have only one clustered index.

NonClustered Index.

NonClustered Index does not alter the physical order of the table and maintains logical order of data.
Each table can have 999 nonclustered indexes.

17. What is a Cursor?

A database Cursor is a control which enables traversal over the rows or records in the table. This can be
viewed as a pointer to one row in a set of rows. Cursor is very much useful for traversing such as
retrieval, addition and removal of database records.

18. What is a relationship and what are they?

Database Relationship is defined as the connection between the tables in a database. There are various
data basing relationships, and they are as follows:.

One to One Relationship.

One to Many Relationship.

Many to One Relationship.

Self-Referencing Relationship.

19. What is a query?

A DB query is a code written in order to get the information back from the database. Query can be
designed in such a way that it matched with our expectation of the result set. Simply, a question to the
Database.

20. What is subquery?

A subquery is a query within another query. The outer query is called as main query, and inner query is
called subquery. SubQuery is always executed first, and the result of subquery is passed on to the main
query.

21. What are the types of subquery?

There are two types of subquery – Correlated and Non-Correlated.

A correlated subquery cannot be considered as independent query, but it can refer the column in a table
listed in the FROM the list of the main query.
Interview Q & A

A Non-Correlated sub query can be considered as independent query and the output of subquery are
substituted in the main query.

22. What is a stored procedure?

Stored Procedure is a function consists of many SQL statement to access the database system. Several
SQL statements are consolidated into a stored procedure and execute them whenever and wherever
required.

23. What is a trigger?

A DB trigger is a code or programs that automatically execute with response to some event on a table or
view in a database. Mainly, trigger helps to maintain the integrity of the database.

Example: When a new student is added to the student database, new records should be created in the
related tables like Exam, Score and Attendance tables.

24. What is the difference between DELETE and TRUNCATE commands?

DELETE command is used to remove rows from the table, and WHERE clause can be used for conditional
set of parameters. Commit and Rollback can be performed after delete statement.

TRUNCATE removes all rows from the table. Truncate operation cannot be rolled back.

25. What are local and global variables and their differences?

Local variables are the variables which can be used or exist inside the function. They are not known to
the other functions and those variables cannot be referred or used. Variables can be created whenever
that function is called.

Global variables are the variables which can be used or exist throughout the program. Same variable
declared in global cannot be used in functions. Global variables cannot be created whenever that
function is called.

26. What is a constraint?

Constraint can be used to specify the limit on the data type of table. Constraint can be specified while
creating or altering the table statement. Sample of constraint are.

NOT NULL.

CHECK.

DEFAULT.

UNIQUE.

PRIMARY KEY.

FOREIGN KEY.

27. What is data Integrity?


Interview Q & A

Data Integrity defines the accuracy and consistency of data stored in a database. It can also define
integrity constraints to enforce business rules on the data when it is entered into the application or
database.

28. What is Auto Increment?

Auto increment keyword allows the user to create a unique number to be generated when a new record
is inserted into the table. AUTO INCREMENT keyword can be used in Oracle and IDENTITY keyword can
be used in SQL SERVER.

Mostly this keyword can be used whenever PRIMARY KEY is used.

29. What is the difference between Cluster and Non-Cluster Index?

Clustered index is used for easy retrieval of data from the database by altering the way that the records
are stored. Database sorts out rows by the column which is set to be clustered index.

A nonclustered index does not alter the way it was stored but creates a complete separate object within
the table. It point back to the original table rows after searching.

30. What is Datawarehouse?

Datawarehouse is a central repository of data from multiple sources of information. Those data are
consolidated, transformed and made available for the mining and online processing. Warehouse data
have a subset of data called Data Marts.

31. What is Self-Join?

Self-join is set to be query used to compare to itself. This is used to compare values in a column with
other values in the same column in the same table. ALIAS ES can be used for the same table comparison.

32. What is Cross-Join?

Cross join defines as Cartesian product where number of rows in the first table multiplied by number of
rows in the second table. If suppose, WHERE clause is used in cross join then the query will work like an
INNER JOIN.

33. What is user defined functions?

User defined functions are the functions written to use that logic whenever required. It is not necessary
to write the same logic several times. Instead, function can be called or executed whenever needed.

34. What are all types of user defined functions?

Three types of user defined functions are.

Scalar Functions.

Inline Table valued functions.

Multi statement valued functions.

Scalar returns unit, variant defined the return clause. Other two types return table as a return.
Interview Q & A

35. What is collation?

Collation is defined as set of rules that determine how character data can be sorted and compared. This
can be used to compare A and, other language characters and also depends on the width of the
characters.

ASCII value can be used to compare these character data.

36. What are all different types of collation sensitivity?

Following are different types of collation sensitivity -.

Case Sensitivity – A and a and B and b.

Accent Sensitivity.

Kana Sensitivity – Japanese Kana characters.

Width Sensitivity – Single byte character and double byte character.

37. Advantages and Disadvantages of Stored Procedure?

Stored procedure can be used as a modular programming – means create once, store and call for several
times whenever required. This supports faster execution instead of executing multiple queries. This
reduces network traffic and provides better security to the data.

Disadvantage is that it can be executed only in the Database and utilizes more memory in the database
server.

38. What is Online Transaction Processing (OLTP)?

Online Transaction Processing (OLTP) manages transaction based applications which can be used for
data entry, data retrieval and data processing. OLTP makes data management simple and efficient.
Unlike OLAP systems goal of OLTP systems is serving real-time transactions.

Example – Bank Transactions on a daily basis.

39. What is CLAUSE?

SQL clause is defined to limit the result set by providing condition to the query. This usually filters some
rows from the whole set of records.

Example – Query that has WHERE condition

Query that has HAVING condition.

40. What is recursive stored procedure?

A stored procedure which calls by itself until it reaches some boundary condition. This recursive function
or procedure helps programmers to use the same set of code any number of times.
Interview Q & A

41. What is Union, minus and Interact commands?

UNION operator is used to combine the results of two tables, and it eliminates duplicate rows from the
tables.

MINUS operator is used to return rows from the first query but not from the second query. Matching
records of first and second query and other rows from the first query will be displayed as a result set.

INTERSECT operator is used to return rows returned by both the queries.

42. What is an ALIAS command?

ALIAS name can be given to a table or column. This alias name can be referred in WHERE clause to
identify the table or column.

Example-.

Select [Link], [Link] from student st, Exam as Ex where [Link] = Ex. StudentID

Here, st refers to alias name for student table and Ex refers to alias name for exam table.

43. What is the difference between TRUNCATE and DROP statements?

TRUNCATE removes all the rows from the table, and it cannot be rolled back. DROP command removes a
table from the database and operation cannot be rolled back.

44. What are aggregate and scalar functions?

Aggregate functions are used to evaluate mathematical calculation and return single values. This can be
calculated from the columns in a table. Scalar functions return a single value based on the input value.

Example -.

Aggregate – max(), count – Calculated with respect to numeric.

Scalar – UCASE(), NOW() – Calculated with respect to strings.

45. How can you create an empty table from an existing table?

Example will be -.

Select * into studentcopy from student where 1=2

Here, we are copying student table to another table with the same structure with no rows copied.

46. How to fetch common records from two tables?

Common records result set can be achieved by -.

Select studentID from student INTERSECT Select StudentID from Exam

47. How to fetch alternate records from a table?

Records can be fetched for both Odd and Even row numbers -.
Interview Q & A

To display even numbers-.

Select studentId from (Select rowno, studentId from student) where mod(rowno,2)=0

To display odd numbers-.

Select studentId from (Select rowno, studentId from student) where mod(rowno,2)=1

from (Select rowno, studentId from student) where mod(rowno,2)=1.[/sql]

48. How to select unique records from a table?

Select unique records from a table by using DISTINCT keyword.

Select DISTINCT StudentID, StudentName from Student.

49. What is the command used to fetch first 5 characters of the string?

There are many ways to fetch first 5 characters of the string -.

Select SUBSTRING(StudentName,1,5) as studentname from student

Select LEFT(Studentname,5) as studentname from student

50. Which operator is used in query for pattern matching?

LIKE operator is used for pattern matching, and it can be used as -.

% – Matches zero or more characters.

_(Underscore) – Matching exactly one character.

Example -.

Select * from Student where studentname like 'a%'

Select * from Student where studentname like 'ami_'

You might also like