If the magnitude of the resultant of two forces F and 2F acting at a point O is 50 N, and the included angle between F and 2F is 90°, then what is the magnitude of F ?

Question: If the magnitude of the resultant of two forces F and 2F acting at a point O is 50 N, and the included angle between F and 2F is 90°, then what is the magnitude of F ?
[A].

F = 10 N

[B].

F = 502 N

[C].

F = 252 N

[D].

F = 105 N

Answer: Option D

Explanation:

No answer description available for this question.

If a is an array of 5 integers then which of the following is the correct way to increase its size to 10 elements?

Question: If a is an array of 5 integers then which of the following is the correct way to increase its size to 10 elements?
[A].

int[] a = new int[5];
int[] a = new int[10];

[B].

int[] a = int[5];
int[] a = int[10];

[C].

int[] a = new int[5];
a.Length = 10 ;

[D].

int[] a = new int[5];
a = new int[10];

Answer: Option D

Explanation:

No answer description available for this question.