Wipro Elite NTH Coding Questions | PrepInsta

Wipro NTH Coding Questions and Answer

Wipro Elite NTH Coding Questions and Answer are not like a general Programming Round Questions with Solutions it is all together different from C programming.

We have analyzed over 100+ Wipro NTH Coding Questions. Below you will find Similar pattern based Wipro NTH Coding Round Questions, Wipro NTH Coding Questions that are asked constantly in Wipro NTH Placement test. The languages that you can use in the test are C , C++ , Java and Python.

Wipro Elite NTH Coding Questions
Total number of questions2 questions
Total Time Duration60 minutes
Type of TestAdaptive
Negative MarkingNo

WIPRO NTH PROGRAMMING MODEL QUESTIONS AND ANSWERS

 In this page you will find some previous years coding questions asked  during the campus placement:

  1. Wipro NTH C Programming Questions for On Campus
  2. Wipro NTH Java Programming Questions for On Campus
  3. Wipro NTH C++ Programming Questions for On Campus

Free Material

  • Program to calculate the GCD of two numbers –
  • Program to calculate the GCD of three numbers – 
  • Program to check if the given number is Prime or not – 
  • Program to Display the distinct elements of an array –
  • Program to Sort first half in ascending order and second half in descending order in an array –
  • Program for Matrix multiplication  –
  • Program to Remove vowels from an input string –
  • Program to Print Sum of all Odd Numbers present in a larger number –
  • Program to Print the Transpose of a matrix –
  • Program to Display the largest element in each row in a 2-D Array –
  • Program to Check the balance of Parenthesis –

Prime Course Trailer

Related Banners

Get PrepInsta Prime & get Access to all 200+ courses offered by PrepInsta in One Subscription

Some Coding Questions for Practice

Question 1

Wipro’s client eBay wants to run a campaign on their website, which will have the following parameters, eBay wants that on certain x products, they want to calculate the final price, for each product on eBay there will be a stock unit parameter, this parameter will denote, how many items are their in their fulfillment center

Now, while these numbers if are positive means product x is available in the fulfillment center and if not than the product is not available and cannot be shipped to the customer 

Now the price on for each product varies based on the distance of the customer from the fulfillment center. Now, each product is in different fulfillment zone. Now, these values are 00’s kms for each centurion km. The price available would further increase by factor distance.

You’ve to find the maximum discount price for each product if the product can be shipped.

Following are the input/output parameters :

Input

  •  The first line of the input will contain number of products.
  • The second line will contain price for each of these products.
  • The third line contains shipping distance in 00’s kms
  • The fourth line contains SKU’s

Output

  • It will contain the final price for each deliverable item in SKU’s

Example :

Input:

  • 6
  • 87 103 229 41 8 86
  • 3 1 9 2 1 2
  • 7 -21 30 0 -4 -3

Output

  • 261 2061

Question : 2

(asked in Wipro On Campus, Sastra University, Aug, 2019)

Problem: in this first line you are required to take the value of m and n as the number of rows and columns of matrix, then you are required to take the input elements of array.
As an output you are required to print the sum of each row then the row having the maximum sum.
Test Case :
Input : 3 3
1 2 3
4 5 6
7 8 9
Output :
Row 1 : 6
Row 2 : 15
Row 3 : 24
Row 3 is having the maximum sum : 24

Question : 3

(asked in Wipro On Campus, PESIT Bangalore, Oct, 2019)

Problem: You are required to count the number of words in a sentence.
You are required to pass all the test cases

Test Cases :
Test Case : 1
Input : welcome to the world
Output : 4

Test Case : 2
Input : [space] say hello
Output : 2

Test Case : 3
Input : To get pass you need to study hard [space] [space]
Output : 8

Question : 4

(asked in Wipro On Campus, VIT University, Aug, 2019)

Problem: First of all you need to input a whole sentence in the string, then you need to enter the target
word.
As an output you need to find the number of times that particular target word is repeated in the
sentence.

Test Cases :

Test Case : 1
Input : welcome world to the new world
world
Output : 2

Test Case : 2
Input : working hard and working smart both are different ways of working
working
Output : 3

Question : 5

(asked in Wipro On Campus, MIET Meerut, Aug, 2019)

Problem Statement

You are required to implement the following function:
Int SumNumberDivisible(int m, int n);

The function accepts 2 positive integer ‘m’ and ‘n’ as its arguments.
You are required to calculate the sum of numbers divisible both by 3 and 5, between ‘m’ and ‘n’ both inclusive and return the same.

Note
0 < m <= n

Example
Input:
m : 12
n : 50
Output   90

Explanation:
The numbers divisible by both 3 and 5, between 12 and 50 both inclusive are
{15, 30, 45} and their sum is 90.

Sample Input

m : 100
n : 160

Sample Output

510

Question : 6

(asked in Wipro On Campus, Galgotia University Noida, Aug, 2019)

Input
The first line of input consists of three space separated integers. Num, start and end representing the size of list [N], the starting value of the range and the ending value of the range respectively.
The second line of input consists N space separated integers representing the distances of the employee from the company.

Output
Print space separated integers representing the ID’s of the employee whose distance liew within the given range else return -1.

Example
Input
6 30 50
29 38 12 48 39 55

Output
1 3 4

Explanation :
There are 3 employees with id 1, 3, 4 whose distance from the office lies within the given range.

Question : 7

(asked in Wipro On Campus, IIIT Hyderabad, Aug, 2019)

Write a code for the following functions
Function 1 : sortArray
It’s function is to sort the passed array with a particular length, there are 2 parameters passed into it first is the length of array and next is the elements of list.
Function 2 : findMaxElement
It’s function is to get the 2 array with their own particular elements and length, and find the maximum element from both the array and print it.

Input
12
2 5 1 3 9 8 4 6 5 2 3 11
11
11 13 2 4 15 17 67 44 2 100 23

Output
100

Question 8

(asked in Wipro On Campus, HBTI Kanpur, Sep, 2019)

Problem: you are given a number, and you have to extract the key by finding the difference between the sum of the even and odd numbers of the input.

Test Case :

Input : 24319587

Output :  11

Explanation : odd terms : 3 + 1 + 9 + 5 + 7 = 25

                              even terms : 2 + 4 + 8 = 14

                              output : 11 (25-14)

Question 9

(asked in Wipro NLTH 2019)

Problem:  in this first line you are required to take the value of m and n as the number of rows and columns of matrix, then you are required to take the input elements of array.

As an output you are required to print the sum of each row then the row having the maximum sum.

Test Case :

Input : 3 3

               1 2 3

               4 5 6

               7 8 9

Output :  

               Row 1 : 6
               Row 2 : 15
               Row 3 : 24

               Row 3 is having the maximum sum : 24

Question 10

(asked in Wipro NLTH 2019)

Problem:  in this first line you are required to take the input that set the number of elements to be inserted, the next line takes the elements as input.

You are required to print the sum of maximum and minimum element of the list

Test Case :

Input : 6

               55 87 46 21 34 79

Output :  

               108 

Explanation : 

               21 + 87 = 108

Question 11

(asked in Wipro NLTH 2019)

Problem:  in this first line you are required to take the input of an integer number, and in the second line you are required to input the target element 

You are required to print the number of time target element occured in the integer

Test Case :

Input : 734139

               3

Output :  

               2 

Explanation : 

               3 occured 2 times in the integer.

Paid Material

TCS SMART VERBAL

Wipro NTH Coding  Question 1

TCS SMART VERBAL

Wipro NTH Coding  Question 2

TCS SMART VERBAL

Wipro NTH Coding  Question 3

Wipro NTH Coding Question 4

ibm english syllabus

Wipro NTH Coding Question 5

ibm english syllabus

Wipro NTH Coding Question 6

ibm verbal syllabus

Wipro NTH Coding Question 7

Wipro NTH Coding Question 8

ibm english syllabus

Wipro NTH Coding Question 9

ibm english syllabus

Wipro NTH Coding Question 10

ibm verbal syllabus

Wipro NTH Coding Question 11

Wipro NTH Coding Question 12

