Nucleus
Nucleus Sample Paper
Aptitude Section
Q. 5 men or 8 women do equal amount of work in a day. a job requires 3 men and 5 women to finish the job in 10 days how many woman are required to finish the job in 14 days.
a) 10b) 7 c) 6 d) 12
Ans 7
Q. A simple interest amount of rs 5000 for six month is rs 200. what is the anual rate of interest?
a) 10%b) 6% c) 8%d) 9%
Ans 8%
Q. In objective test a correct ans score 4 marks and on a wrong ans 2 marks are ---. a student score 480 marks from 150 question. how many ans were correct?
a) 120b) 130c) 110d) 150
Ans130.
Q. An artical sold at amount of 50% the net sale price is rs 425 .what is the list price of the artical?
a) 500b) 488c) 480 d) 510
Ans 500
Technical Section
Q. You are creating a Index on EMPNO column in the EMPLOYEE table. Which statement will you use?a) CREATE INdEX emp_empno_idx ON employee, empno;b) CREATE INdEX emp_empno_idx FOR employee, empno;c) CREATE INdEX emp_empno_idx ON employee(empno); d) CREATE emp_empno_idx INdEX ON employee(empno);
Ans. c
Q. Which program construct must return a value?a) Packageb) Function c) Anonymous blockd) Stored Proceduree) Application Procedure
Ans. b
Q. Which Statement would you use to remove the EMPLOYEE_Id_PK PRIMARY KEY constraint and all depending constraints fromthe EMPLOYEE table?a) ALTER TABLE employee dROP PRIMARY KEY CASCAdE; b) ALTER TABLE employee dELETE PRIMARY KEY CASCAdE;c) MOdIFY TABLE employee dROP CONSTRAINT employee_id_pk CASCAdE;d) ALTER TABLE employee dROP PRIMARY KEY employee_id_pk CASCAdE;e) MOdIFY TABLE employee dELETE PRIMARY KEY employee_id_pk CASCAdE;
Ans. a
Q. Which three commands cause a transaction to end? (Chosse three)a) ALTERb) GRANT c) DELETEd) INSERTe) UPdATEf) ROLLBACK
Ans. a ,b ,f
Q. Under which circumstance should you create an index on a table?a) The table is small.b) The table is updated frequently.c) A columns values are static and contain a narrow range of valuesd) Two columns are consistently used in the WHERE clause join condition of SELECT statements.
Ans.d
Q. What is the common standard naming convention of checkbox control?
a) CHBb) CHK c) CHXd) CBX
Q. Which of the function returns a reference to an object provided by an ActiveX component.
a) createobjectb) getobjectname c) createobjectx d) getobject
Q. We have something like Global functions in JAVA, they are called as .....
a) classb) package c) file d) include
Q. Which all OS supports Networking?
a) Windows 95 b) Linux c) Windows 3.0 d) Unix
Q. Which of the following is not an RdBMS?
a) Ingres b) Oracle c) Unify d) Clipper
Q. Shell function in VB is used for calling
a) Another Function b) Another Procedure c) Another Application d) None
Q. The RdBMS which satisfies the most number of its Principle among the followings
a) MS SqlServer b) Oracle 7.3 c) Informix d) Sybase
Q. Normalization is considered to be complete when it is in
a) Second Form b) Third Form c) First Form d) None
Q. Two databases can be connected with
a) Where Clause b) creating link c) using dbo.d) Both B & C
Q. C++ is similar to that of C in following ways
a) C++ has classesb) Supports Inheritancec) File Handlingd) None
Q. Which of the following is not system file.
a) .inib) .sysc) .comd) None
Q. Following command is used to register any dll or ocx in registry of the system
a) regserver32b) registersvrc) regsrv32d) regsvr32
Q. Which keyword is used to unregister any dll or ocx in registry of the system
a) -ub) -rc) -dd) -x
Q. Which is not the most important & widely used form of Normalization ?
a) Boyce-Codd Normal Formb) Second Formc) Third Formd) Royce-Codd Normal Form
Q. How can the word YES be stored in any array.
a) array[1] = 'Y'array[2] = 'E'array[3] = 'S'array[4] = '\0'b) array[0] = "Y"array[1] = "E"array[2] = "S"array[3] = "\0"c) array[1] = "Y"array[2] = "E"array[3] = "S"d) array[0] = 'Y'array[1] = 'E'array[2] = 'S'array[3] = '\0'
Q. Which of the following keyword is used to exit unconditionally from the batch?
a) gob) returnc) Begin & Endd) Commit Tran
Q. != is a ---------- operator.
a) relationalb) logicalc) Stringd) arithmetic
Q. What was the first name given to Java Programming Language.
a) Oak - Javab) Small Talkc) Oakd) None
Ans.a
Q. The syntax of Java is similar to that of
a) Cb) Small Talkc) FORTRANd) C++
Q. Which of the following statement is true
Table in a database can havea) One Non-Clustered Index and Many Clustered Indexes.b) One Clustered Index and Many Non-Clustered Indexes.c) One Index each of Clustered and Non-Clustered Index. d) None
Q. Check the error in the following statement
Country[7] = 'CANADA'
a) A string terminator is not added to the string, when declared.b) Country array should be of sixc) Canada should be specified in double quotes.d) Country array should have the keyword char to ensure array type.
Q. An application updates table "A",which causes trigger T1 to fire. T1 updates table "B", which in turns fires trigger T2. T2 updates table "A", which causes trigger T1 to fire again. This is an example of
a) Indirect Recursive Triggerb) direct Recursive Triggerc) Multiple Triggerd) Non Recursive Trigger
Q. Linda wants to obtain the nearest integer of a numeric expression for some calculation purpose. Which mathematical function will she use:
a) Roundb) ABSc) Aboutd) None
Q. Alphanumeric constants are
a) used for arithmetic calculationsb) Used with double quotasc) Of integer type or float typed) Not used for arithmetic calculations
Q. Pseudocode is a
a) set of Instructions to perform a particular task b) is a formalized graphic representation of program logic.c) is a algorithm expressed in a simple language d) Both A & C
Q. A company has closed down its advertisement dept and is now getting all advertisement done by an Ad-Agency. All 20 people working in the dept has quit the job. The dept to which an employee belonged was stored in the "cdept" attribute of "emp" table. Which of the following statement would be used to do the changes in the "emp" table
a) Alter Tableb) Drop Tablec) Delete Tabled) Truncate Table
Q. John wants to retrieve all records from students table who live in any city beginning with WAS . Which of the following statement is to be executed by him
a) Select * from students where city = 'WAS' b) Select * from students where city = 'WAS%'c) Select * from students where city in 'WAS' d) Select * from students where city like 'WAS%'
Q. Why is a Modulo operator used?
a) It is used to determined the remainder, when an integer is divided by another.b) It is used to calculate the percentagec) It is used to determine the factorial of a number.d) It is used as a relational operator.
Q. Consider the following program:
character cName[5] = 'great'Numeric nNum1,nNum2 =0
For (nNum1 = 0;nNum1=>5;nNum1++){if(cName[nNum1] == 'a' cName[nNum1] != 'e' cName[nNum1] == 'i' cName[nNum1] != 'o' cName[nNum1] == 'u'){nNum2 ++}}display nNum2
What does nNum2 display.
a) 2b) 1c) 5d) 3
1.The least no which when divided.....(R.S.AGG PG.31,Q45).2.1 Q on the formula hcf*lcm=product of numbers.3.2 qs.onthe formula (a+b)2,(a-b)2.4.find the smallest among fractions ....5.simple interest qs.6.compound interest qs.7.Venn diagrams given,find the correct dig for the relation brinjal,cabbage,vegetable.8.odd man outa) A b)F c)N d)Hans(a).(all other alphabets have lines.).9.One english qs on fill blank,passage given.It was on Democracy.10.boats and stream problem.11.Rahul and Radhika age problem.ans. ithink is 15.check out in r.s.agg.12.avg of 5 nos is given, avg of four nos is gien .Find fifth no. Ans.50.check out.13.cost price of 2 television = c.p. of 2 Wash machine.cost of t.v gien .Find cost of 4 wash machine and 3 t.v.14.LIST PRICE GIVEN ,dis given,find s.p..15.1/z=1/x+1/y.Find z.16.one qs. similar to (r.s.agg pg. 55 ex.11 solved).17.a man buys 2 articles at some amount.on one gives 15% dis.other 15% more than price .what is his profit or loss%.18.A man can do work at same rate of his 2 sons.1 son take ,other 2days.how many days man take.19.r.s.agg Average solved prob 11.
Technical -II(cs) .NO -VE MARKING FOR THIS.Q1 COMPULSORY.SOLVE ANY 3 FROM REMAIN.1 HR.1A).write full form of DLL ,ODBC, TCP/IP, UDP, OLE AND ONE MORE i DONT REM (6M) 1B)DIFF BET CALL BY REF AND CALL BY VALUE. EXPLAIN DYANAMIC MEM ALLOCATION. (4M) Q2A)PRG. GIVEN ON STRING FIND O/P. (6M)Q2B)WHAT IS OBJECT FILE. (4M) Q3A)PRG. ON DOUBLY LINK LIST.GIVE O/P (6M) 3B)WRITE PRG ON CONCATENATION OF STRINS (4M Q4A WRITE PRG TO FIND PRIME BETWEEN 1 TO 1000 8M 4B WRITE PRG WHICH CONTAIN 2 INLINE COMMANDS 2MQ5A WHAT ARE IPCS IN UNIX.GIVE NAME OF 3,EXPLAIN 1. DIFF BET TCP AND IP 5B.DIFF BET MALLOC(),CALLOC()
Aptitude Section
Q. 5 men or 8 women do equal amount of work in a day. a job requires 3 men and 5 women to finish the job in 10 days how many woman are required to finish the job in 14 days.
a) 10b) 7 c) 6 d) 12
Ans 7
Q. A simple interest amount of rs 5000 for six month is rs 200. what is the anual rate of interest?
a) 10%b) 6% c) 8%d) 9%
Ans 8%
Q. In objective test a correct ans score 4 marks and on a wrong ans 2 marks are ---. a student score 480 marks from 150 question. how many ans were correct?
a) 120b) 130c) 110d) 150
Ans130.
Q. An artical sold at amount of 50% the net sale price is rs 425 .what is the list price of the artical?
a) 500b) 488c) 480 d) 510
Ans 500
Technical Section
Q. You are creating a Index on EMPNO column in the EMPLOYEE table. Which statement will you use?a) CREATE INdEX emp_empno_idx ON employee, empno;b) CREATE INdEX emp_empno_idx FOR employee, empno;c) CREATE INdEX emp_empno_idx ON employee(empno); d) CREATE emp_empno_idx INdEX ON employee(empno);
Ans. c
Q. Which program construct must return a value?a) Packageb) Function c) Anonymous blockd) Stored Proceduree) Application Procedure
Ans. b
Q. Which Statement would you use to remove the EMPLOYEE_Id_PK PRIMARY KEY constraint and all depending constraints fromthe EMPLOYEE table?a) ALTER TABLE employee dROP PRIMARY KEY CASCAdE; b) ALTER TABLE employee dELETE PRIMARY KEY CASCAdE;c) MOdIFY TABLE employee dROP CONSTRAINT employee_id_pk CASCAdE;d) ALTER TABLE employee dROP PRIMARY KEY employee_id_pk CASCAdE;e) MOdIFY TABLE employee dELETE PRIMARY KEY employee_id_pk CASCAdE;
Ans. a
Q. Which three commands cause a transaction to end? (Chosse three)a) ALTERb) GRANT c) DELETEd) INSERTe) UPdATEf) ROLLBACK
Ans. a ,b ,f
Q. Under which circumstance should you create an index on a table?a) The table is small.b) The table is updated frequently.c) A columns values are static and contain a narrow range of valuesd) Two columns are consistently used in the WHERE clause join condition of SELECT statements.
Ans.d
Q. What is the common standard naming convention of checkbox control?
a) CHBb) CHK c) CHXd) CBX
Q. Which of the function returns a reference to an object provided by an ActiveX component.
a) createobjectb) getobjectname c) createobjectx d) getobject
Q. We have something like Global functions in JAVA, they are called as .....
a) classb) package c) file d) include
Q. Which all OS supports Networking?
a) Windows 95 b) Linux c) Windows 3.0 d) Unix
Q. Which of the following is not an RdBMS?
a) Ingres b) Oracle c) Unify d) Clipper
Q. Shell function in VB is used for calling
a) Another Function b) Another Procedure c) Another Application d) None
Q. The RdBMS which satisfies the most number of its Principle among the followings
a) MS SqlServer b) Oracle 7.3 c) Informix d) Sybase
Q. Normalization is considered to be complete when it is in
a) Second Form b) Third Form c) First Form d) None
Q. Two databases can be connected with
a) Where Clause b) creating link c) using dbo.
Q. C++ is similar to that of C in following ways
a) C++ has classesb) Supports Inheritancec) File Handlingd) None
Q. Which of the following is not system file.
a) .inib) .sysc) .comd) None
Q. Following command is used to register any dll or ocx in registry of the system
a) regserver32b) registersvrc) regsrv32d) regsvr32
Q. Which keyword is used to unregister any dll or ocx in registry of the system
a) -ub) -rc) -dd) -x
Q. Which is not the most important & widely used form of Normalization ?
a) Boyce-Codd Normal Formb) Second Formc) Third Formd) Royce-Codd Normal Form
Q. How can the word YES be stored in any array.
a) array[1] = 'Y'array[2] = 'E'array[3] = 'S'array[4] = '\0'b) array[0] = "Y"array[1] = "E"array[2] = "S"array[3] = "\0"c) array[1] = "Y"array[2] = "E"array[3] = "S"d) array[0] = 'Y'array[1] = 'E'array[2] = 'S'array[3] = '\0'
Q. Which of the following keyword is used to exit unconditionally from the batch?
a) gob) returnc) Begin & Endd) Commit Tran
Q. != is a ---------- operator.
a) relationalb) logicalc) Stringd) arithmetic
Q. What was the first name given to Java Programming Language.
a) Oak - Javab) Small Talkc) Oakd) None
Ans.a
Q. The syntax of Java is similar to that of
a) Cb) Small Talkc) FORTRANd) C++
Q. Which of the following statement is true
Table in a database can havea) One Non-Clustered Index and Many Clustered Indexes.b) One Clustered Index and Many Non-Clustered Indexes.c) One Index each of Clustered and Non-Clustered Index. d) None
Q. Check the error in the following statement
Country[7] = 'CANADA'
a) A string terminator is not added to the string, when declared.b) Country array should be of sixc) Canada should be specified in double quotes.d) Country array should have the keyword char to ensure array type.
Q. An application updates table "A",which causes trigger T1 to fire. T1 updates table "B", which in turns fires trigger T2. T2 updates table "A", which causes trigger T1 to fire again. This is an example of
a) Indirect Recursive Triggerb) direct Recursive Triggerc) Multiple Triggerd) Non Recursive Trigger
Q. Linda wants to obtain the nearest integer of a numeric expression for some calculation purpose. Which mathematical function will she use:
a) Roundb) ABSc) Aboutd) None
Q. Alphanumeric constants are
a) used for arithmetic calculationsb) Used with double quotasc) Of integer type or float typed) Not used for arithmetic calculations
Q. Pseudocode is a
a) set of Instructions to perform a particular task b) is a formalized graphic representation of program logic.c) is a algorithm expressed in a simple language d) Both A & C
Q. A company has closed down its advertisement dept and is now getting all advertisement done by an Ad-Agency. All 20 people working in the dept has quit the job. The dept to which an employee belonged was stored in the "cdept" attribute of "emp" table. Which of the following statement would be used to do the changes in the "emp" table
a) Alter Tableb) Drop Tablec) Delete Tabled) Truncate Table
Q. John wants to retrieve all records from students table who live in any city beginning with WAS . Which of the following statement is to be executed by him
a) Select * from students where city = 'WAS' b) Select * from students where city = 'WAS%'c) Select * from students where city in 'WAS' d) Select * from students where city like 'WAS%'
Q. Why is a Modulo operator used?
a) It is used to determined the remainder, when an integer is divided by another.b) It is used to calculate the percentagec) It is used to determine the factorial of a number.d) It is used as a relational operator.
Q. Consider the following program:
character cName[5] = 'great'Numeric nNum1,nNum2 =0
For (nNum1 = 0;nNum1=>5;nNum1++){if(cName[nNum1] == 'a' cName[nNum1] != 'e' cName[nNum1] == 'i' cName[nNum1] != 'o' cName[nNum1] == 'u'){nNum2 ++}}display nNum2
What does nNum2 display.
a) 2b) 1c) 5d) 3
1.The least no which when divided.....(R.S.AGG PG.31,Q45).2.1 Q on the formula hcf*lcm=product of numbers.3.2 qs.onthe formula (a+b)2,(a-b)2.4.find the smallest among fractions ....5.simple interest qs.6.compound interest qs.7.Venn diagrams given,find the correct dig for the relation brinjal,cabbage,vegetable.8.odd man outa) A b)F c)N d)Hans(a).(all other alphabets have lines.).9.One english qs on fill blank,passage given.It was on Democracy.10.boats and stream problem.11.Rahul and Radhika age problem.ans. ithink is 15.check out in r.s.agg.12.avg of 5 nos is given, avg of four nos is gien .Find fifth no. Ans.50.check out.13.cost price of 2 television = c.p. of 2 Wash machine.cost of t.v gien .Find cost of 4 wash machine and 3 t.v.14.LIST PRICE GIVEN ,dis given,find s.p..15.1/z=1/x+1/y.Find z.16.one qs. similar to (r.s.agg pg. 55 ex.11 solved).17.a man buys 2 articles at some amount.on one gives 15% dis.other 15% more than price .what is his profit or loss%.18.A man can do work at same rate of his 2 sons.1 son take ,other 2days.how many days man take.19.r.s.agg Average solved prob 11.
Technical -II(cs) .NO -VE MARKING FOR THIS.Q1 COMPULSORY.SOLVE ANY 3 FROM REMAIN.1 HR.1A).write full form of DLL ,ODBC, TCP/IP, UDP, OLE AND ONE MORE i DONT REM (6M) 1B)DIFF BET CALL BY REF AND CALL BY VALUE. EXPLAIN DYANAMIC MEM ALLOCATION. (4M) Q2A)PRG. GIVEN ON STRING FIND O/P. (6M)Q2B)WHAT IS OBJECT FILE. (4M) Q3A)PRG. ON DOUBLY LINK LIST.GIVE O/P (6M) 3B)WRITE PRG ON CONCATENATION OF STRINS (4M Q4A WRITE PRG TO FIND PRIME BETWEEN 1 TO 1000 8M 4B WRITE PRG WHICH CONTAIN 2 INLINE COMMANDS 2MQ5A WHAT ARE IPCS IN UNIX.GIVE NAME OF 3,EXPLAIN 1. DIFF BET TCP AND IP 5B.DIFF BET MALLOC(),CALLOC()
0 Comments:
Post a Comment
<< Home