Wipro Placement Paper 2014 Part-1:



1) What is the output of the program given below

main()

{

signed char i=0;

for(;i>=0;i++) ;

printf("%d\n",i);

}


Explanation:

Notice the semicolon at the end of the for loop. THe initial value of the i is set to 0. The inner loop executes to increment the value from 0 to 127 (the positive range of char) and then it rotates to the negative value of -128. The condition in the for loop fails and so comes out of the for loop. It prints the current value of i that is -128.


2) In Ms-Dos what command you will use to display system date?
Explanation:
Ver command displays the version number of Dos. There is no command as Disk. Format command prepares a disk to be used with DOS. Thus Date is the command that lets you to display and/or change the system date.


3) What function should be used to free the memory allocated by calloc() ?
   
A . dealloc();
B . \(\displaystyle{malloc(variable_name, 0)}\)
C . free();
D . memalloc(variable_name, 0)


ANS: C


4)The difference between linear array and a record is

A . An array is suitable for homogeneous data but hte data items in a record may have different data type
B . In a record, there may not be a natural ordering in opposed to linear array.
C . A record form a hierarchical structure but a lienear array does not
D . All of above


ANS: D


5) Only file names and extensions are to be displayed in wide format, which command you’ll use?


Explanation:
Dir/w only displays the file names and extensions excluding file created date/time, file size. Second option dir a: will list the contents of A drive (floppy drive), third dir/s lists current directory and its subdirectories too, dir/b displays bare format, that means, it just makes a list of files, no more information

6) Which of the following is not the required condition for binary search algorithm?

A . The list must be sorted
B . There should be the direct access to the middle element in any sublist
C. There must be mechanism to delete and/or insert elements in list
D. none of above

ANS: C

7) Which one is the first layer of OSI Protocol

   
A. Physical Layer
   
B. Section Layer
   
C. Application Layer
   
D. Datalink Layer

ANS: A

8) If 20% of a = b, then b% of 20 is the same as:
   
A. 4% of a
   
B. 5% of a
   
C. 20% of a

D. None of these

ANS: A


9) A is thrice as good as workman as B and therefore is able to finish a job in 60 days less than B. Working together, they can do it in:

   
A. 20 days
   
B. 22(1/2) days
   
C. 25 days
   
D. 30 days

ANS: B


10) A is two years older than B who is twice as old as C. If the total of the ages of A, B and C be 27, the how old is B?
 

Explanation:
Let C's age be x years. Then, B's age = 2x years. A's age = (2x + 2) years. (2x + 2) + 2x + x = 27 5x = 25 x = 5. Hence, B's age = 2x = 10 years.


11) Here are some words translated from an artificial language. moolokarn means blue sky, wilkospadi means bicycle race, moolowilko means blue bicycle. Which word could mean "race car"?

Explanation:
From wilkospadi, you can determine that wilko means bicycle and spadi means race. Therefore, the first part of the word that means racecar should begin with spadi. That limits your choices to b and d. Choice b, spadiwilko, is incorrect because we have already determined that wilkomeans bicycle. Therefore, the answer must be" spadivolo".


12)Which of the following directories contain all the files created by a user, including his login directory ?
   

A. /tmp
   
B. /usr

C. /etc

D. /dev

ANS: B


13) Using ODL, you can define which of the following?

A . Attribute

B . Structure

C . Operation
   
D . All of the above


ANS: D


14)Which command is used to list out all the hidden files along with the other files ?


A . Is-1
   
B . Is-F
   
C . Is-x
   
D . Is-a

ANS: D



15)void main() { int i=5; printf("%d",i++ + ++i); }

A . Compiler error

B . 6

C . 5

D . Output Cannot be predicted exactly

ANS: D


16)What is the similarity between a structure, union and enumeration?
   
A . All of them let you define new values
   
B . All of them let you define new data types
   
C . All of them let you define new pointers
   
D . All of them let you define new structures

ANS: A


17)TCP/IP Protocol is ------------

A. connectionless
   
B. connection oriented

C. Both A& B

D. None

ANS: B


18)A pointer is

A. A keyword used to create variables
   
B. A variable that stores address of an instruction
   
C. A variable that stores address of other variable

D. All of the above

