23rd September 2012 06:10 PM | ||
Unregistered |
Re: Information about the written test of Wipro? hi sir, why u not conduncting return test in on campus, throughout career 75% candidate,.,this procedure not correct way sir.,. becoz u will check the student logical thinking sir, so marks are not importent sir.,. |
|
31st January 2012 10:25 PM | ||
rkexam |
Re: Information about the written test of Wipro? Quote:
In written test 3 sections 1 Quantitative /analytical reasoning (20 questions) 2 Verbal ability (20 questions) 3 Technical section (10questions) No of questions-50 Time limit -60 Minutes Sectional cut-off Wipro placement Paper Pattern Quantitative /analytical reasoning Average, Time and work, Time and distance, Train, Number series Clocks and Calendars Blood Relationship Logical deductions, Seating arrangement Partnership Theme detection Coding and decoding Probabality Data interpreataion Verbal ability Sentence correction Synonym Antonym Choosing correct alternative Idiomatic expression Odd man out Choosing correct phrase One word substitute Arranging a word- Punctuation marks Fill in the blanks Technical Questions C,C++ UNIX,DBMS<CN,JAVA,LINUX Optical fibre OS,Data structures.SQL Micro processors etc., HR Interview Introduce yourself Favourite subject, Your project Why wipro How do you rate me as an interviewer ? Always remember you will be judged on the following criteria * Self confidence * Grasp on branch subject * Grasp on language (C, C++, JAVA etc) * Presence of mind * Eye contact (With HR) |
|
29th January 2012 08:46 PM | ||
pops07 |
Re: Information about the written test of Wipro? Quote:
There are generally 3 selection process in WIPRO on campus:- 1. APTITUDE TEST 2. TECHNICAL INTERVIEW 3. HR INTERVIEW ABOUT APTITUDE TEST:- Total no of question: 50 Marks: 50 (each question carrying 1 marks ) Time duration: 60 mins Section: 1) VERBAL (20 QUESTION) 2) QUANTITATIVE (20 QUESTION) 3) TECHNICAL (10 QUESTION) There was sectional cut-off , question paper was not very much tough. There was no negative marking. VERBAL:- U hav to practice it frm R S AGARWAL verbal & non verbal book & GRE barons. I guessed the unknown answer. Synonyms, Antonyms, fill in the blanks, sentence completion, punctuation, idioms, voice change, jumbled words, analogies. U hav to practice it. Similar meaning of MAJESTIC. QUANTITATIVE:- This portion was most easiest portion. If u practice it frm R S AGARWAL- quantitative apti book then u can find most of them r same type. Problem on ages, permutation, combination, train, work & time, mixture & allegation, simple & compound interest, probability, pipes & cistern, speed, problem on series(A.P., G.P.), profit & loss etc r important for WIPRO. TECHNICAL:- U hav to brush up ur C, C++, OS, Data structure thoroughly. ECE guys also will give their importance on digital electronics & microprocessor. |
|
29th January 2012 08:39 PM | ||
adlsm |
Re: Information about the written test of Wipro? Written test includes 4 sections • Quantitative Aptitude • Logical Reasoning • English • Technical Total time span for the test is 1 hour. |
|
29th January 2012 12:16 PM | ||
mani_baban |
Re: Information about the written test of Wipro? WRITTEN TEST PATTERN OF WIPRO Written test includes 4 sections • Quantitative Aptitude • Logical Reasoning • English • Technical Total time span for the test is 1 hour. Written test is followed by technical interview and personal interview. GOOD LUCK With Regards, |
|
28th January 2012 07:38 PM | ||
GUNDA DIVYA |
Re: Information about the written test of Wipro? Quote:
Wipro is one of the MNC software company. Written exam pattern paper of Wipro or any MNC consists of three sections as follows: 1)Verbal part 2)Logical reasoning 3)techinical part. verbal part is related to English such as synonyms,antonyms...etc Logical part consists of topics such as probability permutations numbers systems simple interest.etc In technical part you have C,C++,JAVA..etc All the best....... |
|
15th January 2012 01:53 PM | ||
anlakshmi |
Re: Information about the written test of Wipro? Written Test Pattern of Wipro: The written test contains quantitative aptitude, reasoning, English language. And I have attached here some previous papers of Wipro. You can observe these papers what type of questions they asked. For appearing Wipro Placement Test, you need atleast 60% marks throughout your academic career. |
|
15th January 2012 10:31 AM | ||
mobeshpal |
Re: Information about the written test of Wipro? Hi Dear Written test for Wipro:- *Candidate pass degree in CS/IT stream *Candidate give one career 60% or 50% Here i will attach some question papers of Wipro:- |
|
15th January 2012 08:22 AM | ||
nitz90 |
Re: Information about the written test of Wipro? Quote:
Past Papers of WIPRO Written Exam I have attached some of the previous year papers of Wipro Recruitment Exam along with this post.. Just go through them and i hope they will help you out in your preparations.. Also go through the interview experience shared by various candidates.. Observe the pattern and the level of the questions asked in these papers.. For appearing in the WIPRO Campus Placement Exam..you need to have at least 60% in 10th,12th and B.Tech up till the 6th semester.. all the best.. ![]() With Warm Regards Nitz |
|
16th October 2011 04:53 PM | ||
Unregistered |
Re: Information about the written test of Wipro? What is actual date of written test which published on the fresher world and the last date is 12oct.2011 for filling the application form.please tell me the date of written test? |
|
23rd September 2011 05:14 PM | ||
Unregistered |
Re: Information about the written test of Wipro? very useful |
|
21st September 2011 09:42 PM | ||
nagamalleswararaoyaramasu |
Re: Information about the written test of Wipro? WRITTEN TEST PATTERN OF WIPRO Written test includes 4 sections • Quantitative Aptitude • Logical Reasoning • English • Technical Total time span for the test is 1 hour. Written test is followed by technical interview and personal interview. 1. Given the following statement enum day = { jan = 1 ,feb=4, april, may} What is the value of may? (a) 4 (b) 5 (c) 6 (d) 11 (e) None of the above 2. Find the output for the following C program main {int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x); 3. Find the output for the following C program fn f(x) { if(x<=0) > return; else f(x-1)+x; } 4. Find the output for the following C program i=20,k=0; for(j=1;j {k+=j<10?4:3;> } printf("%d", k); Ans. k=4 5. Find the output for the following C program int i =10 main() {int i =20,n; for(n=0;n<=i ![]() i++; } printf("%d", i); Ans. i=20 6. Find the output for the following C program int x=5; y= x&y 7.Find the output for the following C program Y=10; if( Y++>9 && Y++!=10 && Y++>10) {printf("%d", Y); else printf("%d", Y); } Ans. 13 8. Find the output for the following C program f=(x>y)?x:y a) f points to max of x and y b) f points to min of x and y c)error Ans. (a) 9. What is the sizeof(long int) (a) 4 bytes (b) 2 bytes (c) compiler dependent (d) 8 bytes 10. Which of the function operator cannot be over loaded (a) <= > (b) ?: (c) == (d) * good luck regards nagamalleswararao |
|
21st September 2011 09:41 PM | ||
nagamalleswararaoyaramasu |
Re: Information about the written test of Wipro? WRITTEN TEST PATTERN OF WIPRO Written test includes 4 sections • Quantitative Aptitude • Logical Reasoning • English • Technical Total time span for the test is 1 hour. Written test is followed by technical interview and personal interview. 1. Given the following statement enum day = { jan = 1 ,feb=4, april, may} What is the value of may? (a) 4 (b) 5 (c) 6 (d) 11 (e) None of the above 2. Find the output for the following C program main {int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x); 3. Find the output for the following C program fn f(x) { if(x<=0) > return; else f(x-1)+x; } 4. Find the output for the following C program i=20,k=0; for(j=1;j {k+=j<10?4:3;> } printf("%d", k); Ans. k=4 5. Find the output for the following C program int i =10 main() {int i =20,n; for(n=0;n<=i ![]() i++; } printf("%d", i); Ans. i=20 6. Find the output for the following C program int x=5; y= x&y 7.Find the output for the following C program Y=10; if( Y++>9 && Y++!=10 && Y++>10) {printf("%d", Y); else printf("%d", Y); } Ans. 13 8. Find the output for the following C program f=(x>y)?x:y a) f points to max of x and y b) f points to min of x and y c)error Ans. (a) 9. What is the sizeof(long int) (a) 4 bytes (b) 2 bytes (c) compiler dependent (d) 8 bytes 10. Which of the function operator cannot be over loaded (a) <= > (b) ?: (c) == (d) * good luck regards nagamalleswararao |
|
20th September 2011 09:48 PM | ||
Unregistered |
Re: Information about the written test of Wipro? is there any group discussion or debate inwipro |
|
25th August 2011 09:22 AM | ||
Mannu2525 |
Re: Information about the written test of Wipro? WRITTEN TEST PATTERN OF WIPRO Written test includes 4 sections
• Quantitative Aptitude • Logical Reasoning • English • Technical Total time span for the test is 1 hour. Written test is followed by technical interview and personal interview. GOOD LUCK With Regards, ~Manvendra~ |
|
31st December 2010 07:26 PM | ||
anshita sen |
Information about the written test of Wipro? please tell about the writtn test of wipro held on 17th dec at sjbit. wht was thr in the paper , type of question........... |