Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Wipro Team. If you also belong to the team, you can get access from here

Wipro Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 50.9k Reviews

Filter interviews by

Wipro Software Engineering Consultant Interview Questions and Answers for Experienced

Updated 20 Apr 2022

Wipro Software Engineering Consultant Interview Experiences for Experienced

1 interview found

I applied via LinkedIn and was interviewed in Oct 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Basics of oracle technical
  • Q2. RICE Compenenets..............

Interview Preparation Tips

Topics to prepare for Wipro Software Engineering Consultant interview:
  • Oracle reports, Interfaces
Interview preparation tips for other job seekers - Have only 2 years of exp..so they asked basic things

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

2 hrs probablity questions

Round 2 - Technical 

(2 Questions)

  • Q1. Find max element from array
  • Q2. Binary seeach algo
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Basic all type questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Project related and technology se related
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Sorting program without using any in built functions
  • Ans. 

    Implement a sorting program without using any built-in functions

    • Iterate through the array and compare each element with the rest to sort

    • Use a sorting algorithm like bubble sort, selection sort, or insertion sort

    • Implement the sorting logic using loops and conditional statements

  • Answered by AI
  • Q2. Writing a sort program

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well in coding challenges

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. 1. Describe project 2. What do you understand by OOPs. 3. What all Access modifiers are there in Java. 4. Difference between protected and default. 5. Overloading and overriding (difference, example and qu...
  • Ans. 

    Interview questions for Software Engineer position

    • Describe a project you have worked on

    • Explain OOPs concepts and access modifiers in Java

    • Differentiate between protected and default access modifiers

    • Provide examples and differences between overloading and overriding

    • Use Java 8 to find even numbers in a list and to find the square of elements in a list using lambda expressions

    • Write a template for a REST controller with dif...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on concepts as well as programming.

I applied via Recruitment Consulltant and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Hashmap, linkedlist, arraylist, collection interface
  • Q2. Small coding questions on collection interface
Round 2 - One-on-one 

(1 Question)

  • Q1. Managerial round, questions were on certain scenarios like production issues and how to handle them
Round 3 - HR 

(1 Question)

  • Q1. Relocation, salary discussion

Interview Preparation Tips

Topics to prepare for Societe Generale Global Solution Centre Software Engineer interview:
  • Java
  • Collections
  • Sprint boot
Interview preparation tips for other job seekers - Overall interview experience was good and smooth.

I applied via Company Website and was interviewed in Apr 2022. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Is java springs good work
  • Q2. Very essay so just Tuff question

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing advice
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

C and c++ and data structure

Round 3 - Technical 

(1 Question)

  • Q1. Question front Data structure, c++ and c
Round 4 - HR 

(1 Question)

  • Q1. Ask all those questions that you want

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on body language.
Learn new things.
Round 1 - Coding Test 

Java, micro service, spring boot

Round 2 - Technical 

(4 Questions)

  • Q1. Micro service basics
  • Q2. Simple Java programming
  • Q3. Basic questions of SQL queries
  • Q4. Questions from project related

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly asked basic questions of Java, spring boot, micro service, SQL queries

I applied via Recruitment Consultant and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. What is comp & comp 3 differance ?
  • Ans. 

    COMP and COMP-3 are data types used in COBOL programming language.

    • COMP is a binary data type that stores numeric values as binary integers.

    • COMP-3 is a packed decimal data type that stores numeric values as packed decimal digits.

    • COMP uses less storage space compared to COMP-3.

    • COMP-3 is more suitable for decimal arithmetic operations.

    • COMP-3 values are stored in a packed format, where each digit occupies half a byte.

    • COMP-...

  • Answered by AI
  • Q2. How to check file is empty or not ?
  • Ans. 

    To check if a file is empty or not, we can use the file's size or read the file and check for any content.

    • Get the size of the file using file system APIs and check if it is zero.

    • Read the file and check if it contains any content.

    • Handle exceptions or errors that may occur during file operations.

  • Answered by AI
  • Q3. How many ways data pass jcl to cobol program ?
  • Ans. 

    Data can pass from JCL to COBOL program in multiple ways, such as through input files, system symbols, and program parameters.

    • Input files: Data can be passed to a COBOL program through input files specified in the JCL.

    • System symbols: JCL can define system symbols that can be accessed by the COBOL program to retrieve data.

    • Program parameters: JCL can pass parameters to the COBOL program, which can be used to receive data...

  • Answered by AI
  • Q4. How to data insert or update in table ?
  • Ans. 

    To insert or update data in a table, use SQL statements like INSERT INTO or UPDATE.

    • For inserting data, use the INSERT INTO statement followed by the table name and column names.

    • Specify the values to be inserted using the VALUES keyword.

    • For updating data, use the UPDATE statement followed by the table name.

    • Set the column values to be updated using the SET keyword.

    • Use conditions with the WHERE clause to specify which row

  • Answered by AI
  • Q5. What is array ? how to load data ?
  • Ans. 

    An array is a data structure that stores a collection of elements of the same type.

    • Arrays can be used to store and access multiple values using a single variable.

    • To load data into an array of strings, you can assign values to each element individually or use a loop.

    • Example: String[] names = {"John", "Jane", "Mike"};

    • Example: for(int i = 0; i < names.length; i++) { names[i] = "Value" + i; }

  • Answered by AI
  • Q6. 1 have 1000 records i will get abend in 590 th record how to restart logic using ?
  • Q7. We have 2 files eliminate duplicates and send to duplicate files in to another out put file how to achieve it ?
  • Ans. 

    To eliminate duplicates from 2 files and send them to another output file, we can use a combination of file reading, hashing, and file writing.

    • Read the contents of both files and store them in separate arrays or lists.

    • Create a hash table or dictionary to keep track of the unique elements in the arrays.

    • Iterate through the arrays and add each element to the hash table. If the element already exists, skip it.

    • Write the con...

  • Answered by AI
  • Q8. Soc 7 abend how to find ? resolve it ?
  • Ans. 

    S0C7 abend is a mainframe error caused by invalid data. It can be resolved by identifying the source of the error and correcting it.

    • S0C7 abend is caused by invalid data in a numeric field

    • To resolve it, identify the source of the error and correct it

    • Common causes include incorrect data types, invalid characters, and overflow

    • Debugging tools like IBM Debug Tool can help identify the source of the error

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - its going good

Skills evaluated in this interview

Wipro Interview FAQs

How many rounds are there in Wipro Software Engineering Consultant interview for experienced candidates?
Wipro interview process for experienced candidates usually has 2 rounds. The most common rounds in the Wipro interview process for experienced candidates are Resume Shortlist and Technical.
What are the top questions asked in Wipro Software Engineering Consultant interview for experienced candidates?

Some of the top questions asked at the Wipro Software Engineering Consultant interview for experienced candidates -

  1. RICE Compenenets..............read more
  2. Basics of oracle techni...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
View all
Wipro Software Engineering Consultant Salary
based on 15 salaries
₹4.5 L/yr - ₹9.5 L/yr
44% less than the average Software Engineering Consultant Salary in India
View more details
Project Engineer
32.6k salaries
unlock blur

₹1.8 L/yr - ₹8.3 L/yr

Senior Software Engineer
23k salaries
unlock blur

₹5.8 L/yr - ₹22.5 L/yr

Senior Associate
21.2k salaries
unlock blur

₹0.8 L/yr - ₹5.5 L/yr

Senior Project Engineer
20.5k salaries
unlock blur

₹5 L/yr - ₹19.4 L/yr

Technical Lead
18.6k salaries
unlock blur

₹8.3 L/yr - ₹36.5 L/yr

Explore more salaries
Compare Wipro with

TCS

3.7
Compare

Infosys

3.7
Compare

Tesla

4.3
Compare

Amazon

4.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview