Questions

Q:

Human gametes are produced by

A) Mitosis B) Meiosis
C) Replication D) None of the above
 
Answer & Explanation Answer: B) Meiosis

Explanation:

In humans all reproduction is sexual. It involves joining together haploid gamete cells from each parent with half the normal number of chromosomes to make a new cell containing both parents' genetic material. This is a diploid zygote. The cells from each parent that combine to form the zygote are called gametes.

 

Meiosis produces haploid gametes from a diploid parental cell.

Report Error

View Answer Report Error Discuss

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

2 2436
Q:

What type of satellite is ISRO's Microsat R?

A) Imaging satellite B) Communication
C) Climate D) None of the above
 
Answer & Explanation Answer: A) Imaging satellite

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2436
Q:

Many European empires arose in the wake of

A) the expansion of African kingdoms like the Ghana B) Mongol invasions throughout the region
C) Hun invasions that triggered a mass migration D) the collapse of the Byzantine Empire
 
Answer & Explanation Answer: D) the collapse of the Byzantine Empire

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World History
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2436
Q:

In oceania, most towns began as

A) Colonial ports B) plantations
C) tribal ritual centers D) capital cities
 
Answer & Explanation Answer: A) Colonial ports

Explanation:

Oceania is a geographic region comprising Melanesia, Micronesia, Polynesia and Australasia. In Oceani, most towns began as Colonial Ports.

oceania1532071449.jpg image

Report Error

View Answer Report Error Discuss

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

1 2436
Q:

A subquery in an sql select statement.

Answer

A Subquery or Inner query or a Nested query is a query within another SQL query and embedded within the WHERE clause.


Subqueries are most frequently used with the SELECT statement. The basic syntax is as follows::


SELECT column_name [, column_name ]
FROM table1 [, table2 ]
WHERE column_name OPERATOR
(SELECT column_name [, column_name ]
FROM table1 [, table2 ]
[WHERE])



A subquery is used to return data that will be used in the main query as a condition to further restrict the data to be retrieved.


Subqueries can be used with the SELECT, INSERT, UPDATE, and DELETE statements along with the operators like =, <, >, >=, <=, IN, BETWEEN, etc.


 


There are a few rules that subqueries must follow −


 


1. Subqueries must be enclosed within parentheses.


2. A subquery can have only one column in the SELECT clause, unless multiple columns are in the main query for the subquery to compare its selected columns.


3. An ORDER BY command cannot be used in a subquery, although the main query can use an ORDER BY. The GROUP BY command can be used to perform the same function as the ORDER BY in a subquery.


4. Subqueries that return more than one row can only be used with multiple value operators such as the IN operator.


5. The SELECT list cannot include any references to values that evaluate to a BLOB, ARRAY, CLOB, or NCLOB.


6. A subquery cannot be immediately enclosed in a set function.


7. The BETWEEN operator cannot be used with a subquery. However, the BETWEEN operator can be used within the subquery.

Report Error

View answer Workspace Report Error Discuss

0 2436
Q:

What would be the output of the following program?

# define SQR(x) (x * x)

main()

{

    int a, b = 3;

    a = SQR ( b + 2 );

    Printf ("\n %d ", a );

}

Answer

11


Because, on preprocessing the expression becomes  a = ( 3 + 2 * 2 + 3),  as Ist preference is multiply & then addition, it evalvates as(3+ 2 * 3 +2) = (3+6+2)=11.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2436
Q:

Project Integration Management - Processes

Describe the Inputs, Tools and Techniques, Outputs of Integrated Change Control Phase?

Answer

I. Inputs



  • Project management plan

  • Requested changes

  • Work performance information

  • Recommended preventive actions

  • Recommended corrective actions

  • Recommended defect repair

  • Deliverables


II. Tools and Techniques



  • Project management methodology

  • Project management information system

  • Expert Judgment


III. Outputs



  • Approved change requests

  • Rejected change requests

  • Project management plan(updates)

  • Project scope statement (updates)

  • Approved corrective actions

  • Approved preventive actions

  • Approved defect repair

  • Validated defect repair

  • Deliverables 

Report Error

View answer Workspace Report Error Discuss

0 2435
Q:

Pick up the most effective word from the given words to fill in the blanks to make the sentence meaningfully complete.

According to the weather _______ it is going to be cloudy today.

A) Announcement B) Indication
C) Prediction D) Forecast
 
Answer & Explanation Answer: D) Forecast

Explanation:

Weather is always forecasted.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2435