Sponsored Ad

Sunday, June 27, 2010

InfoGain Selection Process | Interview Process

 

One of my friend gone through the interview process of Infogain Noida. this interview process was for .net software engineer.

Round 1: Telephonic Technical Interview

This interview was totally technical and based on basic questions. this interview contains the questions from C#, OOPS, JavaScript, SQL

Round 2: Face to Face Technical Interview

This interview was conducted at Infogain noida office by one senior person. They asked questions from almost every area of .net. along with this they check your communication skill also.

Round 3: Managerial round - Telephonic

This was a telephonic round and took by project manager. he asked some technical questions from OOPS, C#, and database along with some project management questions like

how will you manage team?

how to deal with client?

how to solve dispute in team?

how to deal with fresher's?

the project manager can also ask some algorithms and or puzzles like

selection sort, insertion sort , binary search

 

Round 4: Client Interview – Telephonic round

this was simple round and client just wanted to verify that the candidate have enough knowledge or not . The questions were from C# and OOPs.

 

So all the best for interview.

Saturday, June 26, 2010

Fidelity Information Services (FIS) Selection Process

 

One of my friend gone through the Fidelity Information Services (FIS) interview process for software engineer - .NET. FIS have their own salary package range and they will not offer you more than that.

Round 1: Basic Technical Round

This round will contains basic questions of your area, basically they will ask one line questions and also want answer in one line.

like what is overloading?

what is overriding?

what is event?

what is delegate?

etc.

Round 2: Advance technical Round

This is advance round and will contains some advance questions on advance topics like

collections

generics

multicast delegates

threading etc.

 

Round 3: Managerial Round

this is managerial round and will contains the questions and answers of your current project and current team.

 

Once you clear this test, FIS will offer you offer letter.

 

All the best for interview.Please comment in case of any questions.

Sapient Technical Interview Process

 

One of my find gone through the interview process of Sapient Noida. The interview process involve the following rounds:

Round 1: Online Technical Test

The first round involve the online technical objective type test from merittrac site. Once you reach in sapient office, you will receive a merittrac.com website online test for corresponding subject.

http://www.merittrac.com/candidatetest/starttest.asp

 

Round 2: Design Pattern and multithreading Problem

Once you will clear the online technical test, you will get a design problem need to solve using design pattern and/or multithreading.

for example you may offer to fill a windows form control using multithreading or reading and updating data into database using multithreading.

 

Round 3: Pure Technical Round

This is third round and a senior person will ask number of questions from every part of .net/Java.

Like OOPS

C#

SQL

etc.

Round 4: Managerial Round

Managerial round is 4th round and can be bypassed. This is technical as well as personal round. can be project oriented questions.

 

Round 5: Non Technical Round

This round contains the non technical questions, like

what is you position in team?

why you want to leave current company?

How will you avoid dispute in team?

What qualities you looking in your team manager?

etc.

Once you will complete all these round the HR will offer you a decent package.

Wednesday, June 9, 2010

SemanticSpace Telephonic Interview Questions - .NET

 

Telephonic interviews are sometimes hard to face. but most of the telephonic interviews are easy and this is just verification process that the person is right candidate for the job or not.

My friend gone through a telephonic round of SemanticSpace for software engineer position for .NET.

Question. They started with project, Tell me something about your current project?

Answer. describe your project.

Question. what is OOPs?

Answer. Object oriented programming, represent every thing in a object.

Question. What is polymorphism? what are different types of polymorphism is there?

Answer. polymorphism means different forms, there are two kind of polymorphism

1. static polymorphism (overloading)

2. dynamic polymorphism (overriding)

Question. What is difference between overloading and overriding?

Answer. having same name methods with different parameters is called overloading, while having same name and parameter functions in base and drive class called overriding.

Question. what is static class and what is use of this?

Answer. Static class we define when we do not want to create a object of class, all methods of static class should be static. static class methods and data are specific to class only and not associated to objects.

Question. Can we have a variables inside the interface?

Answer. no, we can have only methods, properties, indexers and enums inside the interface.

Question. Have you used AJAX?

Answer. I have used AJAX using microsoft ajax toolkit.

Question. What is your role in PL/SQL?

Answer. I used to design and write functions, triggers, procedures and packages.

Question. Have you used Queue in Oracle?

Answer. No

Question. What design patterns you used?

Answer. Facade, Prototype, Singleton. proxy , bridge

Wednesday, June 2, 2010

Polaris Interview Questions - .NET - Telephonic

 

One of my friend gone through the Polaris telephonic round for .net for software engineer requirement.

Here is some questions from the same telephonic round.

Question 1. What is assembly?

Answer. Assembly is encoded library of .net applications it contains the all source code references and other resources.

Question 2. What is GAC?

Answer. Global assembly cache, is a special area where we generally keep our global assemblies.

Question 3. what is difference between remoting and webservices?

Answer. remoting is used to communication between applications running on same .net platform while webservice is used to communicate between the applications running on

Question 4. how will you implement security in webservices?

Answer. using SOAP

Question 5. how will you authenticate web service?

Answer. Find it out.

Question 6. what is singleton?

Answer. singleton is a design pattern used to design a software. This design pattern allows you to create only one object of a class.

Question 7. How will you implement remoting in C#?

Answer. Read books.

Question 8. What is SAO and CAO?

Answer. Server activate object and client activated object

Question 9. What is marshaling?

Answer. marshaling is used in remoting to transfer data between application.

Question 10. what is WCF and what is difference between WCF and web services?

Answer. WCF is windows communication foundation same as webservices. actually WCF =webservices + remoting

Tuesday, June 1, 2010

C# - OOPS Interview Questions

 

Question 1. What is class and objects?

Answer. Class is collection of functions and variables. and object is used to use this template.

Question 2. Can we declare a constructor to private?

Answer. Yes

Question 3. What is the use of constructor ?

Answer. constructor is used to create and instantiate a object.

Question 4. can we specify the accessibility modifier inside the interface?

Answer.  It should be public there is no use of private methods in interface.

Question 5. how to prevent a public class method to be overridden in drive class?

Answer. just make method to sealed.

Question 6. how to stop a class being inherited by another class?

Answer. just make the class sealed. by using sealed keyword.

Question 7.how to prevent a class being instantiated?

Answer. make class abstract or static

Question 8. How to override a private virtual method?

Answer.you can not override a private method.

Question 9.  can you derive a static method of base class in child class?

Answer. no

Question 10.  can you override a normal public method of base class and make it static?

Answer.no , the method signature  should be same to be overridden.

Question 11. what is early and late binding?

Answer. when we call a non virtual method it decide at compile time and this is called early binding. while if method calling decide at runtime is called late binding.

Question 12. Can namespace contain the private class?

Answer. no, having a single private class does not mean anything , it is applicable only in case of nested class.

Sponsored Ad

Followers

Follow Us