Strings c programming questions

16.

Which of the following statements are correct?

String is a value type.
String literals can contain any character literal including escape sequences.
The equality operators are defined to compare the values of string objects as well as references.
Attempting to access a character that is outside the bounds of the string results in an IndexOutOfRangeException.
The contents of a string object can be changed after the object is created.

A.     1, 3
B.     3, 5
C.     2, 4
D.     1, 2, 4
Answer & Explanation

Answer: Option C

Explanation:

No answer description available for this question. Let us discuss.
View Answer Workspace Report Discuss in Forum
17.

Which of the following is the correct way to find out the index of the second ‘s’ in the string “She sells sea shells on the sea-shore”?
A.

String str = “She sells sea shells on the sea-shore”;
int i;
i = str.SecondIndexOf(“s”);

B.

String str = “She sells sea shells on the sea-shore”;
int i, j;
i = str.FirstIndexOf(“s”);
j = str.IndexOf(“s”, i + 1);

C.

String str = “She sells sea shells on the sea-shore”;
int i, j;
i = str.IndexOf(“s”);
j = str.IndexOf(“s”, i + 1);

D.

String str = “She sells sea shells on the sea-shore”;
int i, j;
i = str.LastIndexOf(“s”);
j = str.IndexOf(“s”, i – 1);

E.

String str = “She sells sea shells on the sea-shore”;
int i, j;
i = str.IndexOf(“S”);
j = str.IndexOf(“s”, i);

Answer & Explanation

Answer: Option C

Explanation:

No answer description available for this question.

Leave a Reply0

Your email address will not be published.