Friday, September 2, 2016

WIPRO Interview Questions and Answers

Wipro is globally recognized for its innovative approach towards delivering business value and its commitment to sustainability. Wipro champions optimized utilization of natural resources, capital and talent. Today we are a trusted partner of choice for global businesses looking to ‘differentiate at the front’ and ‘standardize at the core’ through technology interventions.
In today’s world, organizations will have to rapidly reengineer themselves and be more responsive to changing customer needs. Wipro is well positioned to be a partner and co-innovator to businesses in their transformation journey, identify new growth opportunities and facilitate their foray into new sectors and markets.
In the year of 1945, in pre independent India, a vision was born, which would eventually stand out as a brand name synonymous with innovation and integrity. Starting off with consumer products business, Wipro then diversified into newer areas including IT hardware and IT services.
Wipro implement the philosophy of 'Applying Thought', thereby helping clients to "Do Business Better".
Head Quarters: Bangalore, India
Chairman? : Azim H. Premji - Chairman

Executive Directors : T K Kurien - CEO, IT Business & Executive Director

Suresh C Senapaty - Executive Director & Chief Finance Officer
Logo: The Rainbow flower consists of four basic values of Integrity, Innovative Solutions, Human Values and Value for Money and stands as our brand identity. Below the flower is inscribed the line 'Applying Thought', our brand promise, representing the essence of our personality.
Net revenues for the year ended March 31, 2011: $6.98 billion
Number of employees was over 120,000 across 70 nationalities
Over 72 plus global delivery centers and 50 plus industry-specific 'Centers of Excellence' in over 54 countries
Achievements @ Wipro: 

The pioneers in applying Lean Manufacturing techniques to IT services - The Wipro Way. Wipro is the world's first PCMM Level 5 software company
Among the top four offshore BPO service providers in the world and addressing COO requirements
Wipro is a strategic partner to five of the top 10 most innovative companies in the world, One of the most preferred employers for top class talent (ranked among top 5 in a Business Today 2011 survey) Wipro is the world's largest independent R&D Services Provider. No. 2 in Indian Domestic IT Services Provider Market
Topped the rankings of the MSCI Emerging Markets Index based on Oekom AG's sustainability ratings of companies
No. 1 Ranking in the Carbon Disclosure Leadership Index (India)


Infosys Commonly Asked HR Interview Questions 


Question 1. Tell me about yourself?
Answer: It is the most often asked question in interviews and also the trickiest question. Start by telling why you are well qualified for the position. Remember, always match your educational & experience qualification to what the interviewer is looking for. In other words, you should give information what the interviewer is looking for. Be careful that it should not seem rehearsed.

Question 2. What are your greatest strengths?
Answer:  Points to remember:
1.Intelligence…management “savvy”.
2. Honesty…integrity…a decent human being.
3. Good fit with corporate culture…someone to feel comfortable with…a team player who meshes
4.well with interviewer’s team.
5. Likeability…positive attitude…sense of humour.
6. Good communication skills.
7. Dedication…willingness to walk the extra mile to achieve excellence.
8. Definiteness of purpose…clear goals.
9. Enthusiasm…high level of motivation.
10.Confident…healthy…a leader.

Question 4: What are your weakness?
Disguise strength as a weakness.
Example: “I sometimes push my people too hard. I like to work with a sense of urgency and everyone is not always on the same wavelength.”
Drawback: This strategy is better than admitting a flaw, but it’s so widely used, it is transparent to any experienced interviewer.
BEST ANSWER: Assure the interviewer that you can think of nothing that would stand in the way of your performing in this position with excellence. Then, quickly review you strongest qualifications.
Instead of confessing a weakness, describe what you like most and like least, making sure that what you like most matches up with the most important qualification for success in the position,
and what you like least is not essential.

Question 3. Do you have any blind spots?
Answer: Disguise your strength as a weakness. Beware this is an eliminator question, designed to shorten the candidate list.

Question 4.  Why should I hire you?
AnswerTry to know the interviewer’s greatest needs and demands, this question will give you advantage over other candidates and give him best facts for hiring you than someone else.

Question 5. Why did you leave your last job?
Answer:  Always answer in a positive manner regarding reason. Never talk negatively or badly about your previous organization. If you do, you will cut a sorry figure. Give suitable reasons for leaving last job.

Question 6.  Where do you see yourself five years from now?
Answer: Don’t be too specific. Make assure interviewer that you want to make a long-term commitment with the organisation and this is the exact position you are looking for.

Question 7.  Describe your management style?
Answer: Tell about some common labels as progressive or consensus etc. can have several meanings or descriptions depending on which management expert you listen to. The situational style is safe, and fits to all.

