Get Major Training|Project Training|Live Project|Industrial Training On Android| I-Phone | Java | J2SE | J2EE | C#.Net | ASP.Net| PHP | PHP with Wordpress | Joomla | Majento Contact us

Showing posts with label interview tip. Show all posts
Showing posts with label interview tip. Show all posts

Sunday

Basic Interview Questions [YOU-MUST- KNOW]

Vinayak informatics is a leading PHP training in indore
we are discussing Basic Interview Questions Based on C++ since Basically freshers have to face interviews on it.

Please Take a Look
Basic Interview Questions [YOU-MUST- KNOW]

1.    What is C++
     C++ is created by BjarneStroustrup of AT&T Bell Labs as an extension of C, C++ is an object-oriented computer language used in the development of enterprise and commercial applications. Microsoft’s Visual C++ became the premier language of choice among developers and programmers.
2.    What are the basic concepts of object oriented programming?
     It is necessary to understand some of the concepts used extensively in object oriented programming.These include
    Objects
    Classes
    Data abstraction and encapsulation
    Inheritance
    Polymorphism
    Dynamic Binding
    Message passing
3.    Define inheritance?
     The mechanism of deriving a new class (derived) from an old class (base class) is called inheritance. It allows the extension and reuse of existing code without having to rewrite the code from scratch. Inheritance is the process by which objects of one class acquire properties of objects of another class.
4.    Define polymorphism?
     Polymorphism means one name, multiple forms. It allows us to have more than one function with the same name in a program.It allows us to have overloading of operators so that an operation can exhibit different behaviours in different instances.
5.    What is encapsulation?
     The wrapping up of data and functions into a single unit (called class) is known as encapsulation. Encapsulation containing and hiding information about an object, such as internal data structures and code.
6.    What is message passing?
     An object oriented program consists of a set of objects that communicate with each other. Message passing involves specifying the name of the object, the name of the function and the information to be sent.
7.    What are tokens in C++?
     The smallest individual units of a program is known as tokens. c++ has the following tokens :    Keywords
    Identifiers
    Constants
    Strings
    Operators
8.    What is the use of enumerated data type?
     An enumerated data type is another user defined type which provides a way for attaching names to numbers thereby increasing comprehensibility of the code. The enum keyword automatically enumerates a list of words by assigning them values 0,1,2, and so on.
9.    What is the use of default constructor?
     A constructors that accepts no parameters is called the default constructor.If no user-defined constructor exists for a class A and one is needed, the compiler implicitly declares a default parameterless constructor A::A(). This constructor is an inline public member of its class. The compiler will implicitly define A::A() when the compiler uses this constructor to create an object of type A. The constructor will have no constructor initializer and a null body.
10.    Define Constructors?
     A constructor is a member function with the same name as its class. The constructor is invoked whenever an object of its associated class is created.It is called constructor because it constructs the values of data members of the class.
11.    How variable declaration in c++ differs that in c?
     C requires all the variables to be declared at the beginning of a scope but in c++ we can declare variables anywhere in the scope. This makes the programmer easier to understand because the variables are declared in the context of their use.
12.    Define destuctors?
     A destructor is called for a class object when that object passes out of scope or is explicitly deleted.A destructors as the name implies is used to destroy the objects that have been created by a constructors.Like a constructor , the destructor is a member function whose name is the same as the class name but is precided by a tilde.
13.    What is a class?
     A class is a collection of objects.
14.    what is the difference between c &c++?
     c++ia an object oriented programing but c is a procedure oriented programing.c is super set of c++. c can't suportinheritance,function overloading, method overloading etc. but c++ can do this.In c-programe the main function could not return a value but in the c++ the main function shuld return a value.
15.    What is copy constructor?
     Copy constructor is a constructor function with the same name as the class and used to make deep copy of objects.
16.    What is default constructor?
     A default constructor is a constructor that either has no parameters, or if it has parameters, all the parameters have default values.
17.    What is a scope resolution operator?
     The scope resolution operator permits a program to reference an identifier in the global scope that has been hidden by another identifier with the same name in the local scope.
18.    What is the difference between Object and Instance?
     An instance of a user-defined type is called an object. We can instantiate many objects from one class.
An object is an instance of a class.
19.    What is the difference between macro and iniine?
     Inline follows strict parameter type checking, macros do not.
Macros are always expanded by preprocessor, whereas compiler may or may not replace the inline definitions.
20.    How variable declaration in c++ differs that in c?
     C requires all the variables to be declared at the beginning of a scope but in c++ we can declare variables anywhere in the scope. This makes the programmer easier to understand because the variables are declared in the context of their use.
