Computer Applications
The parameters that are passed to the method when it is invoked are called
- formal parameters
- actual parameters
- informal parameters
- void parameters
User Defined Methods
4 Likes
Answer
actual parameters
Reason — The parameters that are passed to the method when it is invoked are called actual parameters.
Answered By
2 Likes
Related Questions
Object that share the same attributes and behaviour are grouped together into a/an
- interface
- instance
- alias
- class
The statement
(1 > 0) || (1 < 0)evaluates to- 0
- 1
- false
- true
Give the output of Math.sqrt(x); when x = 9.0.
- 3
- 3.0
- 3.00
- All of these
What will be the output of the following code?
String a[] = {"MI", "Samsung", "Micromax", "One Plus"}; System.out.println(a[3].length());- 8
- 7
- 5
- 9