Question 8.  Are you a team player?
Answer:  Of course, I’m a team player. Always say this and should have examples ready. Tell that you often perform for the good of the team rather than mean is good evidence of your team attitude.

Question 9.  How would you be an asset to our organization?
Answer:  Highlight and let them know about your strengths. This is the exact question where you can win their heart and with confidence.

Question 10.  Do you have any questions for me?
Answer:  Always have some questions prepared for the interviewer. How soon will I be able to be join? etc.
Example: Why is this position open?

Question 11: Out of all the candidates that we have interviewed, why should we choose you only?
Whether your interviewer asks you this question explicitly or not, this is the most important question of your interview because he must answer this question favourably in his own mind
before you will be hired. So help him out! Walk through each of the positions requirements as you understand them, and follow each with a reason why you meet that requirement so well.
  
Question 12: Can you work under pressure?
Absolutely (then prove it with a vivid example or two of a goal or project accomplished under severe pressure.)
Yes! I can do job under pressure. I will overcome pressure by Perfect and proper planning then it doesn't lead the work to the pressure. Without pressure no one can be stronger so we have to handle pressure by our confidence. I have self-confidence and determination so I can overcome that sir.
           
Question 13: Where do you see yourself five years from now?
If you really want to impress the interviewers, connect your answer with the role you are just applying for.
For example: " I hope to be working in your company as a senior manager, achieving great results in my department in 5 years’ time."
Most important here is to not say something stupid, like: " I would like to have my own business in 3 years of time." Well, if you would like to have your own business, why should we employ you? It makes no sense...........So be careful with then answer here

Wipro Commonly Asked Technical Interview Questions


Memory management in C
The C programming language manages memory statically, automatically, or dynamically. 
Static-duration variables are allocated in main memory, usually along with the executable code of the program, and persist for the lifetime of the program
Automatic-duration variables are allocated on the stack and come and go as functions are called and return. 
For static-duration and automatic-duration variables, the size of the allocation is required to be compile-time constant.
Dynamic memory allocation in which memory is more explicitly (but more flexibly) managed, typically, by allocating it from the heap, an area of memory structured for this purpose.
In C, the library function malloc is used to allocate a block of memory on the heap. The program accesses this block of memory via a pointer that malloc returns. When the memory is no longer needed, the pointer is passed to free which deallocates the memory so that it can be used for other purposes.

Functionality of Operating System?
An operating system (OS) is a set of software that manages computer hardware resources and provides common services for computer programs. 
 
To act as interface between hardware and users, an operating system must be able perform the following functions:
 
1. Enabling startup application programs. Thus, the operating system must have:

- A text editor

- A translator

- An editor of links
 
2. The allocation of resources needed to execute programs is done by identifying: the programs that are running, the need for memory, peripheral devices and data protection requirements.

3. Facilities for data compression, sorting, mixing, cataloging and maintenance of libraries, through utility programs available.
 
4. Plan implementation works according to certain criteria, for efficient use of central processing unit.
 
5. Assisting implementation of programs through computer-user communication system, at both hardware and software level.
 
Examples of operating systems:BS2000,BS3000,DOS,PC-DOS,MS-DOS,LINUX,SOLARIS,MAC OS,UNIX,WINDOWS

What the use of IP address
An Internet Protocol address (IP address) is a numerical label assigned to each device (e.g., computer, printer) participating in a computer network that uses the Internet Protocol for communication.An IP address serves two principal functions: host or network interface identification and location addressing
What is difference between UNIQUE and PRIMARY KEY constraints?
 
A UNIQUE constraint is similar to PRIMARY key, but you can have more than one UNIQUE constraint per table. Contrary to PRIMARY key UNIQUE constraints can accept NULL but just once. If the constraint is defined in a combination of fields, then every field can accept NULL and can have some values on them, as long as the combination values is unique.

What are the steps involved in designing?
Project plan, Requirements, Design, Coding, Testing, Re-coding and design, Development, Maintenance.

what is the difference between interface and multiple interface?
Both an abstract class and an interface are specific types of computer objects that allow a programmer to loosely define one type of object as if it were another type, while retaining all of the object's original properties. While multiple different computer languages use one or both of these concepts, Java is the most well-known. Abstract classes and interfaces have a variety of similarities, but also incorporate significant differences in structure, syntax, and usage.

How can we delete Duplicate row in table?
SQL> delete from table_name where rowid not in (select max(rowid) from table group by duplicate_values_field_name);
When do you use SQL Profiler? 
  SQL Profiler utility allows us to basically track connections to the SQL Server and also determine activities such as which SQL Scripts are running, failed jobs etc..

What do you meant by active and passive objects?
Active objects are one which instigate an interaction which owns a thread and they are responsible for handling control to other objects. In simple words it can be referred as client.
Passive objects are one, which passively waits for the message to be processed. It waits for another object that requires its services. In simple words it can be referred as server.
What do you meant by static and dynamic modeling?
Static modeling is used to specify structure of the objects that exist in the problem domain. These are expressed using class, object and USECASE diagrams.
But Dynamic modeling refers representing the object interactions during runtime. It is represented by sequence, activity, collaboration and statechart diagrams. 
What is Program counter? 
Program counter holds the address of either the first byte of the next instruction to be fetched for execution or the address of the next byte of a multi byte instruction, which has not been completely fetched. In both the cases it gets incremented automatically one by one as the instruction bytes get fetched. Also Program register keeps the address of the next instruction.
Can you give an example of Stored Procedure? 
CREATE procedure - is a stored procedure, which is a saved collection of Transact-SQL statements that can take and return user-supplied parameters.
Benefits of Stored Procedures?
Reduced client/server traffic
Efficient reuse of code and programming abstraction
Enhanced security controls

Is XML case-sensitive? 
XML is case sensitive when uppercase and lowercase characters are treated differently.
Element type names, Attribute names, Attribute values, All general and parameter entity names, and data content (text), are case-sensitive. 
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. 
What is the property of class?
A property is a member that provides access to an attribute of an object or a class. Examples of properties include the length of a string, the size of a font, the caption of a window, the name of a customer, and so on.
Does a class inherit the constructors of its super class?
A class does not inherit constructors from any of its super classes.
If a class is declared without any access modifiers, where may the class be accessed?
A class that is declared without any access modifiers is said to have package access. This means that the class can only be accessed by other classes andinterfaces that are defined within the same package

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. 

Define precondition and post-condition to a member function.
Precondition: A condition that should return true when a member function is invoked. In order to use a function correctly a precondition should return true. If a precondition fails to hold, an operation will not take responsibility to perform any action of sensibility. For example, the interface invariants of stack class respond nothing about pushing even though the stack is already full. In this scenario, sinful () is a precondition for push operation.

Post-Condition: A condition that should return true before returning from an invoked function. In order to use a function correctly a post condition should return true. Taking a stack as an example, is empty () must necessarily be true after pushing the element into the stack when an element is pushed. The function is empty () is a post condition.

How can you sort the elements of the array in descending order? 
Syntax
B = sort(A)
B = sort(A,dim)
B = sort(...,mode)
[B,IX] = sort(A,...)
Description
 
B = sort(A) sorts the elements along different dimensions of an array, and arranges those elements in ascending order. 

If A is a ...                                                 sort(A) ...

Vector                                             Sorts the elements of A.

Matrix                                             Sorts each column of A.

Multidimensional array                     Sorts A along the first non-singleton dimension, and returns an array of sorted vectors.

Cell array of strings                         Sorts the strings in ascending ASCII dictionary order, and returns a vector cell array of strings. The sort is case-sensitive; uppercase letters appear in the output before                                             lowercase. You cannot use the dim or mode options with a cell array.
Sort - Sort array elements in ascending or descending order
Integer, floating-point, logical, and character arrays are permitted. Floating-point arrays can be complex. For elements of A with identical values, the order of these elements is preserved in the sorted list. When A is complex, the elements are sorted by magnitude, i.e., abs(A), and where magnitudes are equal, further sorted by phase angle, i.e., angle(A), on the interval [??, ?]. If A includes any NaN elements, sort places these at the high end.

B = sort(A,dim) sorts the elements along the dimension of A specified by a scalar dim.
B = sort(...,mode) sorts the elements in the specified direction, depending on the value of mode.
'ascend'
Ascending order (default)
'descend'
Descending order
[B,IX] = sort(A,...) also returns an array of indices IX, where size(IX) == size(A). If A is a vector, B = A(IX). If A is an m-by-n matrix, then each column of IX is a permutation vector of the corresponding column of A, such that
for j = 1:n
B(:,j) = A(IX(:,j),j); 
end
If A has repeated elements of equal value, the returned indices preserve the original ordering.
Example:Sort horizontal vector A:

A = [78 23 10 100 45 5 6];

sort(A)
ans =5 6 10 23 45 78 100
What is DOM?
The Document Object Model (DOM) is a cross-platform and language-independent convention for representing and interacting with objects in HTML, XHTML and XML documents.[1] Objects in the DOM tree may be addressed and manipulated by using methods on the objects. The public interface of a DOM is specified in its application programming interface (API).

