Questions

Q:

Autoimmune diseases associated with vitiligo

A) Thyroiditis B) Diabetes mellitus
C) Psoriasis D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Vitiligo is a condition in which the skin loses its pigment cells (melanocytes). This can result in discolored patches in different areas of the body, including the skin, hair, retina and mucous membranes.

vitiligo1531457140.jpg image

Many disorders have been linked to vitiligo. They are::

Hashimoto thyroiditis,

Graves disease,

Addison disease and

diabetes mellitus,

alopecia areata,

pernicious anemia,

inflammatory bowel disease,

psoriasis, and

autoimmune polyglandular syndrome.

Report Error

View Answer Report Error Discuss

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

4 2121
Q:

The first two steps in the lithification process are

A) Cementation and Proposal B) Compaction and Ratification
C) Compaction and Cementation D) Ratification and Cementation
 
Answer & Explanation Answer: C) Compaction and Cementation

Explanation:

The first two steps in the lithification process are Compaction and Cementation.

Report Error

View Answer Report Error Discuss

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

2 2121
Q:

Which city to become India’s 1st city to have Crematorium For Cows?

A) Lucknow B) Hyderabad
C) Bhopal D) Allahabad
 
Answer & Explanation Answer: C) Bhopal

Explanation:

Bhopal mayor Alok Sharma provision to build a cow crematorium in the Madhya Pradesh capital city Bhopal.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

3 2121
Q:

Four statements are given below at A, B, C and D. There may be some errors in the given statement(s). The incorrect statement is your answer.

A) A. The deceased soldier’s family is banking upon the government for justice and support. B) B. The government is being banked upon by the deceased soldier’s family for justice and support.
C) C. For justice and support, the deceased soldier’s family is banking upon the government. D) D. The family of the deceased soldier is the banking of the government for justice and support.
 
Answer & Explanation Answer: D) D. The family of the deceased soldier is the banking of the government for justice and support.

Explanation:

Ans. D.
Solution: In the given sentences banking upon is the correct phrasal verb which means basing hopes on someone/something or depending on someone for something.
Option D is incorrect because the bank does not have any relevant meaning in the given context.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: CAT , GRE , TOEFL

0 2121
Q:

Select the word with the correct spelling.

A) arobics B) chosers
C) batered D) eternity
 
Answer & Explanation Answer: D) eternity

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT , GRE , TOEFL

0 2120
Q:

What is the difference in writing the test cases for Integration testing and system testing?

Answer

Integration testing is done at module level when various modules are integrated with each other to form a system or sub-system. Its main purpose is to ensure that interfaces between various modules are working properly; i.e. modules which are working individually are also working correctly together.


System testing is done on a complete, integrated system to evaluate the system’s compliance with its specified requirements. It validates that the system meets its functional and non-functional requirements.


From these definitions, it is clear that the purpose of Integration and purpose of System Testing are different. Therefore, Integration test cases focus more on the interfaces between modules (interface integrity) - the data transfer and their interaction with each other. System test cases focus on testing the product as a whole; i.e. whether the functional, non-functional requirements of the System are met or not. Since System Testing is the final phase before delivery of the product, System test cases should pinpoint configuration related errors along with testing for performance, security, reliability etc.

Report Error

View answer Workspace Report Error Discuss

Subject: Software Testing

1 2120
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 2119
Q:

Explain the concept of the batched operating systems?

Answer

In batched operating system the users gives their jobs to the operator who sorts the programs according to their requirements and executes them. This is time consuming but makes the CPU busy all the time.

Report Error

View answer Workspace Report Error Discuss

1 2119