Project Manager Questions


Q:

On BBC World News channel last night they showed an informative program about new innovations in medical imaging, which you would have found interesting.

A) there was an informative program about innovations in medical imaging, a program you would have found interesting. B) they showed an informative program about innovations in medical imaging, which you would have found interesting.
C) there was an informative program about new innovations in medical imaging, that you would have found interesting. D) they showed an informative program about new innovations in medical imaging, which you would have found interesting.
 
Answer & Explanation Answer: A) there was an informative program about innovations in medical imaging, a program you would have found interesting.

Explanation:

They is incorrect when talking of the television channel.

New is redundant.

And which must have a clear antecedent.

 

Hence, Only Option A satisfies and clears all the flaws in the given sentence.

Report Error

View Answer Report Error Discuss

5 1707
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 1706
Q:

Data structure suitable for an application discussed in?

A) procedural design B) architectural design
C) data design D) interface design
 
Answer & Explanation Answer: C) data design

Explanation:
Report Error

View Answer Report Error Discuss

1 1703
Q:

Which of the following is not a computer programming language?

A) NULL B) BASIC
C) PYTHON D) JAVA
 
Answer & Explanation Answer: A) NULL

Explanation:

A computer programming language is nothing but a language which is understand by the computer.

Examples of programming languages are Basic, C, Java, Python, ...

Report Error

View Answer Report Error Discuss

1 1697
Q:

What is an Extension of Entity Type?

Answer

The collections of entities of a particular Entity Type are grouped together into an entity set.

Report Error

View answer Workspace Report Error Discuss

0 1689
Q:

In a spreadsheet program how is data organized?

A) Rows and columns B) Layers and planes
C) Lines and spaces D) All of the above
 
Answer & Explanation Answer: A) Rows and columns

Explanation:
Report Error

View Answer Report Error Discuss

0 1666
Q:

What kind of Room has No Doors or Windows

Answer

Mushroom.

Report Error

View answer Workspace Report Error Discuss

2 1658
Q:

What is ADB in Android ?

Answer

Adb is short for Android Debug Bridge. It allows developers the power to execute remote shell commands. Its basic function is to allow and control communication towards and from the emulator port.

Report Error

View answer Workspace Report Error Discuss

3 1628