How macro execution is faster than function ?
Difference between overloading and overriding in programming language is:

a) In overloading, there is a relationship between methods available in the same class whereas in overriding, there is relationship between a superclass method and subclass method.

b) Overloading does not block inheritance from the superclass whereas overriding blocks inheritance from the superclass.

c) In overloading, separate methods share the same name whereas in overriding, subclass method replaces the superclass.

d) Overloading must have different method signatures whereas overriding must have same signature.

19.what do you mean by realization in oops, what is persistent, transient object.

Name the operators that cannot be overloaded.?
There are 5 operators which cannot be overloaded. They are:

.* - class member access operator 

:: - scope resolution operator 

. - dot operator 

?:: - conditional operator 

Sizeof() - operator 

Note:- This is possible only in C++.

What is polymorphism?
In programming languages, polymorphism means that some code or operations or objects behave differently in different contexts.

For example, the + (plus) operator in C++:

4 + 5 <-- integer addition
3.14 + 2.0 <-- floating point addition
s1 + "bar" <-- string concatenation!

In C++, that type of polymorphism is called overloading.

Typically, when the term polymorphism is used with C++, however, it refers to using virtual methods, which we'll discuss shortly. 

What are the differences between a C++ struct and C++ class? 
The default member and base class access specifiers are different.
The C++ struct has all the features of the class. The only differences are that a struct defaults to public member access and public base class inheritance, and a class defaults to the private access specifier and private base class inheritance.

Before interview Please Refer this following programming Questions
Write a Program for :
1.palindrome for string and number 
2.String Reverse 
3.Sum,Average of all the number 
4.Prime  no 
5.Armstrong no 
6.fibonacci 
7.factorial 
8.prime number,

Palindrome  for string
#include
#include 

main()
{
char a[100], b[100];

printf("Enter the string to check if it is a palindrome\n");
gets(a);

strcpy(b,a);
strrev(b);

if( strcmp(a,b) == 0 )
printf("Entered string is a palindrome.\n");
else
printf("Entered string is not a palindrome.\n");

return 0;
}

Palindrome number in c

 
#include 

main()
{
int n, reverse = 0, temp;

printf("Enter a number to check if it is a palindrome or not\n");
scanf("%d",&n);

temp = n;

while( temp != 0 )
{
reverse = reverse * 10;
reverse = reverse + temp%10;
temp = temp/10;
}

if ( n == reverse )
printf("%d is a palindrome number.\n", n);
else
printf("%d is not a palindrome number.\n", n);

return 0;
}

Reverse a string using C programming
 
#include
#include

main()
{
char arr[100];

printf("Enter a string to reverse\n");
gets(arr);

strrev(arr);

printf("Reverse of entered string is \n%s\n",arr);

return 0;
}


/* Fibonacci Series c language */

#include

main()
{
int n, first = 0, second = 1, next, c;

printf("Enter the number of terms\n");
scanf("%d",&n);

printf("First %d terms of Fibonacci series are :-\n",n);

for ( c = 0 ; c < n ; c++ )
{
if ( c <= 1 )
next = c;
else
{
next = first + second;
first = second;
second = next;
}
printf("%d\n",next);
}

return 0;
}

Fibonacci series program in c using recursion
 
#include

int Fibonacci(int);

main()
{
int n, i = 0, c;

scanf("%d",&n);

printf("Fibonacci series\n");

for ( c = 1 ; c <= n ; c++ )
{
printf("%d\n", Fibonacci(i));
i++; 
}

return 0;
}

int Fibonacci(int n)
{
if ( n == 0 )
return 0;
else if ( n == 1 )
return 1;
else
return ( Fibonacci(n-1) + Fibonacci(n-2) );


Adding numbers in c using function
 

#include

long addition(long, long);

main()
{
long first, second, sum;

scanf("%ld%ld", &first, &second);

sum = addition(first, second);

printf("%ld\n", sum);

return 0;
}

long addition(long a, long b)
{
long result;

result = a + b;

return result;
}


Bhanu Namikaze

Author & Editor

Bhanu Namikaze is an Ethical Hacker, Passionate Blogger, Web Developer, Student and Mechanical Engineer. He Enjoys writing articles, Blogging, Solving Errors, Surfing and Social Networking. Feel Free To Contact Me @ Bhanu.

0 comments:

Post a Comment

Popular Posts

Copyrights @ Interview Questions.Me - Blogger Templates Designed by Templateism - Distributed By Protemplateslab

  • (91) 5544 654942
  • Bhanu@HackingDream.net
  • Interview Questions

Copyrights @ Interview Questions.Me -A Site By Bhanu In Association With Hacking Dream