Questions

Q:

How long are profissional Golf tour players alloted per shot

A) 45 seconds B) 25 seconds
C) 1 minutes D) 2 minutes
 
Answer & Explanation Answer: A) 45 seconds

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

2 2652
Q:

The percentage of Urban population to total population in India is 

A) 20.28 B) 22.52
C) 25.72 D) 27.80
 
Answer & Explanation Answer: D) 27.80

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

0 2652
Q:

What is an Oracle index?

Answer

An index is an optional structure associated with a table to have direct access to rows, which can be created to increase the performance of data retrieval. Index can be created on one or more columns of a table.

Report Error

View answer Workspace Report Error Discuss

3 2651
Q:

Which tennis player has authored a book titled "Unstoppable : My Life So Far" ?

A) Serena Williams B) Maria sharapova
C) Sania Mirza D) Venus Williams
 
Answer & Explanation Answer: B) Maria sharapova

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors
Exam Prep: Bank Exams
Job Role: Bank Clerk , Bank PO

5 2649
Q:

Which among the following is the disadvantage of circular list?

A) An info field that contains the information stored in the node B) Can’t traverse the list backward
C) A pointer to the node is given we cannot delete the node D) Both 2 and 3
 
Answer & Explanation Answer: D) Both 2 and 3

Explanation:

Both 2 and 3 are clearly the diadvantages of circular list

Report Error

View Answer Report Error Discuss

Filed Under: Database
Job Role: Database Administration

0 2649
Q:

Which of the following elements has the highest electronegativity?

A) Chlorine B) Bromine
C) Fluorine D) Helium
 
Answer & Explanation Answer: C) Fluorine

Explanation:

Electronegativity refers to the ability of an atom to attract shared electrons in a covalent bond. The higher the value of the electronegativity, the more strongly that element attracts the shared electrons.

Electronegativity increases from bottom to top in groups, and increases from left to right across periods. Thus, fluorine is the most electronegative element and lithium is the least.

Report Error

View Answer Report Error Discuss

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

2 2648
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 2648
Q:

Covalent bonds hold atoms together because they 

A) fill shells without giving atoms much charge B) bring electrons closer to protons
C) Both A & B D) use forces between nuclei as well as forces between electrons
 
Answer & Explanation Answer: C) Both A & B

Explanation:

Covalent bonds hold atoms together because the attraction between the positively charged nuclei and the negatively charged shared electrons is greater than the repulsions between the nuclei themselves.

Report Error

View Answer Report Error Discuss

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

0 2647