November 23, 2013

Most Important Technical Interview Questions and Answers For Fresher / Experienced

Most Important Technical Interview Questions and Answers For Fresher / Experienced : 1. Almost every company is conducting Technical interview round. This is one of the difficult round among all the rounds. So candidates must prepare well for this round to get through the interview. To assist our readers in this aspect, we have published some questions related to various programming languages.
Most Important Technical Interview Questions and Answers2. Few Important Technical Interview Questions and Answers for Fresher / Experienced.

C Programming

What is a local block?
Ans A local block is any portion of a C program that is enclosed by the left brace ({) and the right brace (}). A C function contains left and right braces, and therefore anything between the two braces is contained in a local block. If statement or a switch statement can also contain braces, so the portion of code between these two braces would be considered a local block.

What is meant by "bit masking"?

Ans Bit masking means selecting only certain bits from byte(s) that might have many bits set. To examine some bits of a byte, the byte is bitwise "ANDed" with a mask that is a number consisting of only those bits of interest.

What is a stream?

Ans A stream is a continuous series of bytes that flow into or out of your program. Input and output from devices such as the mouse, keyboard, disk, screen, modem, and printer are all handled with streams.

Java Programming

What is the difference between a constructor and a method?

Ans A constructor is a member function of a class that is used to create objects of that class. It has the same name as the class itself, has no return type, and is invoked using the new operator. A method is an ordinary member function of a class. It has its own name, a return type (which may be void), and is invoked using the dot operator.

What is the purpose of garbage collection in Java, and when is it used?

Ans The purpose of garbage collection is to identify and discard objects that are no longer needed by a program so that their resources can be reclaimed and reused. A Java object is subject to garbage collection when it becomes unreachable to the program in which it is used.

What is an abstract class?

Ans Abstract class must be extended /subclassed (to be useful). It serves as a template. A class that is abstract may not be instantiated (i.e. you may not call its constructor), abstract class may contain static data. Any class with an abstract method is automatically abstract itself, and must be declared as such. A class may be declared abstract even if it has no abstract methods. This prevents it from being instantiated.

    .NET

What is .NET Framework?

Ans .NET Framework is a complete environment that allows developers to develop, run, and deploy the following applications:

    Console applications
    Windows Forms applications
    Windows Presentation Foundation (WPF) applications
    Web applications (ASP.NET applications)
    Web services
    Windows services
    Service-oriented applications using Windows Communication Foundation (WCF)
    Workflow-enabled applications using Windows Workflow Foundation (WF)

What is ASP.NET?

Ans ASP.NET is a specification developed by Microsoft to create dynamic Web applications, Web sites, and Web services. It is a part of .NET Framework. You can create ASP.NET applications in most of the .NET compatible languages, such as Visual Basic, C#, and J#.

What is the basic difference between ASP and ASP.NET?

Ans The basic difference between ASP and ASP.NET is that ASP is interpreted; whereas, ASP.NET is compiled. This implies that since ASP uses VBScript; therefore, when an ASP page is executed, it is interpreted. On the other hand, ASP.NET uses .NET languages, such as C# and VB.NET, which are compiled to Microsoft Intermediate Language (MSIL).

    PHP

What is Full form of PHP? Who is the father or inventor of PHP?

Ans The full form of PHP is Hypertext Preprocessor and the father of PHP was Asmus Lerdorf.

What is PHP?

Ans The PHP Hypertext Preprocessor is a programming language that allows web developers to create dynamic content that interacts with databases. PHP is basically used for developing web based software applications.

What Is a Persistent Cookie? 
Ans A persistent cookie is a cookie which is stored in a cookie file permanently on the browser's computer.

3. Candidates join us on Facebook for latest news and updates about  Important Technical Interview Questions And Answers For Fresher / Experienced. Guys subscribe us for free email alerts and bookmark our page for future reference.

Important section :
Most Important Technical Interview Questions and Answers For Fresher / Experienced
4/ 5
Oleh

Thank you for comment