adplus-dvertising
frame-decoration

Question

What will be the output of the given code snippet?
static void Main(string[] args)
  {
      String c = "Hello i love you";
      String a ;
      a = c.Substring(12, 3);
      Console.WriteLine(a);
      Console.ReadLine();
  }

a.

ove

b.

you

c.

yo

d.

love you

Posted under C# programming

Answer: (c).yo

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What will be the output of the given code snippet?

Similar Questions

Discover Related MCQs

Q. Which of these methods of the class String is used to obtain length of String object?

Q. Which of these methods is an alternative to getChars() that stores the characters in an array of bytes?

Q. Which of these methods can be used to convert all characters in a String into a character array?

Q. Which of these methods of class String is used to extract all the characters from a String object?

Q. How is a string typically processed?

Q. How to print \\ on the screen?

Q. Which of these is used as a default specifier for a member of the class if no access specifier is used for it?

Q. Which of these is used to access members of class before the object of that class is created?

Q. Which of these base classes are accessible to the derived class members?

Q. What is the process by which we can control parts of a program that can access the members of a class?

Q. Accessibility modifier defined in a class are?

Q. Choose the statements which are false in nature:

Q. Which of these access specifiers must be used for main() method?

Q. What is output for the following code snippet?

Q. True Statement about ‘ref’ keyword used in C#.NET are?

Q. Keyword used to define call by reference parameter in C# .NET?

Q. Which statement is/are correct?

Q. The method in which large or variable number of arguments are handled is known as:

Q. The modifiers used to define an array of parameters or list of arguments:

Q. Select the correct declaration of the defining array of parameters: