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

Filter interviews by

Clear (1)

Wipro Software Developer Intern Interview Questions and Answers

Updated 15 Oct 2021

Wipro Software Developer Intern Interview Experiences

2 interviews found

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

The test was scheduled in early morning 
The environment was stable and strict

  • Q1. How do you join two tables in SQL?
  • Ans. 

    Joining two tables in SQL involves using the JOIN keyword to combine rows from both tables based on a related column.

    • Use the JOIN keyword followed by the table you want to join and the ON keyword to specify the column to join on

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Example: SELECT * FROM table1 JOIN table2 ON table1.column = table2.column

  • Answered by AI
  • Q2. 

    String Palindrome Verification

    Given a string, your task is to determine if it is a palindrome considering only alphanumeric characters.

    Input:

    The input is a single string without any leading or trailing...
  • Ans. 

    Check if a given string is a palindrome considering only alphanumeric characters.

    • Remove non-alphanumeric characters from the input string.

    • Compare characters from start and end of the string to check for palindrome.

    • Handle edge cases like empty string or single character input.

  • Answered by AI
Round 2 - Video Call 

Round duration - 12 minutes
Round difficulty - Medium

The technical interview was scheduled in evening.
The environment was stable and friendly 
The interviewer provided enough comfort. He asked some technical questions that’s all.

Round 3 - HR 

Round duration - 10 minutes
Round difficulty - Medium

This HR interview was scheduled in morning 
The environment was fine as it was the last round 
The interviewer was friendly and was trying to know how much willing I am to join the company.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in DelhiEligibility criteriaNo backlogsWipro Limited interview preparation:Topics to prepare for the interview - C++, SQL, python, Data Structure , Operating systemsTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : search frequently asked questions 
Tip 2 : prepare smartly the important topics

Application resume tips for other job seekers

Tip 1 : keep it short
Tip 2 : must add the projects you have worked on

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

It is from 12 to 1:30 pm. Environment was very friendly and interviewer was very nice.

  • Q1. 

    Nth Term of Geometric Progression Problem

    Given the first term A, the common ratio R, and an integer N, your task is to find the Nth term of a geometric progression (GP) series.

    Explanation:

    The general...

  • Ans. 

    Calculate the Nth term of a geometric progression series modulo 10^9 + 7.

    • Use the formula A * R^(N-1) to find the Nth term of the GP series.

    • Remember to calculate the result modulo 10^9 + 7.

    • Handle multiple test cases efficiently to stay within the time limit.

  • Answered by AI
Round 2 - Face to Face 

Round duration - 90 minutes
Round difficulty - Easy

Very friendly environment 

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Netaji Subhas University Of Technology. I applied for the job as SDE - Intern in GurgaonEligibility criteriaAbove 6 CGPAWipro Limited interview preparation:Topics to prepare for the interview - Array,Recursion,Maths,Pointer and stringsTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice DS algorithm
Tip 2 : Practice as many question you can 
Tip 3 : Also practice different MCQ question

Application resume tips for other job seekers

Tip 1 : Write only things you know 
Tip 2 : Be truthful with your resume

Final outcome of the interviewSelected

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. SOLID principals, oops, c# basics, SQL server, azure, design pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear basics of oops and design pattern

I applied via Campus Placement and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Hr

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be true to what you are putting before the interviewer . Try to put your ideas Add something you did well in your career like in projects /research which you know very well and versed in concepts about it for open interview so that interviewer can get bandwidth where he can ask questions from. This is simply a key .

I applied via Campus Placement and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. 1.Describe a situation where you have taken a quick decision and failed, and a situation where you succeeded. 2. What is a skill you have tried to achieve but failed? 3. Describe a decision you have taken ...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Always try to take risk in small problems . When you face the consequences, you would be able to tackle bigger problems.
2. Every skill you learn, even if you didn't excel in it is not to be considered a waste of time/failure, you learn something simply by participating.

Interview Questionnaire 

1 Question

  • Q1. HTML, CSS, BOOTSTRAP, PHP. SQL

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Simple program
  • Q2. I wrote a simple program in C

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about Yourself, some questions related to machine learning, and I was asked more questions to differentiate like differences between ml and ai, python and c, c and java and procedural and functiona...

Interview Preparation Tips

Interview preparation tips for other job seekers - Get a complete grip on your resume and be confident about what you say, If you don't know the answer it is okay to agree that you don't know the answer so that interviewer can ask the next questions.

I was interviewed before Jun 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 minutes
Round difficulty - Easy

It was an mcq + coding round. There were aptitude and ouput based question in mcq. And coding questions were easy

  • Q1. 

    Find the Duplicate Number Problem Statement

    Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Yo...

  • Ans. 

    Find the duplicate number in an array of integers from 0 to (N-2).

    • Iterate through the array and keep track of the frequency of each number using a hashmap.

    • Return the number with a frequency greater than 1 as the duplicate number.

    • Time complexity can be optimized to O(N) using Floyd's Tortoise and Hare algorithm.

  • Answered by AI
  • Q2. 

    Reverse String Operations Problem Statement

    You are provided with a string S and an array of integers A of size M. Your task is to perform M operations on the string as specified by the indices in array A...

  • Ans. 

    Given a string and an array of indices, reverse substrings based on the indices to obtain the final string.

    • Iterate through the array of indices and reverse the substrings accordingly

    • Ensure the range specified by each index is non-empty

    • Return the final string after all operations are completed

  • Answered by AI
Round 2 - Video Call 

Round duration - 60 Minutes
Round difficulty - Easy

It was technical + hr round. there were 2 people as interviewer. They stated from intro and asked some basic puzzles and hr questions. After that they asked about my projects, technologies and some ds algo and dbms questions.

Interview Preparation Tips

Eligibility criterianaAccenture interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice aptitude
Tip 2 : Focus on practicing coding
Tip 3 : Learn from mistakes

Application resume tips for other job seekers

Tip 1 : Mention some projects that you have done
Tip 2 : Try to have skills that are required for the role

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Job Portal and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts,JAVA 8

Interview Preparation Tips

Interview preparation tips for other job seekers - Quite simple and easy. 1st round technical.2nd round HR
Contribute & help others!
anonymous
You can choose to be anonymous

Recently Viewed

DESIGNATION

INTERVIEWS

Qualcomm

No Interviews

PHOTOS

Adani Ports and SEZ

No Photos

INTERVIEWS

Apple

No Interviews

DESIGNATION

DESIGNATION

INTERVIEWS

GlobalLogic

No Interviews

DESIGNATION

INTERVIEWS

Mediterranean Shipping Company

No Interviews

SALARIES

Optum Global Solutions

Tell us how to improve this page.

Wipro Software Developer Intern Salary
based on 4 salaries
₹3.5 L/yr - ₹20 L/yr
46% more than the average Software Developer Intern Salary in India
View more details

Wipro Software Developer Intern Reviews and Ratings

based on 2 reviews

4.2/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

3.5

Salary

5.0

Job security

4.2

Company culture

3.5

Promotions

4.2

Work satisfaction

Explore 2 Reviews and Ratings
Project Engineer
32.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
23.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
21.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Project Engineer
20.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
18.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Wipro with

TCS

3.7
Compare

Infosys

3.6
Compare

Tesla

4.2
Compare

Amazon

4.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent