C++ Language Interview Questions and Answers for Freshers Pdf - 2

Question: 6

What is sorting?

One can rearrange the data in a given array either in ascending or descending order. This process is called sorting.

Question: 7

What is array of strings?

An array of strings is a two – dimensional character array.

The size of first index (rows) determines the number of strings and the size of second index (column) determines maximum length of each string.

Question: 8

What are the two parameters required for write function?

The two parameters required for write function are identifier string characters, and no. of characters to be displayed.

Related Questions