Questions

Q:

Number of moles of solute present in 1 litre of solution is

A) Normality B) Molarity
C) Molality D) Formality
 
Answer & Explanation Answer: B) Molarity

Explanation:

Moles of solute present in 1 litre or 1000ml of solution is called molarity

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

5 4095
Q:

What is at the end of a rainbow?

Answer

The logical answer for a puzzle is that the letter 'W'.


 


A rainbow is a spectrum of light that appears in the sky when sunlight is refracted through raindrops or other drops of moisture in the Earth's atmosphere. They have inspired much popular folklore, including the belief that a leprechaun can be found with a pot of gold at the end of a rainbow.

Report Error

View answer Workspace Report Error Discuss

3 4094
Q:

'Pencillin' which is used as an antibiotic is obtained from 

A) Bacteria B) Fungi
C) Algae D) Lichens
 
Answer & Explanation Answer: B) Fungi

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science

16 4094
Q:

How would you use qsort() function to sort an array of structures?

Answer

#include "string.h"


#include "stdlib.h"


struct stud


{


       int rollno;


       int marks;


       char name[30];


};


int sort_m (struct stud *, struct stud *);


int sort_name (struct stud *, struct stud *);


int sort_marks (struct stud *, struct stud *);


 


main()


{


static struct stud ss[] = {


                                            { 15, 96, "Akshay" },


                                            { 2, 97, "Madhuri" },


                                            { 8, 85, "Aishvarya" },


                                            { 10, 80, "Sushmita" }


                                   };


int x,w;


clrscr();


w = sizeof (struct stud);


 


printf ('\nIn order of roll numbers:");


qsort (ss, 4, w, sort_rn);


for(x=0; x<4;x++)


     printf ("\n%d%s%d", ss[x].rollno, ss[x].name,ss[x].marks);


 


printf("\n\nIn order of names:");


qsort(ss, 4, sort_name);


 


for (x=0; x<4;x++)


      printf("\n%d%s%d",ss[x].rollno, ss[x].name,ss[x].marks);


printf("\n\nIn order of marks:");


qsort(ss,4,w,sort_marks);


 


for (x=0;x<4;x++)


      printf ("\n%d%s%d",ss[x].rollno,ss[x].name,ss[x].marks);


}


int sort_rn (struct stud *t1, struct stud *t2)


{


     return (t1->rollno-t2->rollno);


}


 


int sort_name (struct stud *t1, struct stud *t2)


{


     return (strcmp(t1->name,t2->name));


}


int sort_marks (struct stud *t1, struct stud *t2)


{


     return (t2->marks-t1->marks);


}


 


 


 

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 4093
Q:

Which interrupts is not level-sensitive in 8085?

Answer

TST 7.5 is a raising edge-triggering interrupt.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

2 4092
Q:

World Soil Day is celebrated on ?

A) July 26 B) June 30
C) August 9 D) December 5
 
Answer & Explanation Answer: D) December 5

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Important Days and Years
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

15 4092
Q:

Answer the Following Puzzle.

Number_Puzzles_Typical_Aptitude_Questions_and_Answers1585548407.png image

A) 1111 B) 4311
C) 1143 D) 4343
 
Answer & Explanation Answer: C) 1143

Explanation:

Starting with the top 3 digit number, the first digit increases by 2 as you descend,from 1 to 11. The middle digit decreases by 1 each time,and the right hand digit alternates between 5 and 3

Report Error

View Answer Report Error Discuss

Filed Under: Number Puzzles
Exam Prep: CAT , Bank Exams

13 4091
Q:

Number of moles of CO2 present in 24 grams of carbon is

A) 0.5 B) 1
C) 2 D) 0.25
 
Answer & Explanation Answer: C) 2

Explanation:

1 mole of CO2 contain 12gms of carbon and 44 gms of CO2

therefore  24 gms of carbon is present in 88 gms of CO2 or 2 moles of CO2

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

7 4091