Open In App

Wipro Interview Experience | Set 13 (On Campus)

Last Updated : 23 Sep, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

Round 1: Online Test on AMCAT ASPIRING MINDS, it had various sections like verbal 20 questions in 15 min, logical reasoning 14 questions in 14 min, Quant Aptitude 16 questions in 16 min, Coding Round  2  easy questions 40  min (more than enough time to do them) and ESSAY  writing 20 min 400 words.
Q1.  WAP so that for a given input : 
 

N=3

Output should be : 
 

1112
3222
3334

 

CPP




#include <iostream>
using namespace std;
{
  int i=0,j;
  for(;i<N;)
   {
     if(i%2==0)
         {cout<<++i;
            for(j=1;j<=3;j++)
                 cout<<i-1;
          cout<<"\n";
         }
   else
     { for(j=1;j<=3;j++)
       cout<<i;
      cout<<++i<<"\n";
     }
 return 0;
}


Q2.  GCD OF AN ARRAY?
Round 2: Technical interview just a normal interaction with the interviewer and few basic technical questions based on the language written by you in your resume and questions on your projects. 
 

  1. Access specifiers
  2. final keyword
  3. static variable and static function
  4. singleton architecture
  5. classes and subclasses
  6. abstract class and interface
  7. inheritance
  8. polymorphism
  9. function overloading
  10. constructor overloading

Round 3: HR Round was very simple,  just believe in yourself and answer with confidence.
 
In my college, out of 400 approx students, 53 were selected finally placed in Wipro and luckily I was one of them.

 


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads