Questions

Q:

The given sentences, when properly sequenced, form a coherent paragraph. Each sentence is labelled with a letter. Choose the most logical order of the sentences from among the five given choices to construct a coherent paragraph keeping 1 as the first statement.

1) The new year, 2018, is here! Nothing seems to have changed, despite the firecrackers.

A) Of course, in many parts of the world the firecrackers might have been confused with, or replaced by, bombs, and millions in those and other regions find firecrackers (let alone bombs) an unimaginable luxury as they struggle to obtain food or shelter.

B) I am aware that a group of increasingly loud fellow nationals might accuse me of celebrating ‘foreign festivals’.

C) That too was widely celebrated, as it should be, though in a world where the homeless, children, refugees and foreignness are often abused.

D) New Year’s Eve came, as it does, close on the heels of Christmas, which commemorates the birth of a homeless child to poor refugees in a foreign place.

A) BDCA B) DCAB
C) ADCB D) CDAB
 
Answer & Explanation Answer: C) ADCB

Explanation:

The correct sequence is ADCB.The paragraph starts with the description of the event and what is the point to focus on, i.e. firecrackers.

Report Error

View Answer Report Error Discuss

Filed Under: English

0 2674
Q:

The United Nations Conference on Trade and Development (UNCTAD) is located at which of the following places?

A) Geneva B) Rome
C) Paris D) Vienna
 
Answer & Explanation Answer: A) Geneva

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

1 2674
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 2673
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 2673
Q:

Lying between the states of pennsylvania and Maryland, which imaginary line divided the 'Slave States' from the 'Free States' in pre-Civil war America?

Answer

Mason Dixon Line

Report Error

View answer Workspace Report Error Discuss

1 2673
Q:

What is an error in a program called

A) Power fail B) Crash
C) Virus D) Bug
 
Answer & Explanation Answer: D) Bug

Explanation:

In computer technology, a coding error in a computer program is called a bug.

Report Error

View Answer Report Error Discuss

2 2673
Q:

In windows, start button is used to

A) Run applications B) Device setting
C) Turn off the system D) All of above
 
Answer & Explanation Answer: D) All of above

Explanation:

The Start button allows users to access their run applications, device setting, turn off the system, computer programs or configure Microsoft Windows easily by accessing the Start Menu.

Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

4 2672
Q:

Which is an example of Phototropism?

A) roots of a plant following water B) plant bending toward the light
C) roots growing into the soil D) a venus flytrap capturing a fly
 
Answer & Explanation Answer: B) plant bending toward the light

Explanation:

Phototropism is the ability of a photosynthesizing organism, to grow directionally in response to a light source. It is very common in plants, but can also occur in other organisms such as fungi.

Example :: Sunflower

Report Error

View Answer Report Error Discuss

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

5 2672