Wipro Coding Questions

Wipro Programming Questions with Answers

Wipro Coding Questions is a very important section in Wipro off-campus or on-campus drives. In this round there are 2 problem statement, for which the students have to provide code for, in any of the mentioned languages they like to. The below are some of the practice questions that will help you in your preparation  for Wipro Coding Section.

  • Number of Questions – 2 Questions
  • Difficulty Level – 1 Easy + 1 Medium
  • Cut-off – Solve 1 question completely or 2 partial outputs
  • Languages allowed – C, C++, Java, Python

Coding Questions Wipro
Time 60 mins
Number of Questions 2
Coding Difficulty Medium
Adaptive Test No
Wipro Coding Questions-and Answers

Wipro Coding Test Pattern

Wipro coding questions range from easy to difficult level. Out of the 2 questions asked in Wipro coding test, one is easy and the other is slightly difficult. You need to answer a minimum of 1 question, to clear the cut off. But in certain cases, if a lot of students have cleared all test cases for both the questions, then the cutoff might vary accordingly.

Key Points You Need To Remember

  • You need to implement the function signature, that has been provided by the editor
  • Use the function that is exactly provided in the problem as any deviation may lead to unsuccessful compilation of the code.
  • Do not modify pre-implemented main method
  • You may include necessary libraries if required.
  • The signature may call other functions defined by you.
  • It may also use structure definitions and other pre processing directives such as macros
Coding Questions Wipro
Time 60 mins
Number of Questions 2
Coding Difficulty Medium
Adaptive Test No

Wipro Coding Syllabus and Pattern

Wipro coding test questions pattern and Facts – 

[table id=59 /]

Find the latest syllabus for Wipro here on this page.

Question 1

Problem Statement

Alex works at a clothing store. There is a large pile of socks that must be paired by color for sale. Given an array of integers representing the color of each sock, determine how many pairs of socks with matching colors there are.

For example, there are n=7 socks with colors ar = {1,2,1,2,1,3,2}. There is one pair of color 1 and one of color 2. There are three odd socks left, one of each color. The number of pairs is 2.

Function Description
Complete the sockMerchant function in the editor below. It must return an integer representing the number of matching pairs of socks that are available.
sockMerchant has the following parameter(s):
             n: the number of socks in the pile
             ar: the colors of each sock

Input Format
            The first line contains an integer n, the number of socks represented in ar.
            The second line contains n space-separated integers describing the colors ar[i] of the socks in the pile.

Constraints
             1 <= n <= 100
             1 <= ar[i] <= 100 & 0 <= i < n

Output Format
             Return the total number of matching pairs of socks that Alex can sell.

Sample Input
             9
             10 20 20 10 10 30 50 10 20
Sample Output
             3

Explanation
             Alex can match 3 pairs of socks i.e 10-10, 10-10, 20-20
             while the left out socks are 50, 60, 20

Question : 2 – Counting Valleys

Problem Statement

Gary is an avid hiker. He tracks his hikes meticulously, paying close attention to small details like topography. During his last hike, he took exactly n steps. For every step he took, he noted if it was an uphill or a downhill step. Gary’s hikes start and end at sea level. We define the following terms:

  • A mountain is a non-empty sequence of consecutive steps above sea level, starting with a step up from sea level and ending with a step down to sea level.
  • A valley is a non-empty sequence of consecutive steps below sea level, starting with a step down from sea level and ending with a step up to sea level.

Given Gary’s sequence of up and down steps during his last hike, find and print the number of valleys he walked through.

Input Format

The first line contains an integer, , denoting the number of steps in Gary’s hike.

The second line contains a single string of characters. Each character belongs to {U, D} (where U indicates a step up and D indicates a step down), and the i(th) cin the string describes Gary’s i(th) step during the hike.

Constraints

  • 2 <= N <= 10^6

Output Format

Print a single integer denoting the number of valleys Gary walked through during his hike.

Sample Input

8

UDDDUDUU 

Sample Output

1

Explanation

If we represent _ as sea level, a step up as / , and a step down as \ , Gary’s hike can be drawn as:

_/\      _

    \    /

     \/\/

It’s clear that there is only one valley there, so we print on a new line.

Question : 3 – Left Rotation

Problem Statement

A left rotation operation on an array shifts each of the array’s elements unit to the left. For example, if 2 left rotations are performed on array [1, 2, 3, 4, 5], then the array would become [3, 4, 5, 1, 2].

Given an array of integers and a number, , perform left rotations on the array. Return the updated array to be printed as a single line of space-separated integers.

Function Description

Complete the function rotLeft in the editor below. It should return the resulting array of integers.

