Questions

Q:

Who has become the first person to cross the Atlantic Ocean on standup paddle ?

A) Jack Alberta B) Henary Christpher
C) Christopher Bernard D) Chris Bertish
 
Answer & Explanation Answer: D) Chris Bertish

Explanation:

South African Chris Bertish has become the first person to cross the Atlantic Ocean on standup paddle. He made the epic 4,050-mile voyage alone at sea aboard his custom-built craft.

Report Error

View Answer Report Error Discuss

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

3 2890
Q:

Which is not a basic function of a cell?

A) stopping homeostasis from happening B) obtaining and storing energy
C) removing waste D) transferring genetic information
 
Answer & Explanation Answer: A) stopping homeostasis from happening

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2888
Q:

Monitoring and Controlling Process Group

What are the Project Management Processes included in Monitoring and Controlling Process Group?

Answer


    • Monitor and Control Project Work

    • Integrated Change Control

    • Scope Verification

    • Scope Control

    • Schedule Control

    • Cost Control

    • Perform Quality Control

    • Manage Project Team

    • Performance Reporting

    • Manage Stakeholders

    • Risk Monitoring and Control

    • Contract Administration


Report Error

View answer Workspace Report Error Discuss

0 2888
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 2888
Q:

Write a c program for insertion sort.

Answer

#include<stdio.h>
int main(){

  int i,j,s,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=1;i<s;i++){
      temp=a[i];
      j=i-1;
      while((temp<a[j])&&(j>=0)){
      a[j+1]=a[j];
          j=j-1;
      }
      a[j+1]=temp;
  }

  printf("After sorting: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 3 7 9 0 2
After sorting:  0 2 3 7 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2888
Q:

Which animal adaptation happened before the others?

A) Reproduction on land B) Development of a colelom
C) Tissue development D) Deuterostome development
 
Answer & Explanation Answer: C) Tissue development

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk

10 2887
Q:

Who designed the Bombay Secretariat in the 1870s?

A) H.St. Clair Wilkins B) Sir Cowasjee Jehangir Readymoney
C) Purushottamdas Thakurdas D) Nusserwanji Tata
 
Answer & Explanation Answer: A) H.St. Clair Wilkins

Explanation:

The Bombay Secretariat was completed in 1874 and designed by Captain Henry St. Clair Wilkins in the Venetian Gothic style. With its arcaded verandahs and huge gable over the west facade, it was a monument to the civic pride of Bombay's British rulers.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

1 2887
Q:

Muscles get tired when there is shortfall of ___________.

A) Lactic acid B) Na+ ions
C) ATP D) Sulphates
 
Answer & Explanation Answer: C) ATP

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

4 2886