English

What will be the value stored in the variable 'c' if the following statement is executed? c = "COMPUTER".charAt("COMPUTER".indexOf('P')) - Computer Applications

Advertisements
Advertisements

Question

What will be the value stored in the variable 'c' if the following statement is executed? 

c = "COMPUTER".charAt("COMPUTER".indexOf('P')) 

Options

  • 3

  • 4

  • P

  • M

MCQ

Solution

P

Explanation:

charAt(int index) returns a character from the given index of the string, and indexOf(char ch) returns the index of the first occurrence of a character in the string.
Since P is at 3rd position so indexOf('P') will return 3 and charAt(3) function will return the character at the third index i.e., 'P'. So, the given statement is solved as follows: 

c = "COMPUTER".charAt("COMPUTER ".indexOf('P'))
c = "COMPUTER".charAt(3)
c = 'P' 

shaalaa.com
  Is there an error in this question or solution?
Chapter 4: String Handling - EXERCISES [Page 286]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 4 String Handling
EXERCISES | Q I. 4. | Page 286
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×