0% found this document useful (0 votes)
20 views7 pages

Interview Questions of Dot Net

Uploaded by

vishakha kesare
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)
20 views7 pages

Interview Questions of Dot Net

Uploaded by

vishakha kesare
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
You are on page 1/ 7

INTERVIEW QUESTIONS OF DOT NET

1) what are the different data type in c++ ?


ans- prmitive data types- int, long,string,bit,bool,short
dervied data types - arrays,pointer
ennumeration – enum It is mainly used to assign the names or string
values to integral constants, that make a program easy to read and maintain.
use defined(refernce type) -class

2) what is operator overloading?


Ans- operating overloading is the very essential elemets to perform the
operation on user defined data types. By operator overloading we can modify
the default meaning to the operator like +,-,<,> ,*,% etc.
. dot operator cannot overloading ,pointer to member operator(.*) cannot
overload

3) what are the different/various types of access specifier


Ans- Public - data members and function are outside the class,
Private -data members and functions only ,
Protected – data members and function are access only in derived class

4) what is oops?
Ans- oops stand for object oriented programming system . in which program
are consider as collection as objects each object is nothing but instance of the
class.
5) what are the oops concept?
Ans- oops concept are class object we will write our program in structured
form in oops concepts like
polymorphism ,encapsulation ,inheritance,abstraction.

6) what is a class?
Ans- Class is simple representation of type of any object or a real world object
like pen,car etc. it is a blueprint or template that describe the details of the
object

7) what is the object?


Ans- object is the instance of the class it has its own state ,functionality ,
behaviour and identity.

8) what is an encapusulation?
Ans- encapsulation is the attribute and object and it contains all data which is
hidden .hidden data can be restricted to the member of that class.
Levelea are public, protect ,private ,internal and protected internal.

9) what is polymorphisms?
Ans- polymorphism is nothing but assigning behaviour and value in a sub class
was already declared in main class

10) what is inheritance?


Ans- inheritance is the concept of where one class share the structure and
behaviour definend in the another class.

11) what is the constructor?


Ans-constructor is the method used to initialize the state of an object and it
get invoke at the time of and object creation.
12)rules of an constructor?
Ans-constructor name should be the same as an class name
Constructor Must have no return type

13) what is distructor?


Ans- distructor is the method which is automatically called when the object is
made of scope distructor name is also same as class name but ~ symbol before
the name .

14) what is function/method overloading?


Ans- method overloading is the regular method but it is assigned with a
multiple parameter it allows the creation of several method with the same
name which differ from each other by the type of input parameter and output
of the function . (same name method with different signature )

15) what is signature


Ans-Type of function, input parameter

16)what is abstract class?


Ans- an abstract class is the class which cannot be instantinated. creation of an
object is not possible with an abstract class but it can be inheritated. An
abstracted class can contained

17) what is terniary?


Ans – it is operator is said to be ternary which state to be 3 arguaments.a
tarniary operator is called a conditional operator

18) what are different types of argumments?


Ans-2 types of argumments
Call by value – value passed will get modify only inside the function and returns
the same value whatever is passed into the function
Call by refernce – value passed will get modified with both inside and outside
function and will return the same and different value

19) what is the meaning of THIS keyword?


Ans- it is referes to the current object to the class

20) what is dot net framework?


Ans- dot net is a framework to developed software applications . .net framwork
contains large number of class liabraries known as FCL (framework class
libarary). The software program written in .net are executed in the execution
environment called CLR (common language runtime). .net frameworks support
more than 80 languages major commponents are as following common
language runtime, framework class library

21) what is CLR?


Ans- it is a program execution engine that loads and executes the program it
convert the program into native code it acts as an interface between
frameworks and operating system it does exception handling , memory
management and garbage collections.

22) what is ADO.net?


Ans- It is a module of .net frameworks which is used to developed connection
between application and data source like mssql
23) what is entity framework?
Ans- It is an object relational mapper (ORM) based on open source framework
which is used to work with database using dot net objects (It eliminates a lot
of developers efforts to handle the database operations)
24) what is garabge collection in .net?’
Ans- It is a feature provided by CLR which helps to clean or destroy the unused
managed code .By cleaning we can reuse the memory when .net application
run it create several objects so for those objects which are not been used
garabge collector runs backgrounds thread at specific time interval

25) why do we make private constructor?


Ans- To prevent creating instance of a class .

26) what is N-tier?


Ans- N-tier architecture in a web appliacation is a client server
architectere is a concept of software
1- presentation

27) what is the difference between stack and heap memory /what is
memory management in.net framework?
Ans- when we declared a variable in .net application it allocates some
memory in the RAM the memory which allocates in the RAM has 3
parts:
1-name of the variable
2-Data type of the variable
3- value of the variable
Stack is used for static memory allocation and heap for dynamic
memory allocation both stored in computer RAM

28) what is the differenct data set and data table?


Ans-data set is the simple term of set of data which is contain the set
of data table or connection of data table . that is it can hold one or
more data table .data set mainly used to fetch and holds the recored
for one or more records in the memory to populate to fields data into
data set from sql statement we are using data adapter.
A data table can hold records of a single table consisting of rows and
columns data Table mainly used to fetch and holds records for one
record in the memory …

29) what is caching?


Ans-

Javascript interviews questions

1) Javascript is the case sensitive?


Ans- yes
2) List the type of function in javascript
Ans- name type and ananoumus type
Getelmentby id
Getelmentbyclass
Dom manpuolation

------------------------------------------------------------------------------------------------

Technical questions
1) What is the full form of sdlc?
Ans- software development life cycle it is a well known process that
provide quality software product for the software

You might also like