Go Back   2022-2023 StudyChaCha > StudyChaCha Discussion Forum > General Topics

  #2  
Old March 29th, 2014, 11:24 AM
Sashwat's Avatar
Super Moderator
 
Join Date: Jun 2011
Default Re: Oracle Placement Papers

Preparing for the aptitude tests of the major software companies is really not very tough.

In the ORACLE exam there are four levels of testing a candidate.
Aptitude Test
Group Discussion
Technical Round
HR round

Sample Questions:


How do you set your mental co-ordinates vis a vis the external
variables if everything changes so fast ?
B. Modern life is about managing the prices and consequences of changes
C. That is creating a problem
D. The pace of the changing process seems to be getting quicker overtime

1. ABDC 2.DCAB 3.BDCA 4.BCDA

Directions for questions 7 to 9 :Each question consists of a sentence ,part
of which is underlined .Choose the option that best replaces the underlined
part

7) Nearly everyone know that exercise has numerous health benefits for people of all ages and physical conditions .

1. Nearly everyone know that exercise has numerous .
2. Nearly everyone knows that exercise has numerous
3. Everyone nearly knows that exercise having numerous
4. Everyone nearly have know that exercise has numerous

The researchers hope to study a large patient group to investigate the
effect further and finding out how long the effects last

1. finding out
2. to find out
3. for finding
4. to finding

Having failed to work out a viable marriage with the BSP twice in the
past ,another hasty alliance shouldn't have been entered into by the BJP

1. another hasty alliance shouldn't have been entered into by the BJP
2. a hasty alliance should have been avoided by the BJP
3. the BJP's entering into hasty alliance shouldn't have been done by them.
4. the BJP should not have entered into a hasty alliance

Questions that remembered are,
Difference between Vector and ArrayList?
What is controller in your project?
How will u authentication a user?
Some servlet calls JSP and in JSP will initialize a servlet this way
Servlet1 s=new Servlet1();
s.doPost(request,response);
and this in turn calls a jsp and this JSP calls another Servlet what will be the output?
Any 2 errors and exceptions?
Difference between SAX and DOM?
Have u ever used . How to include an xslt in another xslt ?
How will u get connection in ur project?
Which loads driver classloader or JVM?
Difference between Statement and PreparedStatement?
ResultSet points to which location by default?
What is ResultSetMetaData?
Types of Drivers in JDBC?
Difference between 3rd and 4th type java?
What is class?what is object?
What is object ? what is instance? What is the difference between object and instance?
What is encapsulation?
What is polymorphism? Types of polymorphism ? how will u achieve all types of polymorphism?
What is the difference between vector and Array?
What is the difference between HashTable and HashMap?
Are servlets and JSP's threadsafe ? how can u make them threadsafe?
What is multithreading? What Is synchronized?
How can u stop a thread?
Is stop()=sleep()
How to kill a thread?
Describe the design of ur project as MVC ? Methodologies? Flow of ur project?
How will u make transactions with creditcard? Ie will u deduct money from the card
Immediately after making transaction?
How will u insert and delete with a single java connection when u have referential integrity?
What is serialization? Any methods in serialization? What is externalization?
How will u achieve threads?
How will u set priorities of threads?


These r all the basic questions generally u will face at the round which is easy to get through.

Coming to the second round where u have to thorough with ur current project and interviewer will go deep into the concepts that u r using in ur project...

some of them which i remembered..

How to implement connection pooling by ourself?
Will service all doget , dopost or the reverse?
How can u implement cocoon on ur own?
How can u implement hashmap if u r not having it in java?
What is the difference between static binding and dynamic binding?

below r u some questions generally we will face at the interview...

What is synchronization? Why is it used? What are its disadvantages?

How will u enforce synchronization?
How will u declare a synchronized block? What does this represent in the
Declaration of synchronized block?

Can u assign an instance of a class which implements an interface to an interface type?

What is servlet chaining?

Describe the life cycle of servlet starting from the request from a browser to the response it get?

If service method is used then doGet() and doPost() stand for what?

If we can access a sevlet through both GET and POST methods then which methods will u declare in
The sevlet class?

What is dynamic binding?Can u explain with an example?

Can u read all elements from an array?

If aaaa is an array then why aaaa.length why not aaaa.length()?

Is array an object?

Class A{

Public void meth(){
}
}

class B extends A{
Public void meth(){

}
public static void main(String args[]){
A a=new A();
a.meth();//which method will this call
}
}

if u want to call a method of class B then how can u achieve this?

What is static variable? What is static method?
Can u call a static method on a class object,can u access
Static variables through class objects?

What is the diffrenence between AWT and Swing?

How will u add a button to a frame?

Cant we add a component directly to a frame? Why?

What are the different types of panes available?
What are the uses of different types of panes?

What is a layered pane?

What is event delegation model?describe it with an example?

Public void Methos(){
Int I;

Int a[]=new int[10];
S.O.P(i);

For(int k=0;k S.O.P(a[ k]);
}
What will be the output of this method

What is the difference between getActionCommand()
And getSource() on event object?

If u have a table with columns empid,empname,salary,
Write a query to get maximum 5 salary drawing employees?

What is a tier? What is the difference between tier and system or computer?

What do u mean by portability?

What do u mean by platform independence?

Completely view of MVC and n tier architecture and differences?

What is the difference between JradioButton and Jradiobuttongroup.

If u add 2 Jradiobuttons to a panel and check the first one and then the second one
Then which one will be selected

What are the methods of authorization in jsp or servlets?

What is webapplication?

What are the various methods of declaring a TLD in a taglib directive in jsp?

What is TLD?

Implicit objects of jsp are available in destroy() method or not?

What is translation unit in jsp?

What is context in webapplication?

What are multiple and single processor servers? How session is handled
When the server is multi processor server?

If server crashes the threads will continue running or will they stop?
what happens to the sevlet?

Explain MVC pattern by taking any one component ex JtextField or Jbutton?

What is GridBagLayout?

If we want to change the entire path of the server ,where should we touch in a application server?

If we have 3 jsp's as model.jsp, controller.jsp, view.jsp then will it be a MVC architecture?

What is a classloader?

What is dynamic typing, static typing ?

Is java dynamic typed language?

What are the types of sevlet containers?

What is web.xml?

What is pooling of sevlets?

If we have two abstract classes A,B then can we extend both the classes in a single class?

What are the different types of thread priorities?

What is SAX?

What is the difference between SAX and DOM?

What is the difference between RequestDispatcher.forward(request req,response res)
And response.sencRedirect("url");?

What are implicit objects in jsp?

Why cocoon ?why not struts?what is cocoon?

How are u implementing session in ur application?

What is serialization? What are the methods in implementing serialization?

If u have a single table in database how to normalize it?

Is servlet thread safe ? life cycle of JSp?

What is the difference between checked exception an runtime exception?

Interrupt() method throws which exception?

Why jsp is used if we have sevlets>

Difference between a String and Stirng Buffer?

How to increment the capacity of a StringBuffer?

If String S="x";
S+"y";
Then what is S?

How can u set the priorities of thread ? What are the priorities available?

Difference between Vector and ArrayList other than Synchronization?

Which JDBC dirver are u using?

What are the drivers available?

What do u mean by precompiled statement? What is the difference between
Statement and PreparedStatement?

Difference between HashMap and HashTable?

What is context?

Difference between application server and webserver ?

Can we have a try without catch and with a finally?
What is the use of having finally?

If there is try{
Return x;
}finally{
S.O.P("Yes");
}

then finally will execute or not

what is the superclass of an exception?

Is sevlet threadsafe?

What is synchronization?

Sleep() throws which exception?

This is the oracle paper

Technical section:

its very easy any one can answer 25 qns without preperation. some are
1. how compiler treats variables of recursive functions
2. what is orthogonal matrix?
3. given two tables and asked 2 qns on those table ,
one is on join and another is on NOT IN
4. given some qns on pointers( pretty easy)
5. given five qns on data structures like , lifo, fifo
6. qtn on primary key
7. how NULL in sql is treated?
8. given a doubly linked list and asked r->left->right->data
ans: r->data
9:explain const char *ptr and char *const ptr
remaining i didn`t remember

Directions for questions 1-3:Each question consists of six statements
followed by 3 statements put together in a specific order .Choose the option
where the third statement is a conclusion drawn from the previous 2
statements.

1) A. Final Year students would like a good career.

B. All final year students are eligible as candidates for MBA entrance
exam.
C.Final Year students are entitled to work towards a good career.
D.Some of those who are candidates for an MBA entrance exam are final
year students
E.All those eligible as candidates for an MBA exam are eligible for a
good career
F.All those who would like a good career are entitled to it.

1. AEF 2. EBC 3.BCF 4.CDF

2) A. All bright people acknowledge brains in others
B. Some knowledgeable men are bright
C. Some knowledgeable men do not acknowledge brains in others
D.Some knowledgeable men are persons who are bright
E.Some knowledgeable men are not bright
F.All bright people do not necessarily acknowledge brains in others

1. ABE 2. ACF 3.ADE 4. ACE

3) A.Some thoughts lack clarity
B.Anything unclear is not worth writing about
C.Some thoughts are worth writing about
D.All thoughts lack clarity
E.Some thoughts are clear
F. No thought is worth is writing about

1. ABF 2.BCD 3.BEF 4.BDF

Directions for questions 4 to 6:Arrange the sentences A,B,C,D in a logical
sequence to form a coherent paragraph.

4) A. How do you set your mental co-ordinates vis a vis the external
variables if every-
thing changes so fast ?
B. Modern life is about managing the prices and consequences of changes
C. That is creating a problem
D. The pace of the changing process seems to be getting quicker overtime

1. ABDC 2.DCAB 3.BDCA 4.BCDA

5) A. Infact trying to calculate an element of chance
B. The rather fanciful idea of Lady Luck favouring her own can be traced
back to
Pagan times when lucky gamblers were thought to be the beloved of
the goddess of
Good fortune
C.Risks were taken in order to gain her approval ,and one of these risks
was trying to
Guess what would happen -for example ,which way a leaf would fall
,which way a
Frog would jump
D.She was seen as being capricious and prone ,occasionally ,to mockery

1. BCAD 2.BDCA 3.BADC 4.BDAC

6) A.It is because Japanese companies do not have to pay the consultancies'
inflated fees
the argument goes ,that companies have more money to devote to
'real' investment
and because they are not tempted to follow the latest management
fashions that they
can develop a coherent ,long term strategy.
B.The average salary man,relaxing after a ten hour day over yakitori
and sake ,hardly
Spends his time talking about Drucker -san and Peter-san .
C.It might seem far fetched to argue that Japan's post war growth has
anything to do
With management theory.
D.Critics of management theory happily point out that thirty years after
arriving ,
Western consultancies are still to make ends meet ,and that Japan
has few business
Schools ,none of them very prestigious.

1. CADB 2. CBDA 3. DBAC 4. DBCA



Directions for questions 7 to 9 :Each question consists of a sentence ,part
of which is underlined .Choose the option that best replaces the underlined
part

7) Nearly everyone know that exercise has numerous health benefits for
people of all ag-
es and physical conditions .

1. Nearly everyone know that exercise has numerous .
2. Nearly everyone knows that exercise has numerous
3. Everyone nearly knows that exercise having numerous
4. Everyone nearly have know that exercise has numerous

8) The researchers hope to study a large patient group to investigate the
effect further and
finding out how long the effects last

1. finding out
2. to find out
3. for finding
4. to finding

9) Having failed to work out a viable marriage with the BSP twice in the
past ,another
hasty alliance shouldn't have been entered into by the BJP

1. another hasty alliance shouldn't have been entered into by the BJP
2. a hasty alliance should have been avoided by the BJP

3. the BJP's entering into hasty alliance shouldn't have been done by them.
4. the BJP should not have entered into a hasty alliance

Directions for questions 10 to 12: Choose the word that is least related to
the question word.

10) Mighty
1. puny 2. colossal 3.prodigious
4.towering

11) Ordeal
1. tribulation 2. copious 3. .affliction
4.torment

12) Pen
1. enclosure 2.corral 3. coop 5.nib



Direction for questions 13 to 15:Read of the following short passages and
answer the question that follows

13) The Mahauti tribe that inhabited the Himayalan region had a personal
relationship with their deities .This gave support and protection to the
tribe most of whom were hunters ; the support might otherwise be lacking
.The absence of each support left tye individual weak and vulnerable .So
,important was this spititual relation that when the tribes lost their
beliefs in the spirit ,their culture disintegrated.

The passage suggests that a primary motivation for members of hunting
cultures to seek firm bonds with the spirit world was the

1. ambition to be better at huntung than others
2. wish to secure an afterlife
3. need for cpmfort in times of sorrow
4. desire to obtain and maintain skill and strength

14) Cosmetologists trying to make ultimate hair care product have found that
when the did not treat hair with a quaternary compound,on combing ,the
combing force remained high This happened even when the electrostatic charge
was substantially reduced by high humidity.

It can be inferred from the above that ,the cosmetologist did which of the
following to reduce the electrostatic charge generated when hair not treated
with a quaternary compound was combed ?

1. decreased the combing speed
2. increased humidity
3. tangled the hair
4. dried the hair.

15) No thorough consideration of the metropolis can overlook either its
social organization or its governmental institutions .The informal means of
social control that once regulated communal affairs of settlement have given
way to the more formal methods of modern society .As metropolitan grew more
complex governmental organizations have evolved as instruments of control
and direction

Which of the followinf situations in a city is most clearly an example of
the developments described in the passage ?

1. City officials no longer control the allocation of water rights :instead
state governments distribute water rights
2. Delinquent children are not verbally chastised by community elders
:instead ,they are brought before a court of law
3. The local government has retained its autonomy thereby preventing central
governments from providing solutions for population problem
4. Community cohesion has decreased ,leading to a sense of isolation on the
part of city residents.

Questions 16 and 17 are based on the following

a/b = (a+b)/(a-b)
a*b = (a+b)(a-b)
a@b = a/b - b/a (implies subtracting the smaller of the two from the other
one )
a#b = a/b + b/a

16) Find (((a@b) + (a#b)) * 1)/ 1, where a=5.91 and b= 17.73

1. 35 2. 18/17 3.17/18
4.None of these

17) State which of the following is/are true
I. 7@(a*b) is undefined if a = b
II. [(a/b)/1 * [(b/a)/1. = (a@b) x (a#b)

1.I only 2. II only 3. Both I and II
4. Neither I or II



18) What is the maximum area that can be enclosed by a wire 44cm long ?

1. 77 2. 154 3. 308 4.None of
these

19) If A(2,3) ,B(-2,-3) and C(1,2) are three vertices of a triangle ,which
among the following is the largest angle ?

1. ABC 2. BCA 3. CAB 4. All three angles
are equal
20) f(x) = 2(x*x) +1 when x<0
= -2x when x>=0
What is f(f(f(2))) ?

1. 66 2. -33 3. 33
4. None of these

21) One sells 30 kg rice with cost Rs.22.87/kg at 20% profit and 50kg rice
with cost price Rs 20.92/kg at 30% profit .What is the total percentage
profit ?

1. 26.25% 2. 24.72% 3. 26.5% 4. 28%

22) Ravi buys 100 5% shares of face value Rs.100 at Rs.15000 .If he sells
them off after a year at Rs 155 a share ,what is his yield ?

1. 8.33% 2. 6.67% 3. 5% 4. 3.33%

23) Amit and Meghna went to New York for a 63 day holiday .Each day ,Amit
spent as many as hundred dollar bills as the remaining number of days in the
trip (excluding the current day ) ,and Meghna spent as many as hundred
dollar bills as the number of days already spent (including current day).
How much per day would they have spent together during the holiday ?

1. $12,600 2. $10000 3. $6300 4. $5000

24) Bacteria reproduce in such a manner that every hour their number
doubles In a controlled experiment that started with a certain number of
bacteria in a jar at 12noon on Tuesday ,30 million were found at 12noon on
Wednesday .At what time were there 15 million bacteria ?

1. Midnight ,Tuesday
2. 6a.m on Wednesday
3. 10 a.m Wednesday
4. None of these

25) Take a number 'x' and follow these steps :
1. Find the sum of its digit
2. If the sum has only one digit , STOP
3. Else , go back to step 1 with the new number.
If x = 1684 ,what is the end result ?

1. 19 2. 10 3. 1
4. None of these

26) A number consisting of five digits 5,6,7,8 and 9 each coming once but
not necessarily in that order is taken ,and an algorithm specified in the
previous question is run on it .How many different end results are possible
?

1. One 2.Three 3.Five
4. Nine

Directions for questions 27 and 28 :Each question is followed by two
statements A and B. Mark
1. If statement A alone is sufficient to answer the question
2. If statement B alone is sufficient to answer the question
3. If both statements A and B are required to answer the question
4. If neither A or B are sufficient to answer the question

27) What is the height of the tower ?
A. A man standing at a distance of 1km from the bottom of the tower
makes an angle
300 degrees with the top of the tower .
B. An insect starts from the bottom of the tower and reaches the top in
25sec.

28) Distance between A and B is
A. A and B two points on the circumference of the circle with center O and
radius 5.2 cm
B. Angle AOB = 450

Additional instructions for questions 29 and 30:

For any activity , X, year Ao dominates year Bo if organized retail business
in activity X in year Ao is greater than organized retails business in
activity X is year Bo .For any two activities in the organized retail
business ,A and B ,year Xo dominates year Yo if
a. The organized retail business in activity A ,in the year Xo is greater
than equal to the organized retail business activity A in the year Yo: and
b. The organized retail business in activity B ,in the year Yo is less than
or equal to the organized retail business in activity B in the year Xo.

29) For the organized retail business activity in children's clothing ,which
one of the following is true ?

1. 1994-95 dominates 1995-96
2. 1995-96 dominates 1994-95
3. 1997-98 dominates 1996-97
4. 1998-99 dominates 1997-98

30) For the organized retail business activity in children 's clothing and
footwear ,which of the following is true ?

1. 1995-96 dominates 1994-95
2. 1994-95 dominates 1995-96
3. 1996-97 dominates 1995-96
4. None of these



QUESTION : 1

EVALUATE THESE TWO SQL COMMANDS:

1. SELECT DISTINCT OBJECT_TYPE FROM USER_OBJECTS;

2. SELECT OBJECT_TYPE FROM ALL_OBJECTS;

HOW WILL THE RESULTS DIFFER?

A. STATEMENT 1 WILL DISPLAY THE DISTINCT OBJECT TYPES IN THE DATABASE, STATEMENT 2 WILL DISPLAY ALL THE OBJECT TYPES IN THE DATABASE.

B. STATEMENT 1 WILL DISPLAY THE DISTINCT OBJECT TYPES OWNED BY THE USER, STATEMENT 2 WILL DISPLAY ALL THE OBJECT TYPES IN THE DATABASE.

yC. STATEMENT 1 WILL DISPLAY THE DISTINCT OBJECT TYPES OWNED BY THE USER, STATEMENT 2 WILL DISPLAY ALL THE OBJECT TYPES THE USER CAN ACCESS.

D. STATEMENT 1 WILL DISPLAY ALL THE OBJECT TYPES THE USER CAN ACESS, STATEMENT 2 WILL DISPLAY ALL OBJECT TYPE THAT THE USER OWNS.


QUESTION : 2

The EMPLOYEE table contains these columns:

LAST_NAME VARCHAR2(25) FIRST_NAME VARCHAR2(25) SALARY NUMBER(7,2)

You need to display the names of employees that earn more than the average salary of all employees.

Evaluate this SQL statement:

SELECT last_name,first_name FROM employee WHERE salary > AVG(salary);

Which change should you make to achieve the desired results?

A. Change the function in the WHERE clause. B. Move the function to the SELECT clause and add a GROUP BY clause. yC. Use a subquery in the WHERE clause to compare the average salary value. D. Move the function to the SELECT clause and add a GROUP BY clause and a HAVING clause.


QUESTION : 3


You need to remove all the data from the employee table while leaving the table definition intact. You don't care about being able to undo this operation. How would you accomplish this task?

yA. Use the DELETE command. B. Truncate the table. C. Drop the table and recreate it. D. This task cannot be accomplished.


QUESTION : 4

Click on the EXHIBIT button and examine the table instance chart for the sales table.

You attempt to change the database with this command:

SALES ****** __________________________________________________ _____________ | Column Name | PURCHASE_NO | CUSTOMER_ID | CAR_ID | MODEL | |_______________|_______________|_____________|___ _____|________| | Key Type | PK | FK | FK | FK | |_______________|_______________|_____________|___ _____|________| | Nulls/Unique | NN, U | NN | NN | NN | |_______________|_______________|_____________|___ _____|________| | FK Table | | PURCHASE | S_ORD | S_ITEM | |_______________|_______________|_____________|___ _____|________| | FK Column | | CUST_ID | C_ID |MODEL_ID| |_______________|_______________|_____________|___ _____|________| | Datatype | NUM | NUM | NUM | NUM | |_______________|_______________|_____________|___ _____|________| | Lenght | 6 | 6 | 6 | 6 | |_______________|_______________|_____________|___ _____|________|

INSERT INTO sales(purchase_no, customer_id, car_id) VALUES (1234 , 345 , 6);

If this statement fails , which condition would explain the failure?

A. The statement has invalid datatypes. B. The sales table has too many foreign keys. yC. A mondatory column value is missing. D. This statement does not fail at all.


QUESTION : 5

Which ALTER command would you use a disabled primary key constraint ?

A. ALTER TABLE cars ENABLED PRIMARY (id) ; B. ALTER TABLE cars ADD CONSTRAINT cars_id_pk PRIMARY KEY (id) ;

yC. ALTER TABLE cars ENABLE CONSTRAINT cars_id_pk;

D. ALTER TABLE cars ENABLE PRIMARY KEY (id) CASCADE;


QUESTION : 6


You need to create the patient_id_seq sequence to be used with the patient table's primary key column. The sequence should begin at 1000, have a maximum value of 999999999, increment by 1 , and cache 10 number which statement would you use to complete this task ?

yA. CREATE SEQUENCE patient_id_seq START WITH 1000 MAXVALUE 999999999 CACHE 10 NOCYCLE;

B. CREATE SEQUENCE patient_id_seq ON patient (patient_id) MINVALUE 1000 MAXVALUE 999999999 INCREMENT BY 1 CACHE 10 NOCYCLE;

C. CREATE SEQUENCE patient_id_seq START WITH 1000 MAXVALUE 999999999 INCREMENT BY 1 CYCLE 10;

D. This task cannot be accomplished.


QUESTION : 7

Evaluate this SQL statement:

CREATE INDEX emp_dept_id_idx ON employee (dept_id);

Which result will the statement provide ?

A. Store an index in the EMPLOYEE table. B. Increase the chance of full table scans. yC. May reduce the amount of disk I/O for SELECT statements. D. May reduce the amount of disk I/O for INSERT statements. E. Override the unique index created when the FK relationship was defined.


QUESTION : 8


Evaluate this SQL script:

CREATE ROLE manager; CREATE ROLE clerk; CREATE ROLE inventory; CREATE USER scott IDENTIFIED BY tiger; GRANT inventory TO clerk; GRANT clerk TO manager; GRANT inventory TO scott;

How many roles will user SCOTT have access to ?

A. 0 yB. 1 C. 2 D. 3


QUESTION : 9

Within a PL/SQL loop, you need to test if the current fetch was successful. Which SQL Cursor attribute would you use to accomplish this task ?

A. SQL%ROWCOUNT B. A SQL cursor attribute cannot be used within a Pl/sql loop. yC. SQL%FOUND D. SQL%ISOPEN E. This task cannot be accomplished with a SQL cursor attribute.


QUESTION : 10

The EMPLOYEE table contains these columns:

BONUS NUMBER(7,2) DEPT_ID NUMBER(9)

These are 10 departments and each department has at least 1 employee. Bonus values are greater than 5 not all employees receive a bonus.

Evaluate this PL/SQL block:

DECLARE v_bonus employee.bonus%TYPE :=300; BEGIN UPDATE employee SET bonus = bonus + v_bonus WHERE dept_id IN(10 , 20 , 30); COMMIT; END:

What will be the result ?

A. All employees will be given a 300 bonus. B. A subset of employees will be given a 300 bonus. C. All employees will be given a 300 increase in bonus. yD. A subset of employees will be given a 300 increase in bonus.

QUESTION : 11

In which situation should you use an outer join query ?

A. The employee and region tables have no corresponding columns. yB. The employee and region tables have corresponding columns. C. The employee table column corresponding to the region table column constains null Values for rows need to be displayed. D. The employee table has two columns that correspond.


QUESTION : 12

You query the database with this command:

SELECT lot_no "LOT NUMBER" ,COUNT (* ) "NUMBER OF CARS AVAILABLE" FROM cars WHERE model = 'Fire' GROUP BY lot_no HAVING COUNT (*) > 10 ORDER BY COUNT( * );

Which clause restricts which groups are displayed ?

A. SELECT lot_no "LOT NUMBER" ,COUNT (* ) "NUMBER OF CARS AVAILABLE" B. WHERE model = 'Fire' C. GROUP BY lot_no yD. HAVING COUNT ( * ) > 10 E. ORDER BY COUNT ( * )


QUESTION : 13

IN PL/SQL BLOCK WE QUERRY THIS STATEMENT

FOR EMP_RECORD IN CURSOR_EMP LOOP EMP_RECORD:='JIM'; END LOOP; CLOSE CURSOR_EMP; WHICH TASK WILL BE ACCOMPLISHED

1.NO FETCH STATEMENTIS ISSUED. 2.THERE IS NEED TO OPEN A CURSOR. y3.THERE IS NO NEED TO CLOSE THE CURSOR. 4.THE LOOP TERMINATING CONDITION IS MISSING.


QUESTION : 14

WHICH PL/SQL BLOCK USER_DEFINED EXCEPTION RAISED ?

y1. EXCEPTION 2. EXECUTEABLE 3. DECLARATIVE 4. HEADER


QUESTION : 15

WHAT SHOULD YOU TO DO AFTER FETCH STATEMENT

1. CLOSE THE CURSOR y2. TEST TO SEE THE CURSOR ATTRIBUTE 3. OPEN THE CURSOR 4. IDANTIFY THE ACTIVE SET


QUESTION : 16

IN PL/SQL BLOCK

IF V_VALUE >100 THEN V_VALUE_INCREASE := 2*V_VALUE; IF V_VALUE >200 THEN V_VALUE_INCREASE := 3*V_VALUE; IF V_VALUE <300 THEN V_VALUE_INCREASE := 4*V_VALUE; ELSE V_VALUE_INCREASE := 4*V_VALUE;

WHICH VARIABLE V_VALUE_INCREASE ASSIGN A VALUE IF V_VALUE IS 250


1. 500 2. 750 y3. 1000 4. 1250


QUESTION : 17

EVALUATE THIS STATEMENT

SELECT UPPER(FIRST_NAME),UPPER(LAST_NAME), LENGTH(CONCAT(FIRST_NAME,LAST_NAME)) NAME FROM EMPLOYEE WHERE UPPER(LAST_NAME) LIKE '%J' OR UPPER(LAST_NAME) LIKE '%A' OR UPPER(LAST_NAME) LIKE '%N' ;

SELECT INITCAP(FIRST_NAME),INITCAP(LAST_NAME), LENGTH(FIRST_NAME) + LENGTH(LAST_NAME) FROM EMPLOYEE WHERE UPPER(SUBSTR(LAST_NAME,1,1) IN ('J','A','N');

HOW WILL THE RESULT DIFFER

y1. BOTH STATEMENT RETRIVED DIFFERENT DATA FROM THE DATABASE 2. STATEMENT 1 WILL EXECUTE AND STATEMENT 2 WILL NOT 3. STATEMENT 2 WILL EXECUTE AND STATEMENT 1 WILL NOT 4. BOTH STATEMENT RETURNS SAME DATA


QUESTION : 18

HOW MANY ELEMENT CONSISTS OF WHERE CLAUSE


1. USER_SUPPLIED LITERALS 2. ALIAS 3. COLUMN NAME 4. COMPARISION OPERATOR 5. COLUMN POSITION


QUESTION : 19

IN PL/SQL BLOCK

BEGIN FOR I IN 1..10 LOOP IF I=4 OR I=6 THEN NULL; ELSE INSERT INTO CARS(ID) VALUES(I); END IF; COMMIT; END LOOP; ROLL BACK; END;

HOW MANY VALUES WILL BE INSERTED

1. 2 2. 1 3. 5 4. 6 y5. 8 6. 10


QUESTION : 20

EVALUATE THIS STATEMENT

CREATE SYNONYUM CARS FOR ED.MARYLIN;

WHICH TASK WILL BE ACCOMPLISH?

1. SYNONYUM IS CREATED FOR ALL USER. y2. SYNONYUM IS CREATED FOR YOU. 3. SYNONYUM IS CREATED FOR ED 4. SYNONYUM IS CREATED FOR THOSE EMPLOYEES WHO HAS ACCESS THE DATABASE.

QUESTION : 21

DISPLAY ENAME,JOB AND SALARY OF ALL EMPLOYEES. ORDER OF SALARY IS DESCENDING, IF SALARY IS MATCHED THEN ORDER THE ENAME.

A. SELECT ENAME,JOB,SAL FROM EMP ORDER BY SAL,ENAME

yB. SELECT ENAME,JOB,SAL FROM EMP ORDER BY SAL DESC,ENAME

C. SELECT ENAME,JOB,SAL FROM EMP ORDER BY SAL DESC,ENAME ASCENDING

QUESTION : 22

EVALUATE THIS STATEMENT:

SELECT ENAME,JOB FROM EMP WHERE EMPNO NOT IN(SELECT MGR FROM EMP);

WHICH OPERATOR IS EQUAL TO 'NOT IN':

A. != B. NOT ALL yC. != ALL D. NOT LIKE

1. In SQL*Plus environment ,you want to store the result of your query in a text file, which command will you use; a. Spool Out. yb. Spool filename.txt. c. Spool out to filename.txt.

2. You are informed that cost of your product has by 25% and price of the product is increased by 10%. Now you have to determine the actual net profit for that product, you issued this query Select Price*1.10-Cost*1.25 from product How will this statement execute; a. This will give more result than you want yb. This will give desired result. c. This will give less result than you want.

3. Which characteristic applies to SQL. ya. When sorted in ascending order null values come in last b. When sorted in descending order null values come in last c. When sorted in ascending order null values come first

4. You have to find a name, but you don't know the case of stored data, which query will give the desired result. a. Select * from product Where ename=upper('&ename');

b. Select * from product Where ename=lower('&ename');

c. Select * from product Where upper(ename)='&ename';

yd. Select * from product Where upper(ename)=upper('&ename');

5. You have to find the name Smith. But you don't have any idea that which case user will use, which command will give the desired result. a. Select * from product Where ename=initcap('&ename');

b. Select * from product Where intioap(ename)=('&ename');


c. Select * from product Where upper(ename)='&ename';

yd. Select * from product Where ename = upper('&ename');

6. You have to find the total service period of employee in months as whole number, which query will give the result. ya. Select round(months_between(sysdata,hiredate)) from emp; b. Select round(months_between(hiredate,sysdate)) from emp;

7. If you want to join table without direct matching of their columns, which type of join will you use. a. Equi Join b. Self Join. c. Outer Join yd. Non EquiJoin.

8. Click on Exhibit Button ID Number(4) Name Varchar2(20) Manager_ID Number(4) You want to see name with their manager name which query will you use?

9. Which order is advised in SQL a. Where , Having ,Group By b. Group By, Having,Where c. Group By, Where ,Having yd. Where, Group By, Having

10. What is a nonpairwise subquery. ya. Cross Product applies to them. b. Cross product doesn't applies to them.

11. Click on Exhibit Button Table User_Tab ID Number(4) Name Varchar2(20) Hired Date You have to insert a row in this table, which query will give the desired result. ya. Insert into User_tab Values('asd',23,sysdate); b. Insert into User_tab(Name,Id,Hired) Values(123,'asd',sysdate); c. Insert into User_tab(Name,id,hired) Values('asd','123',sysdate)

12. Click on Exhibit Button Table is User_Tab Ino Number(4)

You use this PL/Sql program Begin For I in 1..5 loop Insert into user_tab Values (I); Commit; End Loop; RollBack; End; How many values will be inserted in User_tab table? a. 0. b. 1. c. 3. yd. 5.

13. To see which table you can access, which data dictionary is used. a. User_Objects. b. Dba_Ojbects. yc. All_objects.

14. To add a comment on table abc, syntax is a. Alter Table abc Add Comment b. Alter abc Add Comment. c. Commnent on abc. yd. Comment on table abc.

15. In SQL*Plus, you issued this command DELETE FROM dept WHERE DEPT_ID=30; You received an Integrity Constraint Error. What could you do to make the statement execute? a. Add the FORCE keyword to the command. b. Add the CONSTRAINTS CASCADE option to the command. c. You cannot make the command execute. yd. Delete the child record first.

16. You are updating the employee table, Jane has been granted the same privileges as you on the employee table. You ask Jane to log on to the database to check your work before you issue a COMMIT command. What can Jane do to the employee table? a. Jane can access the table and verify your changes. b. Jane cannot access the table. c. Jane can access the table, but she cannot see your changes. She can make the changes for you. yd. Jane can access the table, but she cannot see your changes and cannot make the same changes.

17. You created the patient_vu view based on id_number and last_name from the patient table. What is the best way to modify the view so that the rows can only be accessed b/w 8:00 A.M to 5:00 P.M. a. Use the ALTER command to add a WHERE clause to verify the time. b. Replace the view adding a WHERE clause. c. Drop the patient_vu and create a new view with a WHERE clause. d. Drop th epatient_vu and create a new view with a HAVING clause. ye. This task cannot be accomplished.

18. You issued this command CREATE SYNONYM e FOR ed.employee; Which task has been accomplished? a. The need to qualify an object name with its schema was eliminated for user Ed. yb. The need to qualify an object name with its schema was eliminated for only you. c. The need to qualify an object name with its schema was eliminated for all users. d. The need to qualify an object name with its schema was eliminated for users with access.


19. In the declaration section of a PL/SQL block , you create this variable; abc employee%rowtype; Which task has been accomplished? a. The abc variable was declared with the same datatype as the employee column. b. The abc table was created. c. A scalar table was created. yd. A composite variable was created based on the employee table.


ORACLE
------


section 2:

1. what is sparese matrices?. give (at least) two methods for implemetation
rather than two dimentional array.
2.what are cheap locks/latches?.
3.what is two phase locking?. Name two locks.
4. What are volatile variables in C?. What is their significance ?.
5. will these two work in same manner
#define intp int *
typedef int * inpp;
6. what are binary trees?. what is its use?.
7.

section 3 :

A). write header file containing functions used, etc (C),
problem is to maitain a Queue. user has to give size and type of Queue.
This problem is like this I don't remember exactly.
B). C++
1. What is polymorphism?
2. What is Inheritence?.
3. Mention four Object Oriented Programming Languages?>
4. Mention basic concepts of OOP.
5. What are messages in OOP?.
6. What is garbase collection?.
7.what is object?.
8. what is a class?.

section 4:
1. expand the following:
a.SEI b. ISO
2. what are different levels of SEI?.
3. What is significance of ISO?>
4. Expand the following:
a. WWW
b. HTTP
c. HTML
d. TCP/IP
5. what is Black box testing?.
6. explain the following:
1. white box testing
2. white box testing
3. boundary testing
4 stress
5. negative
6. system
7. unit
8.module
9.destructive
__________________
Answered By StudyChaCha Member
Reply With Quote
  #3  
Old June 6th, 2014, 05:13 AM
Unregistered
Guest
 
Default problem

this blok show after payment what we do
Response code :2
Response Message :Authentication failed.Transaction cannot be authorized
Merchant Txn Id :BELED401905311
Epg Txn Id :114060633435173
AuthId Code :
RRN :
CVRESP Code :Procedure or function 'updateBLEdPayment' expects parameter '@Aidcode', which was not supplied.
Reply With Quote
  #4  
Old June 8th, 2014, 12:29 PM
Unregistered
Guest
 
Default Oracle Placement papers

Here I am looking for the Oracle Placement papers, will you please provide me the same????
Reply With Quote
  #5  
Old June 8th, 2014, 02:10 PM
Super Moderator
 
Join Date: Nov 2011
Default Re: Oracle Placement papers

This is the Oracle Placement papers:

Oracle Placement papers

1. The first Unix operating system, as it was in development stage, was written in the
A. C language
B. B language
C. assembly language
D. none of these
Ans-B

2. In a disk, each block of data is written into
A. one sector
B. two sectors
C. three sectors
D. two or more sectors
Ans-D

3. Windows is
A. an operating system
B. an operating environment
C. a character user interface
D. none of these
Ans-B

4. which of the following is a service not supported by the operating system?
A. protection
B. accounting
C. compilation
D. I/O operation
Ans-C

5. The processor which performs arithmetical and logical operations is called
A. control
B. Alu
C. register
D. cache memory
Ans-B

6. What is a node class?

7. How is it possible to insert different type of elements in stack?

8. Evaluate the following prefix expression " ++ 26 + - 1324"

9. Write the programs for Linked List (Insertion and Deletion) operations

10. What does abstract data type means?

11. Metadata enables database designers and users to do all of the following except:
A. sample data.
B. understand what data exist.
C. what the fine distinctions are between similar data items.
D. what the data mean.
Ans-A

12. In a 1:N relationship, the foreign key is placed in:
A. either table without specifying parent and child tables.
B. the parent table.
C. the child table.
D. either the parent table or the child table.
Ans-C

13. Which of the following conditions should exist if you want to convert a relationship to an associative entity?
A. Some of the relationships for the participating entities are "many".
B. The resulting associative entity has an independent meaning.
C. The resulting associative entity has no attributes.
D. All of the above
Ans-B

14. Which is not a relevant feature of CASE tools?
A. The ability to help draw data models using entity-relationship notations
B. The ability to generate code
C. An information repository
D. Access to a DB via the Internet
Ans-D

15. Backward recovery is which of the following?
A. Where the before-images are applied to the database
B. Where the after-images are applied to the database
C. Where the after-images and before-images are applied to the database
D. Switching to an existing copy of the database
Ans-A

16. Prove that running time T(n) = n3 + 20n + 1 is O(n4) by Big O notation

17. Prove that running time T(n) = n3 + 20n + 1 is not O(n2)

18. Which of the following applies to a class rather than an object?
A. Query
B. Update
C. Scope
D. Constructor
Ans-C

19. The term Incomplete for a UML has the same meaning as which of the following for an EER diagram?
A. Overlapping rule
B. Disjoint rule
C. Total specialization rule
D. Partial specialization rule
Ans-D

20. The benefits of object-oriented modeling are which of the following?
A. The ability to tackle more challenging problems
B. Reusability of analysis, design, and programming results
C. Improved communication between users, analysts, etc.
D. All of the above.
Ans-D

21. An object can have which of the following multiplicities?
A. Zero
B. One
C. More than one
D. All of the above.
Ans-D

22.When a business rule involves three or more graphical symbols, you can show the constraint as a note and attach the note to each of the symbols by a dashed line.
A. True B. False
Ans-A

23. Decide the Big-O complexity of the given question
def sum_of_divisors(n)
result = 0
i = 1
while i < n
if n % i == 0
result += i
end
i += 1
end
return result
end

24. Using ODL, you can define which of the following?
A. Attribute
B. Structure
C. Operation
D. All of the above.
Ans-D

25. hich of the following is an ordered collection of elements of the same type?
A. Set
B. Bag
C. List
D. Dictionary
Ans-B

26. To run a compiled Java program, the machine must have what loaded and running?
A. Java virtual machine
B. Java compiler
C. Java bytecode
D. A Web browser
Ans-A

27. A relation is considered a:
A. Column.
B. one-dimensional table.
C. two-dimensional table.
D. three-dimensional table.
Ans-C

28. A tuple is a(n):
A. column of a table.
B. two dimensional table.
C. row of a table.
D. key of a table.
Ans-C

29. For some relations, changing the data can have undesirable consequences called:
A. referential integrity constraints.
B. modification anomalies.
C. normal forms.
D. transitive dependencies.
Ans-B

30. Which type of entity represents a logical generalization whose actual occurrence is represented by a second, associated entity?
A. Supertype entity
B. Subtype entity
C. Archetype entity
D. Instance entity
Ans-C

English: 25 Minutes 25 Questions

1. Correct the sentence
The Diary of Anne Frank “SHOWED A YOUNG GIRL’S COURAGE” during two years of hiding.
A. Has shown a young girl’s courage
B. Did show a young girls courage
C. Shows a young girl’s courage
D. Showed a young girl’s courage
E. Showed a young girl’s courage

2. Correct the sentence grammatically.
To “NO ONES SURPRISE”, Joe didn’t have his homework ready.
A. No ones surprise
B. No one’s surprise
C. Noones surprise
D. No ones’ surprise
E. No-ones surprise

3. In the question below a sentence broken into five or six parts. Join these parts to make a meaningful sentence. The correct order of parts is the answer.
1. was 2. and 3. Suresh 4. kind 5. loving
A. 31425
B. 54213
C. 34251
D. 15243
E. 12345
Ans-A

4. In the question below a sentence broken into five or six parts. Join these parts to make a meaningful sentence. The correct order of parts is the answer.
1. tea 2. have 3. That 4. some 5. before
A. 43251
B. 24315
C. 24153
D. 52431
E. 41325
Ans-C

5. In questions below, a part of the sentence is italicised and underlined. Below are given alternatives to the italicised part which may improve the sentence. Choose the correct alternative
After it was repaired it “ran perfect” again.
A. Ran perfectly
B. Would run perfectly
C. Ran perfect
D. Could of run perfect
E. Could run perfect

6. In questions below, a part of the sentence is italicised and underlined. Below are given alternatives to the italicised part which may improve the sentence. Choose the correct alternative
The fact that boxing is known to cause head injuries and brain damage “SHOULD LEAD US TO INFORM” the public and push for a ban on boxing.
A. Should lead us to inform
B. Could lead us to inform
C. Should of led us to inform
D. Should have led us to inform,
E. Will lead us to inform
7. The passage consists of six sentences. The first and sixth sentence is given in the beginning. The middle four sentences in each have been removed and jumbled up. These are labelled as P, Q, R and S. Find out the proper order for the four sentences.
S1: For some time in his youth Abraham Lincoln was manager for a shop.
P : Then a chance Customer would come.
Q : Young Lincoln way of keeping shop was entirely unlike anyone else's
R : Lincoln would jump up and attend to his needs and then revert to his reading.
S : He used to lie full length on the counter of the shop eagerly reading a book.
S6: Never before had Lincoln had so much time for reading as had then.
The Proper sequence should be:
A. SRQP
B. QSPR
C. SQRP
D. QPSR
Ans-B

8. The passage consists of six sentences. The first and sixth sentence is given in the beginning. The middle four sentences in each have been removed and jumbled up. These are labelled as P, Q, R and S. Find out the proper order for the four sentences.
S1: Smoke oozed up between the planks.
P : Passengers were told to be ready to quit the ship.
Q : The rising gale fanned the smouldering fire.
R : Everyone now knew there was fire on board.
S : Flames broke out here and there.
S6: Most people bore the shock bravely.
The Proper sequence should be:
A. SRQP
B. QPSR
C. RSPQ
D. QSRP
Ans-A

9. In questions below, a part of the sentence is italicised and underlined. Below are given alternatives to the italicised part which may improve the sentence. Choose the correct alternative
In August my parents “WILL BE MARRIED” for twenty-five years.
A. Shall have been married for twenty-five years.
B. Will have been married for twenty-five years.
C. Will have married for twenty-five years.
D. Will be married for twenty five years.
E. Will be married for twenty-five years.

10. Pick out the best one which can complete incomplete stem correctly and meaningfully.
Even if it rains I shall come means ......
A. if I come it will not rain
B. if it rains I shall not come
C. I will certainly come whether it rains or not
D. whenever there is rain I shall come
E. I am less likely to come if it rains
Ans-C

11. Choose the word which best expresses the meaning of the given word.
LAUD
A. Lord
B. Eulogy
C. Praise
D. Extolled
Ans-C

12. Choose the word which is the exact OPPOSITE of the given words
NIGGARDLY
A. Frugal
B. Thrifty
C. Stingy
D. Generous
Ans-D

13. Choose the one which best expresses the given sentence in Passive/Active voice.
I remember my sister taking me to the museum.
A. I remember I was taken to the museum by my sister.
B. I remember being taken to the museum by my sister.
C. I remember myself being taken to the museum by my sister.
D. I remember taken to the museum by my sister.
Ans-B

14. Choose the one which best expresses the given sentence in Indirect/Direct speech
I told him that he was not working hard.
A. I said to him, "You are not working hard."
B. I told to him, "You are not working hard."
C. I said, "You are not working hard."
D. I said to him, "He is not working hard."
Ans-A

15. Choose the one which best expresses the given sentence in Passive/Active voice.
They have built a perfect dam across the river.
A. Across the river a perfect dam was built.
B. A perfect dam has been built by them across the river.
C. A perfect dam should have been built by them.
D. Across the river was a perfect dam.
Ans-B

16. Select the pair which has the same relationship
THRUST:SPEAR
A. mangle:iron
B. scabbard:sword
C. bow:arrow
D. fence:epee
Ans-D

17. Rearrange the following five sentences in proper sequence to form a meaningful paragraph, and then answer the questions given below.
1. A Study to this effects suggests that the average white-collar worker demonstrates only about 25% listening efficiency.
2. However for trained and good listeners it is not unusual to use all the three approaches during a setting, thus improving listening efficiency.
3. There are three approaches to listening: Listening for comprehension, Listening for empathy and Listening for evaluation.
4. Although we spend nearly half of each communication interaction listening, we do not listen well.
5. Each approach has a particular emphasis that may help us to receive and process information in different settings.
Which of the sentences should come third in the paragraph ?
A. 1
B. 2
C. 3
D. 4
E. 5

18. Find out whether there is any grammatical error in it. The error, if any will be in one part of the sentence. The letter of that part is the answer.
A. Looking back, I find that among the many impressions ofthe people of India,
B. absorbed while I lived among them,
C. are their reverence for great men and women.
D. No error.

19. Pick up the one which is most nearly the same in meaning as the word printer in bold and can replaces it without altering the meaning of the sentence.
Traffic being what it is, it is lamentable that our roads are unable to take the load.
A. unpardonable
B. deplorable
C. inexcusable
D. terrible
20. Choose the word which is the exact OPPOSITE of the given words
IMPASSE
A.Resurgence
B. Breakthrough
C. Continuation
D. Combination

Questions (21-25) Read the passage given and answer the questions that follow

21. Harold a professional man who had worked in an office for many years had a fearful dream. In it, he found himself in a land where small slug-like animals with slimy tentacles lived on people's bodies. The people tolerated the loathsome creatures because after many years they grew into elephants which then became the nation's system of transport, carrying everyone wherever he wanted to go. Harold suddenly realised that he himself was covered with these things, and he woke up screaming. In a vivid sequence of pictures this dream dramatised for Harold what he had never been able to put in to words; he saw himself as letting society feed on his body in his early years so that it would carry him when he retired. He later threw off the "security bug" and took up freelance work.
1. Which one of the following phrases best helps to bring out the precise meaning of 'loathsome creatures'?
A. Security bug and slimy tentacles
B. Fearful dream and slug-like animals
C. Slimy tentacles and slug-like animals
D. slug-like animals and security bug
Ans-C
2. The statement that 'he later threw off the security bug' means that
A. Harold succeeded in overcoming the need for security
B. Harold stopped giving much importance to dreams
C. Harold started tolerating social victimisation
D. Harold killed all the bugs troubled him
Ans-A
3. Harold's dream was fearful because
A. it brought him face to face with reality
B. it was full of vivid pictures of snakes
C. he saw huge elephant in it
D. in it he saw slimy creatures feeding on people's bodies
Ans-A

22. Laws of nature are not commands but statements of acts. The use of the word "law" in this context is rather unfortunate. It would be better to speak of uniformities in nature. This would do away with the elementary fallacy that a law implies a law giver. If a piece of matter does not obey a law of nature it is punished. On the contrary, we say that the law has been incorrectly started.
1. If a piece of matter violates nature's law, it is not punished because
A. it is not binding to obey it
B. there is no superior being to enforce the law of nature
C. it cannot be punished
D. it simply means that the facts have not been correctly stated by law
Ans-B

2. Laws of nature differ from man-made laws because
A. the former state facts of Nature
B. they must be obeyed
C. they are natural
Ans-A

3. The author is not happy with word 'law' because
A. it connotes rigidity and harshness
B. it implies an agency which has made them
C. it does not convey the sense of nature's uniformity
D. it gives rise to false beliefs
Ans-A

23. Male lions are rather reticent about expanding their energy in hunting more than three quarters of kills are made by lionesses are in front, tensely scanning ahead, the cubs lag playfully behind and the males bring up the rear, walking slowly, their massive heads nodding with each step as if they were bored with the whole matter. But slothfulness may have survival value. With lionesses busy hunting, the males function as guard for the cubs, protecting them particularly from hyenas.
1. According to the passage male lions generally do not go for huntings because
A. they don not like it.
B. they want lioness to get training
C. they wish to save their vigour for other things
D. they are very lazy
Ans-C

2. Male lions protect their cubs
A. from the members of their own species
B. from hyenas only
C. from hyenas as much as from other enemies
D. more from hyenas than from other animals
Ans-D

3. When the lionesses go in search for their prey, they are very
A. serious
B. cautious
C. playful
D. sluggish
Ans-B

24. At this stage of civilisation, when many nations are brought in to close and vital contact for good and evil, it is essential, as never before, that their gross ignorance of one another should be diminished, that they should begin to understand a little of one another's historical experience and resulting mentality. It is the fault of the English to expect the people of other countries to react as they do, to political and international situations. Our genuine goodwill and good intentions are often brought to nothing, because we expect other people to be like us. This would be corrected if we knew the history, not necessarily in detail but in broad outlines, of the social and political conditions which have given to each nation its present character.
1. The need for a greater understanding between nations
A. was always there
B. is no longer there
C. is more today than ever before
D. will always be there
Ans-C

2. The character of a nation is the result of its
A. mentality
B. cultural heritage
C. gross ignorance
D. socio-political conditions
Ans-D

3. According to the author his countrymen should
A. read the story of other nations
B. have a better understanding of other nations
C. not react to other actions
D. have vital contacts with other nations
Ans-B

25. What needs to be set right is our approach to work. It is a common sight in our country of employees reporting for duty on time and at the same time doing little work. If an assessment is made of time they spent in gossiping, drinking tea, eating "pan" and smoking cigarettes, it will be shocking to know that the time devoted to actual work is negligible. The problem is the standard which the leadership in administration sets for the staff. Forgot the ministers because they mix politics and administration. What do top bureaucrats do? What do the below down officials do? The administration set up remains week mainly because the employees do not have the right example to follow and they are more concerned about being in the good books of the bosses than doing work.
1. According to the writer, the administration in India
A. is by and large effective
B. is very strict and firm
C. is affected by red tape
D. is more or less ineffective
Ans-D

2. The central idea of passage could be best expressed by the following
A. The employee outlook towards work is justified
B. The employee must change their outlook towards work
C. The employees would never change their work culture
D. The employer-employee relationship is far from healthy
Ans-B

3. The leadership in administration
A. sets a fine example to the employees
B. is of a reasonably high standard
C. is composed of idealists
D. is of a very poor standard
Ans-D

Reasoning: 35Minutes 35 Questions

1. How many terms are there in the series?
210, 208, 215, . . 369?
A. 23
B. 24
C. 25
D. 26
Ans-C

2. In the series 357, 363, 369, . . what will be the 10th term?
A. 405
B. 411
C. 413
D. 417
Ans-B

3. Find the missing number in the following sequence
1, 3, 3, 6, 7, 89,. . 12, 21
A. 10
B. 11
C. 12
D. 13
Ans-D

4. How can u place 4 coins in 2 lines so that each line should contain 3 coins

5. How can u get 81 using the digits 2,3,25,50,75,100 only once using any of the arithmetic operators

6. 5 Friends live in the same road A, B, C, D, E. The numbers of B, C, D when multiplied together equals 1260. The numbers B, C, D when added equal twice E’s number, and is even.A’s number is half as much again as E’s. The road numbers run from 2 to 222.What are the 5 house numbers?

7. identify the correct match
345611242627
A. 345612414627
B. 345611242627
C. 345611624227
D. 341566242627
Ans-B

8. Match the pattern “gggttyyyydddddsss” in the following

A. gggttyyyydddddsss
B. ggttyyyyydddddsss
C. gggttyyyyyddddsss
D. gggtttyyydddddsss
Ans-A

9. Match the pattern “hjikljjhjjerttscvvvos” in the following
A. hjikljjhjjertascvvvos
B. hjikljjhjjertsscvvvos
C. hjikljjhjierttscvvvos
D. hjikljjhjjerttscvvvos
Ans-D

10. Match the pattern “kkllasdshjjoknhhgghhu” in the following
A. kkllaadshjjoknhhgghhu
B. kkllasdshjjoknhhgghhu
C. kkllssdshjjoknhhgghhu
D. kkllasdshikoknhhgghhu
Ans-B
11. Identify the correct pattern
**)+|&*/*(((+++***&*
A. **)+|&*/*(((+++***&*
B. **)+|&*\*(((+++***&*
C. **)+|&//*(((+++***&*
D. **)+|&*/*((((++***&*
Ans-A
__________________
Answered By StudyChaCha Member
Reply With Quote
Reply


Tags
Job Placement

Reply to this Question / Ask Another Question
Your Username: Click here to log in

Message:
Options



All times are GMT +6. The time now is 02:13 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, vBulletin Solutions Inc.
Search Engine Friendly URLs by vBSEO 3.6.0 PL2

1 2 3 4 5 6 7 8