Questions

Q:

C program to find whether a number is palindrome or not.

Answer

 #include<stdio.h>
int main(){
    int num,r,sum=0,temp;

    printf("Enter a number: ");
    scanf("%d",&num);

    temp=num;
    while(num){
         r=num%10;
         num=num/10;
         sum=sum*10+r;
    }
    if(temp==sum)
         printf("%d is a palindrome",temp);
    else
         printf("%d is not a palindrome",temp);

    return 0;
}

Sample output:
Enter a number: 131
131 is a palindrome

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2189
Q:

How do you differentiate the roles of Quality Assurance Manager and Project Manager?

Answer

Quality Assurance Manager (QA Manager) defines the process to be followed at each phase of SDLC. He defines the standards to be followed, the documents to be maintained and sets the standard for the product.


Where as it is the Project Manager’s responsibility to ensure that the things defined by QA manager are being implemented. He develops the product from start to finish with his team and ensures that the product which is to be rolled out is Defect free and it reaches the standards and views defined by QA Manager.


QA managers can audit the process for certain time periods which are being handled by the Project Manager.

Report Error

View answer Workspace Report Error Discuss

Subject: Software Testing

0 2188
Q:

Which error are you likely to get when you run the following program?

main()

{

  struct emp

  {

      char name[20];

      float sal;

  };

  struct emp e[10];

  int i;

  for ( i = 0 ; i <= 9; i++)

        scanf ( "%s %f" , e[i].name, &e[i].sal );

}

Answer

Floating point formats not linked

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2188
Q:

In which language did Vardhaman Mahavira taught?

A) Prakrit B) Hindi
C) Pali D) Sanskrit
 
Answer & Explanation Answer: A) Prakrit

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

2 2188
Q:

Who invented the mobile phone?

A) Joseph Wilson B) Edwin Land
C) Martin Cooper D) John Lloyd Wright
 
Answer & Explanation Answer: C) Martin Cooper

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Inventions
Exam Prep: Bank Exams

0 2188
Q:

The first Olympiad was held in Greece in the year

Answer

776 BC

Report Error

View answer Workspace Report Error Discuss

Subject: World History

2 2188
Q:

Pyranees forms the boundary between 

A) Spain and Portugal B) France and Spain
C) Poland and Russia D) Hungary and Rumania
 
Answer & Explanation Answer: B) France and Spain

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2188
Q:

A search engine is a program to search

A) files in the www B) documents in the www
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

A search engine is a set of programs which enables users to search documents and files ihe world wide web.

 

Common search engines are Google, Yahoo, Bing,...

Report Error

View Answer Report Error Discuss

1 2188