21.    What is multiple inheritance?
     A class can inherit properties from more than one class which is known as multiple inheritance.
22.    what is the use of virtual destructor in c++?
     A destructor is automatically called when the object is destroyed. A virtual destructor in C++ is used primarily to prevent resource leaks by performing a clean-up of the object.
23.    What do you mean by reference variable in c++?
     A reference variable provides an alias to a previously defined variable.
Data -type & reference-name = variable name
24.    What do you mean by implicit conversion?
         Whenever data types are mixed in an expression then c++ performs the conversion automatically.
    Here smaller type is converted to wider type.
    Example : in case of integer and float integer is converted into float type.
25.    What are virtual functions?
         The virtual fuctions must be members of some class.
    They cannot be static members.
    They are accessed by using object pointers.
    A virtual function can be a friend of another class.
26.    What is the difference between class and structure?
         By default, the members ot structures are public while that tor class is private.
    structures doesn’t provide something like data hiding which is provided by the classes.
    structures contains only data while class bind both data and member functions.
27.    What are storage qualifiers in C++ ?
     ConstKeyword indicates that memory once initialized, should not be altered by a program.
Volatile keyword indicates that the value in the memory location can be altered even though nothing in the program.
Mutable keyword indicates that particular member of a structure or class can be altered even if a particular structure variable, class, or class member function is constant.
28.    What is virtual class and friend class?
     Friend classes are used when two or more classes and virtual base class aids in multiple inheritance.
Virtual class is used for run time polymorphism when object is linked to procedure call at run time.
29.    what is an abstract base class?
     An abstract class is a class that is designed to be specifically used as a base class. An abstract class contains at least one pure virtual function.
30.    What is dynamic binding?
     Dynamic binding (also known as late binding) means that the code associated with a given procedure call is not known until the time of the call at run time.It is associated with polymorphism and inheritance.
31.    what is difference between function overloading and operator overloading?
     A function is overloaded when same name is given to different function.
While overloading a function, the return type of the functions need to be the same.
32.    What are the advantages of inheritance?
         Code reusability
    Saves time in program development.
33.    What is a dynamic constructor?
     The constructor can also be used to allocate memory while creating objects. Allocation of memory to objects at the time of their construction is known as dynamic construction of objects.The memory is allocated with the help of the new operator.
34.    What is the difference between an Array and a List?
     The main difference between an array and a list is how they internally store the data. whereas Array is collection of homogeneous elements. List is collection of heterogeneous elements.
35.    What is the use of ‘using’ declaration?
     A using declaration makes it possible to use a name from a namespace.
36.    What is the difference between a template class and class template?
     Template classA generic definition or a parameterized class not instantiated until the client provides the needed information. It’s jargon for plain templates.
Class templateA class template specifies how individual classes can be constructed much like the way a class specifies how individual objects can be constructed. It’s jargon for plain classes.
37.    What is friend function?
     The function declaration should be preceded by the keyword friend.The function definitions does not use either the keyword or the scope operator ::. The functions that are declared with the keyword friend as friend function.Thus, a friend function is an ordinary function or a member of another class.
38.    What is a scope resolution operator?
     A scope resolution operator (::), can be used to define the member functions of a class outside the class.
39.    What do you mean by pure virtual functions?
     A pure virtual member function is a member function that the base class forces derived classes to provide. Any class containing any pure virtual function cannot be used to create object of its own type.
40.    What is a conversion constructor?
     A converting constructor is a single-parameter constructor that is declared without the function specifier explicit. The compiler uses converting constructors to convert objects from the type of the first parameter to the type of the converting constructor’s class.
41.    What is a container class? What are the types of container classes?
     A container class is a class that is used to hold objects in memory or external storage. A container class acts as a generic holder. A container class has a predefined behavior and a wellknown interface. A container class is a supporting class whose purpose is to hide the topology used for maintaining the list of objects in memory. When a container class contains a group of mixed objects, the container is called a heterogeneous container; when the container is holding a group of objects that are all the same, the container is called a homogeneous container.
42.    What is Associative container?
     Associative containers are designed to support direct access to elements using keys. They are not sequential. There are four types of associatives containers :
    Set
    Multiset
    Map
    Multimap
43.    What is an iterator?
     Iterators are like pointers. They are used to access the elements of containers thus providing a link between algorithms and containers. Iterators are defined for specific containers and used as arguments to algorithms.