ibm english syllabus

Wipro NTH Coding Question 13

ibm english syllabus

Wipro NTH Coding Question 14

ibm verbal syllabus

Wipro NTH Coding Question 15

Wipro NTH Coding Question 16

Wipro NTH Coding Question 17

Wipro NTH Coding Question 18

ibm english questions and answers

Wipro NTH Coding Question 19

ibm english questions and answers

Wipro NTH Coding Question 20

Wipro NTH Coding Question 21

Wipro NTH Coding Question 22

ibm english questions and answers

Wipro NTH Coding Question 23

ibm english questions and answers

Wipro NTH Coding Question 24

TCS SMART VERBAL

Wipro NTH Coding  Question 25

TCS SMART VERBAL

Wipro NTH Coding  Question 26

TCS SMART VERBAL

Wipro NTH Coding  Question 27

Wipro NTH Coding Question 28

TCS SMART VERBAL

Wipro NTH Coding  Question 29

TCS SMART VERBAL

Wipro NTH Coding  Question 30

TCS SMART VERBAL

Wipro NTH Coding  Question 31

Wipro NTH Coding Question 32

Wipro NTH Coding Question 33

Wipro NTH Coding Question 34

ibm english questions and answers

Wipro NTH Coding Question 35

ibm english questions and answers

Wipro NTH Coding Question 36

ibm english syllabus

Wipro NTH Coding Question 37

ibm english syllabus

Wipro NTH Coding Question 38

ibm verbal syllabus

Wipro NTH Coding Question 39

Wipro NTH Coding Question 40

Get over 200+ course One Subscription

Courses like AI/ML, Cloud Computing, Ethical Hacking, C, C++, Java, Python, DSA (All Languages), Competitive Coding (All Languages), TCS, Infosys, Wipro, Amazon, DBMS, SQL and others

Checkout list of all the video courses in PrepInsta Prime Subscription

Checkout list of all the video courses in PrepInsta Prime Subscription