rotLeft has the following parameter(s):

  • An array of integers .
  • An integer , the number of rotations.

Input Format

The first line contains two space-separated integers and , the size of and the number of left rotations you must perform.

The second line contains space-separated integers a[i].

Constraints

  • 1 <= n <= 10^5
  • 1 <= d <= n
  • 1 <= a[i] <= 10^8

Output Format

Print a single line of space-separated integers denoting the final state of the array after performing d left rotations.

Sample Input
5 4
1 2 3 4 5

Sample Output
5 1 2 3 4

Explanation
When we perform d=4 left rotations, the array undergoes the following sequence of changes:

[1,2,3,4,5] → [2,3,4,5,1] → [3,4,5,1,2] → [4,5,1,2,3] → [5,1,2,3,4]

Test Case : 1

Input (stdin)

  • 5 4
  • 1 2 3 4 5

Expected Output

  • 5 1 2 3 4

Test Case : 2
Input (stdin)

  • 20 10
  • 41 73 89 7 10 1 59 58 84 77 77 97 58 1 86 58 26 10 86 51

Expected Output

  • 77 97 58 1 86 58 26 10 86 51 41 73 89 7 10 1 59 58 84 77

Question 4

Ques:  C Program to check if two given matrices are identical

Question 5

Ques: Given a 2D array, print it in spiral form. See the following examples.

NOTE:-  Please comment down the code in other languages as well below .

Input:
        1    2   3   4
        5    6   7   8
        9   10  11  12
        13  14  15  16
Output: 
1 2 3 4 8 12 16 15 14 13 9 5 6 7 11 10 
Input:
        1   2   3   4  5   6
        7   8   9  10  11  12
        13  14  15 16  17  18
Output: 
1 2 3 4 5 6 12 18 17 16 15 14 13 7 8 9 10 11

 

Question 6

​Ques: A Pythagorean triplet is a set of three integers a, b and c such that a2 + b2 = c2. Given a limit, generate all Pythagorean Triples with values smaller than given limit.

Input : limit = 20
Output : 3 4 5
         8 6 10
         5 12 13
         15 8 17
         12 16 20

Simple Solution is to generate these triplets smaller than given limit using three nested loop. For every triplet, check if Pythagorean condition is true, if true, then print the triplet. Time complexity of this solution is O(limit3) where ‘limit’ is given limit.

An Efficient Solution can print all triplets in O(k) time where k is number of triplets printed. The idea is to use square sum relation of Pythagorean triplet, i.e., addition of squares of a and b is equal to square of c, we can write these number in terms of m and n such that,

       a = m2 - n2
       b = 2 * m * n
       c  = m2 + n2
because,
       a2 = m4 + n4 – 2 * m2 * n2
       b2 = 4 * m2 * n2
       c2 = m4 + n4 + 2* m2 * n2

We can see that a2 + b2 = c2, so instead of iterating for a, b and c we can iterate for m and n and can generate these triplets

Wipro Placement Coding Questions based FAQ's

Ques. In total when I am attending Wipro exam, how many questions will there be for my Wipro Coding Test?

Ans. There are generally one easy question which will mostly be a pattern based program and the other question will be non pattern question like GCD of two numbers etc.

Ques. Are these questions valid for Wipro NLTH exam as well, will it benefit for me if I study from here for that as well?

Ans. Wipro NLTH test is also conducted by Wipro but  the level of difficutly is high, thus you can study from our Wipro NLTH Coding Questions Page.

Ques.What is the level of difficulty for Wipro coding test questions?

Ans. Wipro Coding Questions are of moderate difficulty but you need to score atleast 70%ile in this section to get to the next round necessarily.

Disclaimer-: The questions provided on this page are only model practice questions there is no surety that these questions have been previously asked in any company placement papers, these questions here only have the sole purpose to make you practice coding questions

20 comments on “Wipro Coding Questions”


  • bhagya

    #QUESTION 3
    #python code
    n,d=list(map(int,input().split()))
    l=list(map(int,input().split()))
    for i in range(d):
    x=l[0]
    l.remove(l[0])
    l=l+[x]
    k=”
    for i in l:
    k=k+’ ‘+str(i)
    k=(k).strip(‘ ‘)
    print(k)


  • Sayan

    question 3 sollution:-
    def de(a,k):
    v=a[k:]
    d=[]
    s=””
    for i in a:
    if i not in v:
    d.append(i)
    for i in d:
    v.append(i)
    for i in v:
    s=s+str(i)+” ”
    return s.strip()
    a=[41, 73, 89, 7 ,10, 1, 59, 58, 84, 77, 77, 97, 58, 1, 86, 58, 26, 10, 86 ,51]
    k=10
    print(de(a,k))