Questions

Q:

STUFF and REPLACE are used to replace characters in a string

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

They both are used to replace characters in a string

Report Error

View Answer Workspace Report Error Discuss

0 2897
Q:

What is a primary benefit of location targeting?

Answer

The ability to target combinations of countries, territories, and regions.

Report Error

View answer Workspace Report Error Discuss

2 2897
Q:

Prahaar is a-

A) surface-to-surface missile B) aircraft carrier
C) submarine D) battle tank
 
Answer & Explanation Answer: A) surface-to-surface missile

Explanation:

Prahaar is a contemporary weapon system capable of carrying multiple types of warheads & neutralizing a wide variety of targets. It is a indigenously developed surface-to-surface tactical missile by DRDO.

Report Error

View Answer Report Error Discuss

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

8 2897
Q:

Which formula represents an amino acid?

A) R-CH3(NH2)-COOH B) R-CH(NH2)-COOH
C) R-CH2(NH2)-COOH D) R-CH3(NH2)-COH
 
Answer & Explanation Answer: B) R-CH(NH2)-COOH

Explanation:

Amino acids are the building blocks of proteins. There are about 21 essential amino acids in the human body like histidine, leucine, lysine... The general formula for amino acid is R-CH(NH2)-COOH.

Report Error

View Answer Report Error Discuss

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

0 2897
Q:

A and B entered into a partnership with Rs.800 and Rs.1600 respectively. From 9th months onward they each decided to invest Rs.100 more on starting of each month. If total annual profit is Rs.7700 then find the profit share of A.

A) Rs.2550 B) Rs.3200
C) Rs.2650 D) Rs.2450
 
Answer & Explanation Answer: C) Rs.2650

Explanation:

A : B = (800 × 8+ 900+ 1000+ 1100+ 1200): (1600 × 8+ 1700+ 1800+ 1900+ 2000)
A : B = 53 : 101
Profit of A ⇒ 7700 ×53/154 = 2650 Rs.

Report Error

View Answer Report Error Discuss

0 2896
Q:

Eugenics is the study of

A) impair the racial qualities of future generations either physically or mentally B) different races of mankind
C) genetic of plants D) people of European origin
 
Answer & Explanation Answer: A) impair the racial qualities of future generations either physically or mentally

Explanation:

Eugenics is the study of altering human beings by changing their genetic components.

 

It is the study of the agencies under social control that may improve or impair the racial qualities of future generations either physically or mentally.

Report Error

View Answer Report Error Discuss

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

9 2896
Q:

What are the followers of Judaism called?

A) Jews B) Judais
C) Sakhs D) Sikhs
 
Answer & Explanation Answer: A) Jews

Explanation:

Judaism is the world's oldest monotheistic religion with the belief in one God. The followers of Judaism are called Jews.

Report Error

View Answer Report Error Discuss

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

3 2896
Q:

Improve the following code using typedef.

struct node

{

      int data1;  float data2;

       struct node *left;

       struct node *right;

};

struct node *ptr;

ptr = (struct node *) malloc (sizeof (struct node) ); 

Answer

typedef struct node * treeptr


typedef struct node


{


         int data1;


         float data2;


         treeptr *left;


         treeptr *right;


}treenode;


treeptr ptr;


ptr = ( treeptr ) malloc ( sizeof ( treenode ) );

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2895