Questions

Q:

Which of the following statements describes the glycemic index of foods?

A) the extent to which a given food raises blood glucose and insulin levels B) the amount of insulin required to metabolize 100 grams of glucose
C) an individual’s glucose/insulin ratio in a fasted state D) the glucose content of a given food
 
Answer & Explanation Answer: A) the extent to which a given food raises blood glucose and insulin levels

Explanation:

The glycemic index or glycaemic index is a number associated with the carbohydrates in a particular type of food that indicates the effect of these carbohydrates on a person's blood glucose (also called blood sugar) level. A value of 100 represents the standard, an equivalent amount of pure glucose.

 

The GI represents the rise in a person's blood sugar level two hours after consumption of the food.

Report Error

View Answer Report Error Discuss

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

0 2062
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 2061
Q:

What would be the output of the following program, if the array beigns at address 65486?

main()

{

    int arr[] = {12,14,15,23,45};

    printf ("%u %u", arr, &arr);

}

Answer

65486  65486

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2061
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 2060
Q:

Which statement best describes the relationship between science and technology?

A) Technology is a branch of science. B) Advances in science can lead to new technology.
C) Without technology there is no science. D) Technology is not related to science.
 
Answer & Explanation Answer: B) Advances in science can lead to new technology.

Explanation:

The aim of science is to get an understanding of the natural world, while the aim of technology is to use that understanding to improve people's lives. 

 

Hence, Advances in science can lead to new technology.

Report Error

View Answer Report Error Discuss

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

3 2060
Q:

What is the function of reverse transcriptase?

A) synthesis of RNA from protein B) synthesis of DNA from an RNA template
C) synthesis of protein from DNA D) synthesis of DNA from protein
 
Answer & Explanation Answer: B) synthesis of DNA from an RNA template

Explanation:

A reverse transcriptase (RT) is an enzyme used to generate complementary DNA (cDNA) from an RNA template by a process called Reverse Transcription.

In brief its function is that copies all or part of the virus RNA (retroviruses are RNA-only) as DNA which can then be integrated into the DNA of the host organism.

Report Error

View Answer Report Error Discuss

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

2 2060
Q:

Which of the following Indian cities is known as City of Roses?

A) Hyderabad B) Kolkata
C) Mumbai D) Chandigarh
 
Answer & Explanation Answer: D) Chandigarh

Explanation:

Among the Indian cities Chandigarh is known as City of Roses.

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 2060
Q:

The latitude which passes through Sikkim also passes through _____.

A) Haryana B) Rajasthan
C) Uttarakhand D) Himachal Pradesh
 
Answer & Explanation Answer: B) Rajasthan

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

1 2060