Techincal Interview In Changepond Technologies


Techincal Interview In Changepond Technologies 1.HR Round (checking communication ability ) 2.Technical interview Round 3.Manager interview Round 4.HR Round This Article might be useful for future who are going to attend interview in this company..

Hi... Its may be useful for us ..

2.Technical Round


Dotnet Framework

1.Can you explain about dotnet framework flow?
2.what is GAC?
3.Garbage collection and how its find out the object is not in use?
4.what is Idisposable ?
5.what is Finalize and different between disposable and Finalize ?
6.what is Assembly and types?
7.what is CLR?
8.what is mange code and unmanaged code give example?
9.what are the version available in VS?
10 how to force the Garbage collection?

Asp.Net

1.what is state management?
2what is session ?
3.what are session different mode?
4.what is InProc and where value will be store?
5.what is view state and where the values are save and what happen if more value save?
6.how to install the session manage?
7.how u valid the page?
8.whether client side validation or server side validation? which one is best?
9.which version IIS you are using?

C#

1.what is generic and write the piece of code for that?
2.what is type - casting?
3.what are the oops concept you are using in your projects and tell me in code level how you implemented?
4.what is encapsulation?
5.what is polymorphism?
6.write a piece of code for overriding
7.what is abstract class?
8.what is virtual function and where it will be use code level?
9.what is sealed class what sincero use?
10.can u write code for delegates?
11.what is ".SubString?
12.what is difference between collection and generic?

WCF

1.why we are going for WCF?
2.what is different between Web services and WCF?
3.what is basichttpbinding and Wshttpbinding?
4.what are type of binding in WCF?
5.what is use if TCp binding?
6.what is ABC?
7.what is output format in Wshttpbinding?
8.what are contract and types?
9.can we able to self hosting?If Yes means how?
10 what are type of hosting available ?
11.what is services?
12.Tell me security level?
13.how you reference WCF service in ur project?
14.what is service reference and web reference which one you will use for WCF?
15.write the code for calling WCF in ur project?

javaScript and Jquery (I said i know basic only)

1.what is different between javascript and JQuery?
2.what is use of javascript?

SQL Server

1.write the query for top 2nd ?
2.what Sp and UDF and tell difference?
3.what is trigger and explain it?
4.can you insert/delete in view and its reflect in the table?
5.what are joins available?
6.what is cursors?
7.what is index and explain?
8.what is default non-cluster index value in 2005 and 2008?
10.how you handle error in SQl?

other questions

1.what is MVC architecture?
2.what is SSIS?
3.what are pattern ?

Some more questions are there.....

2.Manager Round

1.Explain about all your project feed in Resume.(asked lot of questions regards about project 30 min)
2.Why you are looking for other offer?
3.Can you tell me about MVC?
4.What is PRISM?
5.What is WPF why we are going for WPF?
6.what is MVVM?
7.what kind of architecture is available and s/w life cycle?
8.Did you communication with client?

that all..... :)


Comments

Author: Pawan Awasthi29 Apr 2014 Member Level: Gold   Points : 2

Hai Rathimaran,
Thanks for posting the questions which has asked in the ChangePond technologies. These question will be helpful for those who are planning to go to the same company.
Thanks.
i will try to post the answer for the same in the future.

Author: Rathimaran29 Apr 2014 Member Level: Silver   Points : 0

ok dude..

Author: naveensanagasetti30 Jul 2014 Member Level: Gold   Points : 10

I post the Answers for the above questions.

2) what is GAC?
A) Global Assembly Cache, When we need to share the assembly to all then we copied that assembly into GAC Floder but that must be having name, version and public key token. Which are the assemblies follows all those 3 then we install that assembly into GAC folder before that we must create key.snk file for that.
Once the Assembly is in shared location then any one can access that assembly in to there application.
6.what is Assembly and types?
An assembly is a collection of types and resources that forms a logical unit of functionality.

When you compile an application, the MSIL code created is stored in an assembly .
Assemblies include both executable application files that you can run directly from Windows without the need for any other programs (these have a .exe file extension), and libraries (which have a .dll extension) for use by other applications.
There are 3 types of assemblies
• Private Assembly
When the Assembly doesn't copied in GAC folder then we must added that in our physical location that means our project bin folder this type of assembly we are called as Private Assembly, it is very secure compare to shared Assembly.

• Shared Assembly
When the Assembly is registered in GAC folder that means which assembly having name, version and public key token then we store them in GAC folder, that Assemblies we are called as Shared Assembly.

• Satellite Assembly
When we go for multilingual application implementation then we go for Satellite assembly.
7.what is CLR?
CommonLanguageRuntime ( CLR) to convert the managed code into native code and then execute the program.

1.what is state management?
A) Web is stateless because of HTTP, to maintain the state for controls ASP.net introduces a concept called as State Management.
2what is session ?
A) When new user makes a request then session object will create. Session will store any type of data.

3.what are session different mode?
A) inproc, sqlserver, and stateserver
4.what is InProc and where value will be store?
A) It will store it in the worker process in the application domain.
5.what is view state and where the values are save and what happen if more value save?
A) View State is the technique used by ASP.NET web pages to keep the state of the page across post backs. It stores data in a hidden field named __VIEWSTATE inside the page in Base-64 encoded formats. The encoding and decoding of the view state data is done by the LosFormatter class.


There is a provision of turning off ViewState at control level and also at page level using the property EnableViewState.

View State data will store in client side.

7.how u valid the page?
A) We can validate a page in 2 ways either client side or in server side.

Author: naveensanagasetti30 Jul 2014 Member Level: Gold   Points : 8

8.whether client side validation or server side validation? which one is best?
A) mostly in client side, Client side is the best option to validate it. Why because it's reduces the post backs.
2.what is type - casting?
A) It converts one type of data in to another type.
4.what is encapsulation?
A) Encapsulation is the mechanism to hide irrelevant data to the user.
5.what is polymorphism?
A) Using the same method in multiple forms is called as Polymorphism. In the Polymorphism, the method name is same but their prototype can be different.
7.what is abstract class?
A) Abstraction is the mechanism to show only relevant data to the user.
8.what is virtual function and where it will be use code level?
A) To override base class information into derived then we go for virtual classes.
9.what is sealed class what sincero use?
A) To prevent override data from base class to derived for that purpose we used Sealed class. By default all classes are sealed only but using virtual/ Abstract the behavior is get changed.
1.write the query for top 2nd ?
Select Top(2) * from tablename
4.can you insert/delete in view and its reflect in the table?
Yes, we can perform All CRUD operations using View it's get reflected in a table also.
5.what are joins available?
In SQL we have different types of joins are available.
Inner Join, Outer Join, Join, Left Outer join, Right Outer Join, Self Join, Cross Join.
7.what is index and explain?
To get the table data without delay for that purpose we go for indexes. There are 2 types
1) Clustered Index
2) Non-Clustered Index.
8.what is default non-cluster index value in 2005 and 2008?
In SQL 2005 – 249
In SQL 2008- 999
10.how you handle error in SQl?
Using Try and Catch Blocks we can able to handle errors.



  • Do not include your name, "with regards" etc in the comment. Write detailed comment, relevant to the topic.
  • No HTML formatting and links to other web sites are allowed.
  • This is a strictly moderated site. Absolutely no spam allowed.
  • Name:
    Email: