IT Trainer Questions


Q:

What is a word made up of 4 letters, yet is also made up of 3. Everything is written with 9 letters, and then with 4. Rarely consists of 6, and never is written with 5.

Answer

The Riddle itself has the Answers.


What is a 4 letter word


Yet is written in 3 letters


Everything is written with 9 letters


Then with 4 letters


Rarely has 6 letters


Never is written in 5 letters.

Report Error

View answer Workspace Report Error Discuss

9 1990
Q:

Jio is a big shot at reducing the cost of Internet access in India. The U.S., despite being the richest country in the world, lags far behind in terms of cost and penetration of Internet access. Cheap access to the Internet is an important step in bridging the access gap – access to good education, good healthcare, etc. But the market reaction to Jio is similar to the U.S. market’s reaction to firms announcing their intention to diversify.

(A) The final group of losers is the current shareholders of RIL. On announcement of Jio, the stock price of RIL fell.

(B) It shows that the market’s short-term reaction is usually proven correct in the long-run.

(C) On losing end, the first groups of losers are the shareholders of other telecom companies.

(D) The large amount of revenue the Government of India gets from auctioning off the nation’s natural resources is not necessarily a good thing because the Government does not have a stellar track record when it comes to spending the money. A large fraction of Government spending is wasted.

(E) The second loser is the Government of India. The big money the Indian Government was raking in selling cellular bandwidth was actually coming from the pockets of the cellular consumers. 

(F) The first obvious winners of this scheme are customers.

(G) The second winner is Mr. Ambani; he can potentially make a lasting impact as the man who brought Internet to millions of Indians.

 

Question:

Which of the following supports the decision of other companies opposing Reliance JIO Scheme?

A) Only A B) Both A & B
C) Only C D) Both C & E
 
Answer & Explanation Answer: D) Both C & E

Explanation:

As the arguments C and E states that other companies are on the losing end with this scheme, it is the only appropriate answer to this question.

Report Error

View Answer Report Error Discuss

4 1988
Q:

What kind of Room has No Doors or Windows

Answer

Mushroom.

Report Error

View answer Workspace Report Error Discuss

2 1981
Q:

Land is considered a resource because it

A) is used to produce things B) requires labor to be useful
C) is always available to use D) costs little or nothing to use
 
Answer & Explanation Answer: A) is used to produce things

Explanation:

Land is considered as an important resource because it is useful in producing many things. For example, in agriculture, land is used for cultivating the crop, in industrial use, it is used for constructing factories and to make products that we use.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

1 1980
Q:

What can you break but not touch?

A) Mirror B) Word
C) Promise D) All of the above
 
Answer & Explanation Answer: C) Promise

Explanation:

A promise. 

 

The Promise made to somebody by you can be break but you cannot touch it.

Report Error

View Answer Report Error Discuss

4 1980
Q:

Different IP address on same network?

Answer

There are two IP address assigned to each device on a Wi-Fi network.


 


An Internal (Private) and an External (Public) IP address.


 


Internal IP address is used for communication between Your computer and a smartphone or whatever devices that are connected to that Wifi network. This is unique for each. If they are same the system cannot differentiate between each device.


 


While, the External IP address is that visible to the the internet - the websites, the internet connected Apps so on. By default, Routers with NAT (all routers today have it) assign same Public IP address to all devices under its network.

Report Error

View answer Workspace Report Error Discuss

9 1978
Q:

How many bits are in a MAC address?

A) 64 B) 48
C) 32 D) 16
 
Answer & Explanation Answer: B) 48

Explanation:

MAC - Media Access Control, address is a globally unique identifier assigned to network devices, and therefore it is often referred to as hardware or physical address.

 

MAC addresses are 6-byte (48-bits) in length, and are written in MM:MM:MM:SS:SS:SS format.

Report Error

View Answer Report Error Discuss

0 1973
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 1958