Questions

Q:

Only For Geniuses

Solve this MathPuzzle if you can?

num11515666627.jpg image

Answer

Let the required number be 'X'


Condition 1 :  


XX = 2X  => 2X2 = X => X = 12


 


Condition 2 :


X × X = X2=> X = 12


 


Therefore, 12 is the number which becomes double when it is divided by itself and becomes half when it is multiplied by itself.


 

Report Error

View answer Workspace Report Error Discuss

17 4763
Q:

The Highest point in the Aravalli range is 

A) Dodabetta B) Anaimudi
C) Gurusikhar D) Panchmarhi
 
Answer & Explanation Answer: C) Gurusikhar

Explanation:

The highest of this peak is 1772 m.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

7 4763
Q:

A, B and C start at the same time in the same direction to run around a circular stadium. A completes a round in 252 seconds, B in 308 seconds and c in 198 seconds, all starting at the same point. After what time will they again at the starting point ?

A) 26 minutes and 18 seconds B) 42 minutes and 36 seconds
C) 45 minutes D) 46 minutes and 12 seconds
 
Answer & Explanation Answer: D) 46 minutes and 12 seconds

Explanation:

L.C.M. of 252, 308 and 198 = 2772.

 

So, A, B and C will again meet at the starting point in 2772 sec. i.e., 46 min. 12 sec.

Report Error

View Answer Report Error Discuss

2 4762
Q:

The Periyar Game Sanctuary at Thekkady is in 

A) Karnataka B) Kerala
C) Tamil Nadu D) Goa
 
Answer & Explanation Answer: B) Kerala

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

1 4762
Q:

What element is used in bright flashing advertising signs?

A) Neon B) Helium
C) Mercury D) Radon
 
Answer & Explanation Answer: A) Neon

Explanation:

Neon is the element that is used in bright flashing advertising signs as Neon particulary gives bright color.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

6 4761
Q:

The Oceanic current named as 'Kuroshio, Kurile and Alaskan' are located in ____

A) North Indian Ocean B) South Indian Ocean
C) North Atlantic Ocean D) South Atlantic Ocean
 
Answer & Explanation Answer: C) North Atlantic Ocean

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

3 4761
Q:

Can I increase the size of a dynamically allocated array? < Yes / No> if yes, how?

Answer

Yes, using the realloc() function as shown below:


main()


{


        int *p;


        p = ( int *) malloc (20) ;


        t = p;


        t = (int *) realloc ( p, 40);


        if ( t == NULL )


        Printf (" Cannot reallocate, leaves previous allocated region unchanged ");


       else


       {


              if ( p ==t )


              ;  / * the array expanded at the same region */


             else


            { 


                 free ( p ); / * deallocate the original array */


                 p = t;  /* set p to newly allocated region */


             }


      }


}  

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 4761
Q:

The composition of electrician solder is

A) lead-37%, tin-63% B) Iron-37%, tin-63%
C) lead-37%, Steel-63% D) Steel-37%, copper-63%
 
Answer & Explanation Answer: A) lead-37%, tin-63%

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

6 4760