127 comments on “Wipro Elite NTH Coding Questions | PrepInsta”


  • NITISH KUMAR

    Code to question 3 will fail in some of the test cases:
    example: if string1 is: works work
    and string2 is :work
    then output will be 2 instead of 1.
    please correct the code accordingly.


  • parmeshwari

    Python code for
    [You are required to implement the following function:
    Int SumNumberDivisible(int m, int n);
    The function accepts 2 positive integer ‘m’ and ‘n’ as its arguments.
    You are required to calculate the sum of numbers divisible both by 3 and 5, between ‘m’ and ‘n’ both inclusive and return the same.]
    def IntSumNumberDivisible(m,n):
    sum1=0
    for i in range(m,n):
    if(i%3==0 and i%5==0):
    sum1=sum1+i
    else :
    continue
    print(“Sum=”,sum1)

    m=int(input(“Enter 1st no.”))
    n=int(input(“Enter the 2nd no.”))
    IntSumNumberDivisible(m,(n+1))


  • parmeshwari

    hii I am Parmeshwari the code for the question [First of all you need to input a whole sentence in the string, then you need to enter the target] using python
    sen=input(“Enter the sentence”)
    word=input(“Enter the word”)
    count=0
    l=sen.split(” “)
    print(l)
    for i in l:
    if i==word:
    count=count+1
    print(“no. of word in sentence(count):”,count)


  • parmeshwari

    Hello i am parmeshwari, i have the code for [count the number of the word present in sentence using python ]
    sen=input(“Enter the sentance”)
    if sen[0]==” “:
    c=0
    else:
    c=1
    for i in range(len(sen)):
    if sen[i]==” ” and sen[(i+1)]!=” ” :
    c+=1
    #continue
    else:
    #c=c+1
    continue
    print(“no. of word in sentence(count):”,c)


  • himanshu jain

    Java code for question number 1

    // starts

    import java.util.Scanner;

    public class MaxSumRow {
    public static void main(String args[] ) throws Exception {
    int i,j,sum=0,maxNum,maxNumRow=0;
    Scanner sc=new Scanner(System.in);

    int rows=sc.nextInt();
    int columns=sc.nextInt();

    int matrix[][]=new int[rows][columns];
    int sumArray[]=new int[rows];

    // taking inputs and calculating sum both together
    for(i=0;i<rows;i++){
    for(j=0;j<columns;j++){
    matrix[i][j]=sc.nextInt();
    sum+=matrix[i][j];
    }
    sumArray[i]=sum;
    sum=0;
    }
    maxNum=sumArray[0];
    // printing sum and calculating max both together
    for(i=0;i<rows;i++){
    System.out.println("Row "+(i+1)+" : "+sumArray[i]);

    if(maxNum<sumArray[i]){
    maxNum=sumArray[i];
    maxNumRow=i;
    }
    }

    System.out.println("Row "+(maxNumRow+1)+" is having the maximum sum : "+maxNum);
    }
    }


  • himanshu jain

    Java Code for question number:—-3
    i think this will helps to java community, and this works for all inputs! Java code for Count number of words
    // starts
    import java.util.Scanner;

    public class CountMatchedString {
    public static void main(String args[] ) throws Exception {
    int count=0;
    Scanner sc=new Scanner(System.in);
    String s1=sc.nextLine();
    String s2=sc.nextLine();
    String words[]=s1.split(” “);
    for (String s:words
    ) {
    if(s.equals(s2)) count++;
    else continue;
    }
    System.out.print(count);

    }
    }


  • himanshu jain

    Java Code for question number:—-2
    i think this will helps to java community, and this works for all inputs! Java code for Count number of words
    // starts
    import java.util.Scanner;

    public class CountMatchedString {
    public static void main(String args[] ) throws Exception {
    int count=0;
    Scanner sc=new Scanner(System.in);
    String s1=sc.nextLine();
    String s2=sc.nextLine();
    String words[]=s1.split(” “);
    for (String s:words
    ) {
    if(s.equals(s2)) count++;
    else continue;
    }
    System.out.print(count);

    }
    }


  • himanshu jain

    Java Code for question number:—-2
    i think this will helps to java community, and this works for all inputs! Java code for Count number of words
    // starts
    import java.util.Scanner; public class CountNumberOfWords {
    public static void main(String args[] ) throws Exception {
    int count=0; // counter
    Scanner sc=new Scanner(System.in);
    String temp=sc.nextLine(); String temp1=temp.trim(); // removes whitespaces from begin and end.
    String words[];
    words=temp1.split(” “); for (String s:words
    ) {
    if(s.equals(“”))continue;
    count++;
    } System.out.print(count);
    }
    }


  • himanshu jain

    Java Code for question number:—-2
    i think this will helps to java community, and this works for all inputs!

    Java code for Count number of words
    // starts
    import java.util.Scanner;

    public class CountNumberOfWords {
    public static void main(String args[] ) throws Exception {
    int count=0; // counter
    Scanner sc=new Scanner(System.in);
    String temp=sc.nextLine();

    String temp1=temp.trim(); // removes whitespaces from begin and end.
    String words[];
    words=temp1.split(” “);

    for (String s:words
    ) {
    if(s.equals(“”))continue;
    count++;
    }

    System.out.print(count);
    }
    }


  • Arpit Singla

    Code in Java For count the number of words in the Input String…
    ———————————————————————————————————
    import java.util.*;
    import java.io.*;

    public class NoOfWords
    {

    public int CountNoOfWordInString(String s)
    {
    int i,j;
    int count=1;
    char c,d;
    for(i=0;i<s.length()-1;i++)
    {
    c = s.charAt(i);
    d = s.charAt(i+1);
    if(c == ' ' && d!=' ')
    {
    count=count+1;
    }
    }
    return count;
    }
    public static void main(String[] args) {

    NoOfWords n1 = new NoOfWords();
    Scanner input = new Scanner(System.in);

    System.out.print("\n Enter any String here.."); // Enter any String value
    String s = input.nextLine();

    int no_of_word = n1.CountNoOfWordInString(s);
    System.out.print("\n No of Words are "+no_of_word);
    }
    }
    ———————————————————————————————————