Computer Science, asked by abcd65807, 8 months ago

Differentiate between the following statements:
abc p = new abc();
abc p = new abc(5,7,9);​

Answers

Answered by pavitranayak04
7

Answer:

First statement shows the default parameter.

This statement is always executed.

Second statement will be executed with the parameterb 5, 7 and 9.

Similar questions