Searching for "If"

Q:

Raju sold an article by giving a discount of 8% for Rs. 17,940 and earn profit of 19.6 %. If he did not give discount then how much profit percentage he gets ?

A) 27% B) 30%
C) 32% D) 25%
 
Answer & Explanation Answer: B) 30%

Explanation:
Let the M.R.P of an article be 100 %
 
Selling price of article =Rs. 17940
 
If he give a discount of 8 % then S.P = 92 %
92 % = 17490
100 % = 19500
 
Now C.P of the article is 
 
17490 x 100/119.6 = 15000
 
If he did not give the discount, then 
 
Required profit percentage = 
 
SSC Quiz : Quantitative Aptitude  | 03 - 08 - 17
Report Error

View Answer Report Error Discuss

Filed Under: Profit and Loss
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

Q:

The length of two superfast trains are 140 mts and 160 mts respectively. If they run at the speed of 60 km/hr and 80 km/hr respectively in opposite direction, find the time in which they will cross each other ? 

A) 7.71 sec B) 10.48 sec
C) 9.36 sec D) 8.45 sec
 
Answer & Explanation Answer: A) 7.71 sec

Explanation:

Given L1 = 140 m

L2 = 160 m

S1 = 60 km/hr

S2 = 80 km/hr

From the question we get,

S1 + S2 = (L1 + L2) / T

=> (60 + 80) 5/18 m/s = 140 + 160/T

=> T = 54/7 = 7.71 sec

Report Error

View Answer Report Error Discuss

Filed Under: Problems on Trains
Exam Prep: CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk

Q:

If MILITARY can be written as 1, 2, 3, 2, 4, 5, 6, 7 then how can TIMLI be written in that code ?

A) 2, 3, 1, 4, 2 B) 4, 2, 1, 5, 7
C) 3, 4, 5, 1, 6 D) 4, 2, 1, 3, 2
 
Answer & Explanation Answer: D) 4, 2, 1, 3, 2

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Coding and Decoding
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

Q:

If NAMO = 172 and OM = 56  then, SHIVAY = ?

A) 606 B) 415
C) 504 D) 404
 
Answer & Explanation Answer: C) 504

Explanation:

(COUNTING OF LETTERS)
NAMO = 14 + 1 + 13 + 15 = 43 x 4 = 172,  OM = 15 + 13 = 28 x 2 = 56,

SHIVAY = 19 + 8 + 9 + 22 + 1 + 25 = 84 x 6 = 504

Report Error

View Answer Report Error Discuss

Filed Under: Alphabet Test
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Bank Clerk , Bank PO

Q:

Both Joyel and Susy share a Windows 10 tablet with different user accounts. Joyel needs to access some files in Susy’s Documents folder. How can he do this ?

A) Joyel can access the files only if he has administrative rights B) Susy must choose to make the Documents folder Public for Joyel to see them
C) Joyel can, by default, see and access the files in any Documents folder on this computer D) Joyel cannot access those files without Susy moving them to another folder
 
Answer & Explanation Answer: A) Joyel can access the files only if he has administrative rights

Explanation:
Report Error

View Answer Report Error Discuss

Q:

What is the output after compile and run the following code ?

int Output = 10;
boolean b = false;
if((b == true) && ((Output += 10) == 20))
{
System.out.println("We are equal " + Output);
}
else
{
System.out.println("Not equal! " + Output);
}

A) Compilation and output of "We are equal 10" B) Compilation and output of "Not equal! 10"
C) Compilation error, attempting to perform binary comparison on logical data type D) Compilation and output of "Not equal! 20"
 
Answer & Explanation Answer: B) Compilation and output of "Not equal! 10"

Explanation:

The output will be "Not equal! 10". Please note that && is logical AND operator. If first operand before (&&) is false then the other operand will not be evaluated. This illustrates that the Output +=10 calculation was never performed because processing stopped after the first operand was evaluated to be false. If you change the value of b1 to true, processing occurs as you would expect and the output would be "We are equal 20".

Report Error

View Answer Report Error Discuss

Filed Under: Oracle Certification
Job Role: Analyst

Q:

A bus covers its journey at the speed of 80km/hr in 10hours. If the same distance is to be covered in 4 hours, by how much the speed of bus will have to increase ?

A) 85 km/hr B) 95 km/hr
C) 105 km/hr D) 120 km/hr
 
Answer & Explanation Answer: D) 120 km/hr

Explanation:

Initial speed = 80km/hr
Total distance = 80 x 10 = 800km
New speed = 800/4 =200km/hr
Increase in speed = 200 - 80 = 120km/hr

Report Error

View Answer Report Error Discuss

Filed Under: Time and Distance
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

Q:

State the difference between View and Materialized View ?

Answer

The main differenc between View and Materialized View states that -


1. View means it stores the SQL statement in the database and let you use it as a table. Everytime you access the view, the SQL statement executes.


2. Materialized view means it stores the results of the SQL in table form in the database. SQL statement only executes once and after that everytime you run the query, the stored result set is used. Advantage include quick query results.

Report Error

View answer Workspace Report Error Discuss