44.    What are the defining traits of an object-oriented language?
     The defining traits of an object-oriented langauge are :
    Encapsulation
    Inheritance
    Polymorphism
45.    Name some pure object oriented languages?
         Smalltalk
    Java
    Eiffel
    Sather
46.    What is this pointer?
     It is a pointer that points to the current object. This can be used to access the members of the current object with the help of the arrow operator.
47.    What is encapsulation?
     Encapsulation (or information hiding) is the process of combining data and functions into a single unit called class.
48.    What is problem with Runtime type identification?
     The run time type identification comes at a cost of performance penalty. Compiler maintains the class.
49.    What are the differences between new and malloc?
         New initializes the allocated memory by calling the constructor. Memory allocated with new should be released with delete.
    Malloc allocates uninitialized memory.
    The allocated memory has to be released with free.new automatically calls the constructor while malloc(dosen’t)
50.    What is conversion operator?
     You can define a member function of a class, called a conversion function, that converts from the type of its class to another specified type.
51.    What is difference between template and macro?
     A template can be used to create a family of classes or function.A template describes a set of related classes or set of related functions in which a list of parameters in the declaration describe how the members of the set vary.
Identifiers that represent statements or expressions are called macros.
52.    What is reference?
     Reference is a name that acts as an alias, or alternative name, for a previously defined variable or an object.
53.    What are the access specifier in c++?
     There are three types of access specifier in c++ . They are
    Public
    protected
    private
54.    What is difference between C++ and Java?
        C++ has pointers Java does not.
   Java is the platform independent as it works on any type of operating systems.
    java has no pointers where c ++ has pointers.
    Java has garbage collection C++ does not.
55.    What is namespace?
     The C++ language provides a single global namespace.Namespaces allow to group entities like classes, objects and functions under a name.
56.    What is an explicit constructor?
     A conversion constructor declared with the explicit keyword. The compiler does not use an explicit constructor to implement an implied conversion of types. It’s purpose is reserved explicitly for construction.Explicit constructors are simply constructors that cannot take part in an implicit conversion.
57.    What is the use of storage class specifiers?
     A storage class specifier is used to refine the declaration of a variable, a function, and parameters. The following are storage class specifiers :
    auto   register  static  extern
58.    what is assignment operator in c++?
     Default assignment operator handles assigning one object to another of the same class. Member to member copy (shallow copy).
59.    Can destructor be private?
     Yes destructors can be private. But according it is not advisable to have destructors to be private.
60.    What is strstream?
     stringstream provides an interface to manipulate strings as if they were input/output streams.
‹ strstream› to define several classes that support iostreams operations on sequences stored in an allocated array of char object.
61.    What are the types of STL containers?
         deque
   hash map
    hash multimap
    hash_multiset
    hashset
    list
    map
    multimap
    multiset
    set
    vector.
62.    What is the difference between method overloading and method overriding?
     Overloading a method (or function) in C++ is the ability for functions of the same name to be defined as long as these methods have different signatures (different set of parameters).
Method overriding is the ability of the inherited class rewriting the virtual method of the base class.
63.    What do you mean by inline function?
     An inline function is a function that is expanded inline when invoked.ie. the compiler replaces the function call with the corresponding function code. An inline function is a function that is expanded in line when it is invoked. That is the compiler replaces the function call with the corresponding function code (similar to macro).
64.    What is a template?
     A template can be used to create a family of classes or function.A template describes a set of related classes or set of related functions in which a list of parameters in the declaration describe how the members of the set vary.
65.    What is a copy constructor and when is it called?
     A copy constructor is a method that accepts an object of the same class and copies it members to the object on the left part of assignement.
66.    What is the difference between a copy constructor and an overloaded assignment operator?
     A copy constructor constructs a new object by using the content of the argument object. An overloaded assignment operator assigns the contents of an existing object to another existing object of the same class.
67.    What is a virtual destructor?
     The simple answer is that a virtual destructor is one that is declared with the virtual attribute.
68.    What do you mean by Stack unwinding?
     It is a process during exception handling when the destructor is called for all local objects between the place where the exception was thrown and where it is caught.
69.    What is STL? and what are the components of stl?
     A collection of generic classes and functions is called as Standard Template Library (STL).The stl components are

    containers
    Algorithm
    Iterators.
70.    What is a modifier?
     A modifier, also called a modifying function is a member function that changes the value of at least one data member. In other words, an operation that modifies the state of an object. Modifiers are also known as mutators.
