Questions

Q:

Munda is a folk dance of _____.

A) Arunachal Pradesh B) Jharkhand
C) Chhattisgarh D) Haryana
 
Answer & Explanation Answer: B) Jharkhand

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

1 2887
Q:

Prahaar is a-

A) surface-to-surface missile B) aircraft carrier
C) submarine D) battle tank
 
Answer & Explanation Answer: A) surface-to-surface missile

Explanation:

Prahaar is a contemporary weapon system capable of carrying multiple types of warheads & neutralizing a wide variety of targets. It is a indigenously developed surface-to-surface tactical missile by DRDO.

Report Error

View Answer Report Error Discuss

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

8 2887
Q:

Order of basicity of amines

Answer

The order of basicity for primary, secondary and tertiary amines are:


Secondary > Primary > Tertiary > NH3


 


* Amines are basic in nature as they have lone pair of electrons on nitrogen. Therefore, they have a strong tendency to donate this lone pair of electrons to electron acceptors.


* The stability of conjugate acids formed is dependent on the extent of H-bonding,and greater the number of H-atoms on N more stable is the conjugate acid.


* The conjugate acid of primary amine is the most stable with greater number (3) of H-bonds than > Secondary > tertiary. But primary amines are less basic than secondary as the electron density on the N atom is less and lone pair of electrons are not readily available for protonation.


* The two opposing factors i.e. the stability of conjugate acids formed and ease of availability of electrons for Protonation, balance each other in case of secondary amines and it is most basic.

Report Error

View answer Workspace Report Error Discuss

Subject: Chemistry Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

1 2886
Q:

In the following question, a sentence has been given in Active/Passive voice. Out of the four alternatives suggested, select the one which best
expresses the same sentence in Passive/Active voice.
People drink champagne on New Year’s Eve.

A) Drinking of champagne is done on New Year's Eve. B) New Year's Eve was the day when People drank Champagne.
C) People on Eve of New Year drink champagne. D) Champagne is drunk on New Year’s Eve.
 
Answer & Explanation Answer: D) Champagne is drunk on New Year’s Eve.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

0 2886
Q:

When is 'World Autism Awareness Day' celebrated ?

A) 1 April B) 2 April
C) 3 April D) 4 April
 
Answer & Explanation Answer: B) 2 April

Explanation:

The Qutub Minar in New Delhi was lit up in blue as part of World Autism Day on 2 April.

Report Error

View Answer Report Error Discuss

Filed Under: Important Days and Years
Exam Prep: Bank Exams

2 2886
Q:

Titan industries has rolled out its own Swiss made premium watches in India under the brand Name of 

A) Insignia B) Xylys
C) Bvlgeri D) Titan Sens
 
Answer & Explanation Answer: B) Xylys

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

5 2886
Q:

'Sphinx' is associated with which of the following civilizations?

A) Egyptian Civilization B) Arab Civilization
C) Chinese Civilization D) Roman Civilization
 
Answer & Explanation Answer: A) Egyptian Civilization

Explanation:

The 'sphinx' is a mythological animal with the body of a lion and the head of man. Each Sphinx was carved out of a single solid stone.

Report Error

View Answer Report Error Discuss

Filed Under: World History

0 2886
Q:

Write a c program to create dos command type.

Answer

#include
int main( int count,char * argv[] ) {
    int i;
    FILE *ptr;
    char *str;
    char ch;
    if( count == 1) {


         printf( "The syntax of the command is incorrect.\n" );
    }
    for( i=1;i<cout;i++ ){
         ptr=fopen(argv[i],"r");
         if(ptr==NULL){
             printf("The system cannot find the file specified.");
             if(count>2)
                 printf("\nError occurred while procesing : %s.\n",argv[i]);
         }
         else {
             if(count>2) {
                 printf("%s\n\n",argv[i]);
             }
             while((ch=getc(ptr))!=-1)
                 printf("%c",ch);
         }
         fclose(ptr);
    }
    return 0;
}


 


Save the above file as open.c, compile and execute the go to command mode (current working directory) and write: open xy.c (xy.c any file present in that directory)
To run the open command in all directories and drive you will have to give the path of current working directory in command mode. Write:
C:tc\bin>PATH c:\tc\bin
Now press enter key. Now your open command will work in all directory and drive.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2885