ANS: C


19) An ODBC, a file that can be shared among database users is called a
   

A. system data source.
   
B. file data source.

C. user data source.

D. SQL text file.

ANS: B


20) Which is the valid declarations within an interface definition?

   
A. public double methoda();
   
B. public final double methoda();
   
C. static void methoda(double d1);

D. protected void methoda(double d1);

ANS: A

Explanation:
Option A is correct. A public access modifier is acceptable. The method prototypes in an interface are all abstract by virtue of their declaration, and should not be declared abstract. Option B is wrong. The final modifier means that this method cannot be constructed in a subclass. A final method cannot be abstract. Option C is wrong. static is concerned with the class and not an instance. Option D is wrong. protected is not permitted when declaring a method of an interface. See information below. Member declarations in an interface disallow the use of some declaration modifiers; you cannot use transient, volatile, or synchronized in a member declaration in an interface. Also, you may not use the private and protected specifiers when declaring members of an interface.


21)
1. int -> 0
2. String -> "null"
3. Dog -> null
4. char -> '\u0000'
5. float -> 0.0f
boolean -> true Which four options describe the correct default values for array elements of the types indicated?


   
A. 1, 2, 3, 4
   
B. 1, 3, 4, 5
   
C. 2, 4, 5, 6

D. 3, 4, 5, 6

ANS: B


22) Which command displays comma for thousand separating on file size while listing

Explanation:
Using comma for separating thousand in file size is by default on. You can use dir/-c to remove comma from the listing. /C stands for comma.


23) How many buses are connected as part of the 8085 microprocessor?
   
A. 20
   
B. 3
   
C. 5
   
D. 8

ANS: B


24) If you need to duplicate the entire disk, which command will you use?
 

Explanation:
Diskcopy is used to perform track-by-track copy of a disk into another. Copy command copies selected files; chkdsk and format commands are not for copying purpose


25) A train 240 m long passes a pole in 24 seconds. How long will it take to pass a platform 650 m long?

   
A. 65 sec
   
B. 89 sec
   
C. 100 sec
   
D. 150 sec

ANS: B


26) Two students appeared at an examination. One of them secured 9 marks more than the other and his marks was 56% of the sum of their marks. The marks obtained by them are:
 

Explanation:
Let their marks be (x + 9) and x. Then, x + 9 = 56/100= (x+ 9+ x) =25(x + 9) = 14(2x + 9) =3x = 99 =x = 33 So, their marks are 42 and 33.


27)In the following the questions choose the word which best expresses the meaning of the given word. STRINGENT
   
A. Dry
   
B. Strained
   
C. Rigorous
   
D. Shrill

ANS: C

28)In the following the questions choose the word which best expresses the meaning of the given word.LAMENT
   
A.Complain
   
B.Comment
   
C.Condone
   
D.Console

ANS: A

29)In the following questions choose the word which is the exact OPPOSITE of the given words. HYPOCRITICAL
   
A. Gentle
   
B. Sincere
   
C. Amiable
   
D. Dependable


ANS: B

30)In the following questions choose the word which is the exact OPPOSITE of the given words. QUIESCENT
   
A. Active
   
B. Dormant
   
C. Weak
   
D. Unconcerned

ANS: A

 
Exam Name: Graduate Aptitude Test in Engineering (GATE) 2014

Website : www.gate.iitkgp.ac.in

Education :
Check Details

Experience : Freshers

Location : All India
 
Date of Examination :

On Saturdays and Sundays between 1st February 2014 and 2nd March 2014. The exact schedule will be given on the GATE 2014 website

Admission to post graduate programmes with MHRD and some other government scholarship/assistantship at engineering colleges/institutes in the country are open to those who qualify through GATE.

What is new in GATE 2014: Examinations for all the papers will be conducted in ONLINE mode only ( Computer Based Test )

Eligibility For Gate :
  • Bachelor’s degree holders in Engineering / Technology / Architecture / Pharmacy (Post-Diploma / Post-B.Sc / 4 years after 10+2) and those who are in the final year of such programs
  • Candidates in the final year of the Four-year Bachelors degree program in Science (Post-Diploma / 4 years of 10+2)
  • Master’s degree holders in any branch of Science / Mathematics / Statistics / Computer Applications or equivalent and those who are in final year of such programs
  • candidates in the second or higher year of the Four-year integrated Masters degree program (Post-B.Sc) in Engineering / Technology
  • candidates in the fourth or higher year of the Five-year integrated Masters degree program or Dual Degree program in Engineering / Technology
  • Candidates in the final year of Five-year integrated M.Sc. or Five year integrated B.S.- MS program
  • Candidates with qualifications obtained through examinations conducted by professional societies recognized by UPSC / AICTE (e.g. AMIE by EI(I), AMICE(I) by ICE(I)) as equivalent to B.E / B.Tech. Those who have completed section A or equivalent of such professional courses are also eligible
Application Fee :
  • Candidates have to apply only ONLINE :
  • Rs. 1500 for General/OBC male candidates
  • Rs. 750/- For Women Candidates
  • Rs. 1500/- For General / OBC other candidates
  • Rs. 750/- for the SC / ST / PD candidates
  1. The application fee can be paind either online or through a bank challan via SBI of Syndicate Bank
  2. The application fee is non-refundable.

Apply Details :

Application must be done ONLINE.

Important Dates:
  • GATE Online Application Processing System (website) Opens : Monday, 2nd Sep 2013 (00:01 Hrs)
  • Last date for Submission of Online Application (website closure) : Thursday, 3rd October 2013 (23:59 Hrs)
  • Last date for the receipt of printed version of ONLINE Application at the respective zonal GATE Office : Thursday, 10th October 2013
All Details 



November

Recruitment of Data Entry Operator in Jaipur Vidyut Vitran Nigam Ltd. (November 18) 
Central Teacher Eligibility Test (CTET) Nov., 2012 (November 18) 
SSC Junior Translators (CSOLS)/Junior Hindi Translator Exam., 2012 (November 18) 
National Talent Search Exam. for Class X (November 18)
Recruitment of Havildar Education in the Army Educational Corps in Group 'X' and 'Y' (November 25) 

December


Recruitment of Specialist Cadre Officers in State Bank Group (December 2)
Recruitment of Gramin Krishi Vistar Adhikari and Bhumi Sangrakshan Adhikari by M.P. Professional Examination Board, Bhopal (December 9) 
Direct Recruitment Test in Chhattisgarh High Court District Judge (Entry Level), 2012 (December 9)
Madhya Pradesh National Means-cum-Merit Scholarship Exam. (NMMSE) 2012-13 (December 9)
Jaipur Metro Rail Corporation Ltd. Station Controller/Train Operator Exam, (December 9)
Rashtriya Military School Common Entrance Test, 2012 (For Class VI) (December 16) 
Railway Recruitment Boards Technician/Signal and Other Technician Grade III Exam., 2012  (December 16)
Rashtriya Military College Common Entrance Test, 2012 (For Class IX) (December 23)
CSIR-UGC Combined Exam. for JRF and Lectureship December 2012 (December 23)
Jaipur Metro Rail Corporation Ltd. Junior Engineer and Customer Relation Assistant Exam (December 23)
Madhya Pradesh High Court English Stenographer (Pre.) Exam. (December 23) (Closing Date : 23 Nov., 2012)
CWE for Recruitment in Clerical Cadre in Public Sector Banks (December) 

2013 January
Combined Recruitment for Assistant Grade III in General, Depot, Technical and Account Cadres in the FCI, 2013 (Paper II and III) (January 6)
Recruitment of Commercial Assistants (I & II) in Jaipur Vidyut Nigam Ltd. (January 6)
UPSC Special Class Railway Apprentices Exam., 2013 (January 20) (Closing Date : 12 Nov., 2012)
Uttar Pradesh Sainik School, Lucknow Entrance Exam., 2013-14 (January 20) (Closing Date : 12 Nov., 2012)
Jawahar Navodaya Vidyalaya Entrance Exam., 2013 (Class VI) (February 10)
Madhya Pradesh PSC State Services (Pre.) Exam., 2012 (February 24) 
National Talent Search Exam. for Class X (Second Stage-National Level) (May 12)

Categories

Unordered List

Sample Text

Popular Posts

Recent Posts

Text Widget