71.    What is an adaptor class or Wrapper class?
     A class that has no functionality of its own. Its member functions hide the use of a third party software component or an object with the non-compatible interface or a non-objectoriented implementation.
72.    What is a Null object?
     It is an object of some class whose purpose is to indicate that a real object of that class does not exist. One common use for a null object is a return value from a member function that is supposed to return an object with some specified properties but cannot find such an object.
73.    What is class invariant?
     A class invariant is a condition that defines all valid states for an object. It is a logical condition to ensure the correct working of a class. Class invariants must hold when an object is created, and they must be preserved under all operations of the class. In particular all class invariants are both preconditions and post-conditions for all operations or member functions of the class.
74.    What is the difference between the message and method?
     Message : Objects communicate by sending messages to each other.A message is sent to invoke a method.
Method : Provides response to a message and it is an implementation of an operation.
75.    How can we access protected and private members of a class?
     In the case of members protected and private, these could not be accessed from outside the same class at which they are declared. This rule can be transgressed with the use of the friend keyword in a class, so we can allow an external function to gain access to the protected and private members of a class.
76.    What do you mean by late binding?
     Late binding refers to function calls that are not resolved until run time. Virtual functions are used to achieve late binding. When access is via a base pointer or reference, the virtual function actually called is determined by the type of object pointed to by the pointer.
77.    What is virtual function?
     A virtual function is a member function that is declared within a base class and redefined by a derived class .To create a virtual function, the function declaration in the base class is preceded by the keyword virtual.
78.    What do you mean by early binding?
     Early binding refers to the events that occur at compile time. Early binding occurs when all information needed to call a function is known at compile time. Examples of early binding include normal function calls, overloaded function calls, and overloaded operators. The advantage of early binding is efficiency.


Feel free to add your experience in the form of Comments !!

Join Vinayak Informatics at Indore !
Continue Reading →

Saturday

Compare between java and dotnet

core java

Core Java

Core Java : What is it?
Java is a programming language expressly designed for use in the distributed environment of the Internet. It was designed to have the "look and feel" of the C++ language, but it is simpler to use than C++ and enforces an object-oriented programming model. Java can be used to create complete applications that may run on a single computer or be distributed among servers and clients in a network. It can also be used to build a small application module or applet for use as part of a Web page. Applets make it possible for a Web page user to interact with the page.

Core Java : What it does?
The general-purpose, high-level Java programming language is a powerful software platform. Every full implementation of the Java platform gives you the following features: Development Tools: The development tools provide everything you'll need for compiling, running, monitoring, debugging, and documenting your applications. As a new developer, the main tools you'll be using are the javac compiler, the java launcher, and the javadoc documentation tool. Application Programming Interface (API): The API provides the core functionality of the Java programming language. It offers a wide array of useful classes ready for use in your own applications. Deployment Technologies: The JDK software provides standard mechanisms such as the Java Web Start software and Java Plug-In software for deploying your applications to end users. User Interface Toolkits: The Swing and Java 2D toolkits make it possible to create sophisticated Graphical User Interfaces (GUIs). Integration Libraries: Integration libraries such as the Java IDL API, JDBCTM API, Java Naming and Directory InterfaceTM ("J.N.D.I.") API, Java RMI, and Java Remote Method Invocation over Internet Inter-ORB Protocol Technology (Java RMI-IIOP Technology) enable database access and manipulation of remote objects.

Why Core Java ?
Java has been tested, refined, extended, and proven by a dedicated community. And numbering more than 6.5 million developers, it's the largest and most active on the planet. With its versatilty, efficiency, and portability, Java has become invaluable to developers by enabling them to:
• Write software on one platform and run it on virtually any other platform
• Create programs to run within a Web browser and Web services
• Develop server-side applications for online forums, stores, polls, HTML forms processing, and more
• Combine applications or services using the Java language to create highly customized applications or services
• Write powerful and efficient applications for mobile phones, remote processors, low-cost consumer products, and practically any other device with a digital heartbeat

What You Should Know?
• Person with a basic knowledge of OOPs can opt for Core Java.
• Basic knowledge of RDBMS (Relational Database Management System).

------------------------
.net



Asp.Net with C#

Asp.Net : What is it?
Microsoft's ASP.net is a server-side scripting technology that can be used to create dynamic and interactive Web applications. An ASP.net page is an HTML page that contains server-side scripts that are processed by a web server before being sent to the user’s browser. You can combine ASP with Extensible Markup Language (XML) and Hypertext Markup Language (HTML) to create powerful interactive Web sites. ASP.net coding is more "compact" than ASP code; the scripts required to perform a given function are shorter in ASP.net than they are in ASP.
Since the server-side script is building a regular HTML page, it can be served to almost any browser. An ASP.net  file can be created by using any text editing tool, such as notepad.

Asp.Net : What it does?
Microsoft ASP.NET is more than just the next generation of Active Server Pages (ASP). It provides an entirely new programming model for creating network applications that take advantage of the Internet.
Improved Performance and Scalability • Compiled Execution: ASP.NET is much faster than classic ASP, while preserving the "just hit save" update model of ASP. No explicit compile step is required. ASP.NET automatically detects any change, dynamically compiles files if needed, and stores the compiled results to reuse for subsequent requests.
• Rich Output Caching: ASP.NET output caching can dramatically improve the performance and scalability of your application. When output caching is enabled on a page, ASP.NET executes the page once and saves the result in memory before sending it to the user. When another user requests the same page, ASP.NET serves the cached result from memory without re-executing the page.
• Web Farm Session State: ASP.NET session state lets you share session data across all machines in a Web farm. Now a user can hit different servers in the Web farm over multiple requests and still have full access to session data.
Enhanced Reliability • Memory Leak, Dead Lock, and Crash Protection: ASP.NET automatically detects and recovers from errors such as dead locks and memory leaks to ensure that your application is always available.
Easy Deployment
• "No Touch" Application Deployment: With ASP.NET you can deploy an entire application by copying it to the server. Configuration settings are stored in an XML file within the application.
• Dynamic Update of Running Application: ASP.NET lets you update compiled components without restarting the Web server. Unlike classic COM components that required the Web server to be manually restarted when an update was deployed, ASP.NET automatically detects the change and starts using the new code.
• Easy Migration Path: ASP.NET runs side by side on IIS with classic ASP applications on Microsoft Windows 2000 and Windows XP, and on members of the Windows Server 2003 family. You can migrate one application at a time, or even single pages. ASP.NET even lets you continue to use your existing classic COM business components.
New Application Models
• XML Web Services: XML Web services allow applications to communicate and share data over the Internet, regardless of operating system or programming language. ASP.NET makes exposing and calling XML Web services simple.
• Mobile Web Device Support: ASP.NET mobile controls let you target over 80 mobile Web devices using ASP.NET. You write the application once, and the mobile controls automatically generate pages for the requesting device.
Developer Productivity
• Easy Programming Model: ASP.NET makes building real-world Web applications dramatically easier with server controls that let you build great pages with far less code than classic ASP.
• Flexible Language Options. ASP.NET supports not only Microsoft Visual Basic Scripting Edition (VBScript) and Microsoft JScript but also more than 25 .NET languages, including built-in support for Visual Basic .NET, Microsoft C#, and JScript .NET.
• Rich Class Framework: The .NET Framework class library offers over 4,500 classes that encapsulate rich functionality such as XML, data access, file upload, regular expressions, image generation, performance monitoring and logging, transactions, message queuing, and SMTP mail.

Why Asp.net ?
• ASP.NET drastically reduces the amount of code required to build large applications
• ASP.NET makes development simpler and easier to maintain with an event-driven, server-side programming model
• The source code is executed on the server. The pages have lots of power and flexibility by this approach
• The source code is compiled the first time the page is requested. Execution is fast as the Web Server compiles the page the first time it is requested. The server saves the compiled version of the page for use next time the page is requested
• ASP.NET makes for easy deployment. There is no need to register components because the configuration information is built-in.

Continue Reading →

Tuesday

Fresher vs Experience in job entry

We all know every person need a job regardless either he is a fresher or having experience in a particular job field.

When you go to any interview the first or may be most vital question asked by an interviewer or the receptionist would be "Do you have any experience ?"

What will you say ?......

If you are a fresher and want a quick job then even you don't have any experience but you can lie to the questioner if you have proper knowledge of your field.

We are not appreciate false things but we are guiding you to get your first dream job by cleverly answering.

If you are having proper training on industry standard project and spending more than 500 hours on it. Then only you are able to tell the fake answer.

Because when a questioner ask that question then his intention are clear that either I can depend on him or I have to taught him myself.

When you are trained enough to start at a go then you can handle any task given by your employer but if you are a fresher then employer have to taught you before any task given to you.

It is a time consuming task which can cost your employer.

So be selective and get properly trained enough to become fake experience holder otherwise don't bother to become fake since the interviewer can punish you and can go to court also.

