Which of the following types of connections can use full duplex?

Question: Which of the following types of connections can use full duplex?

[A].

1, 2 and 4

[B].

3 and 4

[C].

3 and 5

[D].

2, 3 and 5

Answer: Option D

Explanation:

Hubs cannot run full-duplex Ethernet. Full duplex must be used on a point-to-point connection between two devices capable of running full duplex. Switches and hosts can run full duplex between each other, but a hub can never run full duplex.

In a reversible chemical reaction having two reactants in equilibrium, if the concentration of the reactants are doubled, then the equilibrium constant will

Question: In a reversible chemical reaction having two reactants in equilibrium, if the concentration of the reactants are doubled, then the equilibrium constant will
[A].

remain the same

[B].

be halved

[C].

also be. doubled

[D].

become one fourth

Answer: Option A

Explanation:

No answer description available for this question.

Fillers such as zinc oxide and carbon black are added to the crude natural rubber before vulcanisation in order to improve its

Question: Fillers such as zinc oxide and carbon black are added to the crude natural rubber before vulcanisation in order to improve its
[A].

elasticity

[B].

strength

[C].

plasticity

[D].

weathering characteristics

Answer: Option D

Explanation:

No answer description available for this question.

Does this mentioning array name gives the base address in all the contexts?

Question: Does this mentioning array name gives the base address in all the contexts?
[A].

Yes

[B].

No

Answer: Option B

Explanation:

No, Mentioning the array name in C or C++ gives the base address in all contexts except one.

Syntactically, the compiler treats the array name as a pointer to the first element. You can reference elements using array syntax, a[n], or using pointer syntax, *(a+n), and you can even mix the usages within an expression.

When you pass an array name as a function argument, you are passing the “value of the pointer”, which means that you are implicitly passing the array by reference, even though all parameters in functions are “call by value”.

Which of the following statements is correct about the array declaration given below?

Question: Which of the following statements is correct about the array declaration given below?

[A].

intMyArr refers to a 2-D jagged array containing 2 rows.

[B].

intMyArr refers to a 2-D jagged array containing 3 rows.

[C].

intMyArr refers to a 3-D jagged array containing 2 2-D jagged arrays.

[D].

intMyArr refers to a 3-D jagged array containing three 2-D jagged arrays.

Answer: Option C

Explanation:

No answer description available for this question.