Tag: programming languages

Questions Related to programming languages

  1. Larry Wall

  2. Yukhiro Matsumoto

  3. Guido Van Rossom

  4. Dennis Ritchie


Correct Option: A
  1. John Backus

  2. Larry wall

  3. Rasmus Leedorf

  4. Yukhiro Matsumoto


Correct Option: D
  1. James Gosling

  2. Anders Hejlsberg

  3. Alan cooper

  4. John Backus


Correct Option: B
  1. Bjarne Stroutsup

  2. Larry Wall

  3. James Gosling

  4. Dennis Ritchie


Correct Option: C
  1. Cisco System

  2. isco Systems

  3. Cisco Systems

  4. Cisco


Correct Option: B
Explanation:

To solve this question, the user needs to understand how pointers work in C and the order of operations in the given code.

Initially, ptr points to the first character of the string "Cisco Systems".

The expression *ptr++ increments the pointer ptr to point to the next character, but dereferences the original pointer to get the value of the first character. Therefore, this operation has no effect on the value of ptr.

The expression ptr++ increments the pointer again, so that it now points to the second character of the string.

Finally, the printf function is called, which outputs the string starting from the second character.

Therefore, the correct answer is:

The Answer is: B. isco Systems

  1. A browser that uses a plug-in to process user data.

  2. A distributed application where the client program does not process data, but instead passes data for processing to an enterprise bean running on an application server

  3. An application that cannot be stopped by firewall

  4. An application compiled with the thin option of the javac command


Correct Option: B