Aptitude

  Home  Basic Common  Aptitude


“Frequently Asked Aptitude Questions in various Aptitude job Interviews by interviewer. Get preparation of Aptitude job interview questions”



332 Aptitude Questions And Answers

282⟩ In each questions below are given two statements followed by two conclusionsnumbered I and II. You have to take the given two statements to be true even if they seem to be at variance from commonly known facts. read the conclusion and then decide which of the given conclusions logically follows from the two given statements, disregarding commonly known facts.5. Statements All bags are chalks. All chalks are bottles.Conclusions I Some bottles are bags.II. All bags are bottlesIII. All bottles are bagsIV. Some chalks are not bagsA) Only I , II and IV followB) Only I , III and IV follow.C) Only II, III and IV follow.D) All FollowE) none of theseAns A6. Statements Some trees are buses, All buses are hatsConclusions I Some trees are hatsII. Some hats are treesIII. All hats are busesIV. Some buses are hatsA) None follow sB) Only I, II and IV follow.C) Only II , III and IV follow.D) All FollowE) none of these

ques 5: answer is E..as conclusion I and II follow but no other satisfies the condition

Ques 6: answer is B..conclusion I , II and IV are true if statements are assumed true...

This could be easily cleared by Venn diagram...

If : All X are Y then it follows that Some X will definitely be Y as all are Y..but we cant say the same about Y because there may or may not be some Y who are not X...but certainly Some Y are X.but we cant predict anything about remaining Y because they may be a part of X or may not be a part of X.

 178 views

285⟩ Suppose a train passes two cars moving in the direction at 45km/hr and 50km/hr in 36 sec and 54 sec respectively. What is the length of the train?

train crossed the car with less speed in less time and the car with high speed in more time.i.e train and two cars going in the same direction.

hence 1st car

L/((S-45)*5/18)=36 i.e L=10S-450

similarly for 2nd car

L=15S-750

BY solving these two equations we get length of the train L=150mtrs

 188 views

287⟩ Write a java code to print only unique numbers by eliminating duplicate numbers from the array? (using collection framework)?

import javax.swing.JOptionPane;

public static void main(String[] args) {

int[] array = new int[10];

for (int i=0; i array[i] = Integer.parseInt(JOptionPane.showInputDialog("Please enter"

+ "an integer:"));

}

checkDuplicate (array);

}

public static void checkDuplicate(int array []) {

for (int i = 0; i < array.length; i++) {

boolean found = false;

for (int j = 0; j < i; j++)

if (array[i] == array[j]) {

found = true;

break;

}

if (!found)

System.out.println(array[i]);

}

}

 194 views

289⟩ Three beauty pageant finalists-Cindy, Amy and Linda-The winner was musician. The one who was not last or first was a math major. The one who came in third had black hair. Linda had red hair. Amy had no musical abilities. Who was first?

First is Linda (answer)

she cant 3 bcoz she have red hair

mean she (Linda)

is 1 n 2.

now 1 have musician

but Amby cant first bcoz he have not such abilities.

so 1 n 2 may be

Linda or Cindy.

or 2 n 3 may be Amby or Cindy

Common is 2. so

so

cindy is second

then 1 is Linda

3 is Amby

1. Linda

2.

Cindy

3. Amby

 207 views

292⟩ A Flight takes off at 2 A.M from northeast direction and travels for 11 hours to reach the destination, which is in northwest direction. Given the latitude and longitude of source and destination. Find the local time of destination when the flight reaches there?

the ans is 4am.

the distance among their is (60+60)=120,

4*120=480...

THEN V HAV TO CONVERT HRS..480/60=8HRS

10-8=2HRS

IT STARTS 2AM SO 2+2=4AM.

 244 views

296⟩ How can a cake(circular) be cut into 8 pieces by making just 3 cuts?

Make two cuts to divide the cake into 4 (cutting on the diameter of a circular cake, the cuts perpendicular to each other). Now, place the 4 sectors of the cake one over the other. Make a cut such that the cut goes throw the centre cutting each of the cake sectors into half. So now we have done 3 cuts. Each sector is cut into two so 4*2=8.

 199 views

297⟩ In the reading room of a library, they are 23 reading spots. Each reading spot consists of a round table with 9 chairs placed around it. There some readers such that in each occupied reading spot there are different number of readers. If in all there are 36 readers, how many reading spots do not have even a single reader?

The key here is realizing that the tables that aren't empty each have a DIFFERENT number of readers. There's only one way to do this.

The very least number of people you could have at a table is just 1. The next highest number that's different than that is 2, so another table can have 2 people. Then another table might have 3, and so on. But if you add up 1 + 2 + 3 + and so on up to 8, you get 36 people. So if we seat 36 people at different tables such that there's a different number at each table, the number of tables we used is 8. And since the table with the most number of people has eight people, then there are enough seats at the table, so we don't have to worry about that.

That means 23 - 8 = 15 tables are empty.

 192 views