New Wipro Interview Preparation Guide
Download PDF

Wipro Interview Questions and Answers will guide you that Wipro Technologies Limited is a giant information technology services corporation headquartered in Bangalore, India. Wipro is the second largest IT services company in India and employs more than 98,391 people worldwide, so get preparation for a job in Wipro with the help of this Wipro Interview Questions with Answers guide

35 Wipro Questions and Answers:

Table of Contents:

New  Wipro Job Interview Questions and Answers
New Wipro Job Interview Questions and Answers

1 :: What is passive objects in Wipro?

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.

2 :: What is Static modeling in Wipro?

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.

3 :: What is Dynamic modeling in Wipro?

Dynamic modeling refers representing the object interactions during run-time. It is represented by sequence, activity, collaboration and state-chart diagrams.

4 :: What is DOM in Wipro?

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).

5 :: Name the operators that cannot be overloaded in Wipro?

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++.

6 :: How to 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

7 :: How can we sort the elements of the array in descending order in Wipro?

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.

8 :: What is Post-Condition in Wipro?

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.

9 :: What is Precondition in Wipro?

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.

10 :: What is Stack unwinding in Wipro?

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.

11 :: Tell me does a class inherit the constructors of its super class?

A class does not inherit constructors from any of its super classes.

12 :: Can you please explain the difference between 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.

13 :: Explain the property of class in Wipro?

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.

14 :: Explain Null object in Wipro?

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.

15 :: What 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.

16 :: What are the benefits of Stored Procedures in Wipro?

❅ Reduced client/server traffic
❅ Efficient reuse of code and programming abstraction
❅ Enhanced security controls

17 :: 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.

18 :: Explain Program counter in Wipro?

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.

19 :: What is Active objects in Wipro?

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.

20 :: When do we use SQL Profiler in Wipro?

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..

21 :: How to delete Duplicate row in table of Wipro?

SQL> delete from table_name where rowid not in (select max(rowid) from table group by duplicate_values_field_name).

22 :: Can you please explain 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.

23 :: Explain the steps involved in designing in Wipro?

Project plan, Requirements, Design, Coding, Testing, Re-coding and design, Development, Maintenance.

24 :: Can you please explain the 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.

25 :: Explain the use of IP address in Wipro?

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.
Wipro Interview Questions and Answers
35 Wipro Interview Questions and Answers