Vinayak informatics not appreciate fake peoples but if you are a fresher then you can get properly trained by professional developers. And experience can be achieved by professional industrial IT training in Indore on java dotnet php cms

Note:we are not appreciate fake peoples or false statements

Call 9993253336

Vinayakinformatics.com

Continue Reading →

Wednesday

Questions asked on Html Css

Has a live developer we are sharing some basic question on Html and Css when anyone goes to crack interview on Html and Css.

Take a look and prepare for your interview on Css and Html.

1 What is HTML5?
Ans : HTML5 is came with some
new features. HTML5 is the new
standard for HTML, XHTML, and
the HTML DOM.

2. Are HTML tags case sensitive?
Ans : No, nothing like this HTML
tags are not case sensitive. You can
use any case as your wish.

3. What do you understand
about? CSS and How many kind
of CSS we use?
Ans.Full form of CSS is? Cascading?
Style?Sheets. If you are a designer
(HTML/CSS Developer) than you
must have good command on CSS.
You can say CSS i just like as blood
in human body. CSS define?how to
display?HTML elements
There are three types of CSS we can
use….
(a) Inline style sheet —: We use
inside the HTML element
(b) Internal style sheet – : We use
inside the HTML page using
<style></style> tag
(c) External style sheet : – Separate
file or external file

4. What is DHTML?
Ans : DHTML is a combination of
HTML, XHTML, Javascript, Jquery
and CSS , We use DHTML for?
making dynamic and interactive
web pages.

5. What is XML?
Ans XML stands for extensible?
Markup?Language. Basically XML is
designed to transport and store
data.

6. As you see sometimes we use
‘clear” , Why we use ?clear ?in
HTML?
Ans : It play a important role if we
are using many <div> accordingly.
Basically We use the clearance in
HTML code for separating the
content from one <div> content
after floating the position of
other<div> content.

7. How to create? an e- mail link
on given text in HTML?
Ans : <a
href=”mailto:info@vinayakinformatics.com”>vinayak informatics <a/
>

8. Can we call external CSS file if
yes that How can we call the
external style sheet?
Ans <link rel=”stylesheet”
type=”text/css” href=”mystyle.css”>

9. How do we make a comment
inside the CSS file?
Ans : /* include your comment
here*/

10. How can we make each word
in a text start with a capital
letter using CSS?
Ans : We can use this property
text-transform: capitalize;

11. What are? the main difference
between css2 and css3?
Ans : The main and biggest
difference between CSS2 and CSS3
is that CSS3 has been split up into
different sections, called modules.
Each of these modules is making it?
s way through the W3C in various
stages of the recommendation
process.

12. What is the? grouping in CSS?
Ans : We can write style for two or
more selectors that share the same
style, only we need to comma
separated list of every selector.
Grouping is decrease number of
line in our code.

13. What is difference between
margin and padding in CSS ?
Ans : the main difference
between margin and padding…
Padding – defines space between
border and element content
Margin – defines space between
border and other outer elements

Continue Reading →

Tuesday

Top question asked in any interview(list)

Di you want to find what are the common question asked in any interview.

You can find what are the common conversation besides technical aspect in any type of interview.

I have listed blow some
commonly asked Interview
questions :

1. ??? Tell me about yourself?
2. ??? What is your motivation factor?
3. ??? What are your strengths &
weaknesses? What plans you have
to overcome your weakness?
4. ??? What do you know about this
company?
5. ??? What are your expectations
from the job?
6. ??? Why are you leaving your
current job?
7. ??? Why should we hire you?
8. ??? What is your biggest
professional achievement/
disappointment?
9. ??? What are your total & relevant
years of experience in this field?
10. ??? What is the definition of Success
according to you? Do you consider
yourself successful?
11. ??? Can you work under pressure?
12. ??? How could you contribute for
the growth of the organization?
13. ??? Where would you like to see
yourself in 5 years?
14. ??? How will you organize/manage
major projects?
15. ??? Tell me a time when you
considered yourself successful?
16. ??? Describe your experience with
your previous company
17. ??? What are the skills that
differentiate you from other
candidates?
18. ??? How will you approach a
difficult task?
19. ??? Can you point out a situation
where you helped to resolve a
dispute between others in your
team?
20. ??? Can you provide me any
reference (HR) from your previous
employer?
21. ??? What is your salary expectation?
22. ??? Do you have any questions?

Go and find proper answer and ready to crack the interview.

Continue Reading →