Questions

Q:

Kurukshetra , the sence of the epic battle between Kauravas and pandavas, is situated in 

A) Gujarat B) Punjab
C) Uttar Pradesh D) Haryana
 
Answer & Explanation Answer: D) Haryana

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

97 6738
Q:

The question of disqualification of a member of a State Legislature shall be decided by the Governor after consultation with the 

A) Chief Minister B) Election Commission
C) Supreme Court D) Public Service Commission
 
Answer & Explanation Answer: B) Election Commission

Explanation:

Article 192

Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

11 6732
Q:

Water has maximum density at............

A) 0 C B) -15 C
C) 4 C D) 15 C
 
Answer & Explanation Answer: C) 4 C

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics

11 6729
Q:

What do the functions atoi(), itoa() and gcvt () do? Show how would you use them in a program.

Answer

atoi()         Converts a string to an integer.


itoa()         Convert an integer to a string


gcvt()        Converts a floating-point number to a string


 


#include "stdlib.h"


main()


{


      char s[] = "12345";


      char buffer [15], string[20];


      int i;


      


      i = atoi (s);


      printf("\n%d",i);


 


       gcvt (20.141672, 4, buffer);


       printf ("\n%s", buffer);


 


       itoa(15, string,2);


        printf ("\n%s", string);


}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

2 6729
Q:

Solve this logical Math puzzle?

logical_thinking_puzzle1536132282.jpg image

Answer

Let that something be 'x'


From the given data,


x + x/5 = 21


5x + x/5 = 21


6x = 21 x 5


=> x = 17.5


 


Hence, that something is x = 17.5.

Report Error

View answer Workspace Report Error Discuss

9 6728
Q:

Resistance of human body in dry condition

A) 10 ohm B) 1000 ohm
C) 10000 ohm D) 100000 ohm
 
Answer & Explanation Answer: D) 100000 ohm

Explanation:

Under dry conditions, the resistance offered by the human body may be as high as 100,000(10^5) Ohms.

 

Depending on the person, a rough value for the internal resistance of the human body is 300-1,000 Ohms. The skin's resistance is much lower if it is wet or burnt/blistered.



There are a lot of factors involved and not every person has the same electrical resistance. For instance, men tend to have lower resistance than women.

Within the body, the tissues with the greatest resistance are bone and fat - nerves and muscle have the least resistance.

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 6726
Q:

Which type of entity is related to two or more associated entities that each contain specialized attributes that apply to some but not all of the instances of the entity?

A) Supertype entity B) Subtype entity
C) Archetype entity D) Instance entity
 
Answer & Explanation Answer: A) Supertype entity

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

2 6726
Q:

GUI stands for

A) Graphical Universal Interface B) Graph Use Interface
C) Graphical Unique Interface D) Graphical User Interface
 
Answer & Explanation Answer: D) Graphical User Interface

Explanation:

GUI stands for Graphical User Interface.

 

A Graphical User Interface is a computer interface that allows users to interact with a device through graphical elements such as pictures and animations, as opposed to text-based commands.

Report Error

View Answer Report Error Discuss

9 6722