Skip to main content

Wipro Off Campus Drive 2022


Overview: 

Elite National Talent Hunt 2022 (NTH) is our fresher’s hiring program to attract the best of 2022 engineering graduates across the country. We’re enabling equal employment opportunities for India’s deserving engineering talent and are looking for you! Are you an enthusiastic engineering student? Don’t miss this opportunity to start your exciting journey with Wipro. Register today!
Registrations starts: 23rd August’21
Registration ends: 20th September’21
Online assessment: 25th September’21- 27th September’21.


Eligibility Criteria:

  • B.E./B. Tech (Compulsory degree)/ M.E./M. Tech (5-year integrated course) full-time course recognized by the Central/State Government of India
  • All branches except Fashion Technology, Textile Engineering, Agriculture and Food technology
  • Year of passing: 2022
  • 60% or 6.0 CGPA or equivalent as per your university guidelines
  • Only fulltime courses: No part-time or correspondence or distance learning education in degree, 10th or 12th
  • 10th standard: 60% or above
  • 12th standard: 60% or above
  • Age limit: 25 years


Process:

Registration –> Online assessment –> Business discussion –> LOI -> Offer letter

Online Assessment (128 minutes) comprising of 3 sections:

    Aptitude Test: Logical Ability, Quantitative Ability , English (verbal) Ability. Duration: 48 mins

  • Written Communication Test: Essay writing. Duration: 20 mins
  • Online Programming Test: Two programs for coding. Duration: 60 mins
    Candidate can chose any one of these programming languages for the online programming test: Java, C, C++ or Python.

Last date to apply: 20th September ’21


Link to Apply:


Click below link to apply to this job👇
Job link ðŸ‘ˆ

Popular posts from this blog

Check whether a number is Seed of another number

 A number P is said to be the seed of another number Q if multiplying P with its digits equates to Q. Ex:-  123 is seed of 738 as    123 * 1 * 2 * 3 = 738  Java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 public class Seed{ public static void main (String[] args){ int num1 = 123 , num2 = 738 ; num1 = Math. min (num1,num2); num2 = Math. max (num1,num2); System. out . println (checkSeed(num1, num2)); } public static boolean checkSeed ( int num1, int num2){ int seed = num1; while (num1> 0 ){ seed = seed * (num1% 10 ); num1 = num1 / 10 ; } if (seed==num2) return true ; else return false ; } } Python def checkSeed(num1,num2): seed = num1 while num1 > 0 : seed = seed * (num1 % 10 ) num1 = num1 // 10 if seed == n

Program to sort the first half of an array in ascending and second half in descending order

Ex:-  [2, 4, 3, 10, 5, 8] [2, 4, 3]  and [10, 5, 8] ====>  [2, 3, 4] ascending                                                              [10, 8, 5] descending [ 2, 3, 4, 10, 8, 5] is the required answer.  Java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 public class ArraySort{ public static void main (String[] args){ int [] arr = { 2 , 4 , 3 , 10 , 5 , 8 }; //sorting first half in ascending order for ( int i= 0 ; i<(arr. length / 2 ); i++){ for ( int j=i+ 1 ; j<(arr. length / 2 ); j++){ if (arr[i]>arr[j]){ int temp = arr[i]; arr[i] = arr[j]; arr[j] = temp; } } } //sorting second half in descending order for ( int i=(arr. length / 2 ); i<arr. length ; i++){ for ( int j=i+ 1 ; j<arr. length ; j++)

Write a method to move hyphens to the left and characters to the right in a string

 Ex:-     code--heist--   ==>     ----codeheist Note:-  Return null or None if str is empty. Java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 public static String moveHyphens (String str) { if (str. length ()== 0 ) return null ; else { String result = "" ; for ( int i= 0 ; i<str. length (); i++){ char ch = str. charAt (i); if (ch== '-' ) result = ch + result; else result += ch; } return result; } } Python def moveHyphens (str): if len(str)== 0 : return None else : result = "" for char in str: if char== '-' : result = char + result; else : result += char return result