- Home
- Chapter 1 - Object Oriented Programming Concepts
- Object Oriented Programming Concepts
- Multiple Choice Questions
- State whether the given statements are True or False
- Assignment Questions
- Chapter 2 - Introduction to Java
- Introduction to Java
- Multiple Choice Questions
- Assignment Questions
- Chapter 3 - Values and Data Types
- Values and Data Types
- Multiple Choice Questions
- State whether the given statements are True or False
- Assignment Questions
- Chapter 4 - Operators in Java
- Operators in Java
- Multiple Choice Questions
- State whether the given statements are True or False
- Assignment Questions
- Chapter 5 - User-Defined Methods
- User-Defined Methods
- Multiple Choice Questions
- State whether the given statements are True or False
- Assignment Questions
- Chapter 6 - Input in Java
- Input in Java
- Multiple Choice Questions
- Assignment Questions and Programs
- Chapter 7 - Mathematical Library Methods
- Mathematical Library Methods
- Multiple Choice Questions
- Assignment Questions
- Chapter 8 - Conditional Constructs in Java
- Conditional Constructs in Java
- Multiple Choice Questions
- Assignment Questions and Programs
- Chapter 9 - Iterative Constructs in Java
- Iterative Constructs in Java
- Multiple Choice Questions
- State whether the given statements are True or False
- Assignment Questions and Programs
- Chapter 10 - Nested for loops
- Nested for loops
- Assignment Questions and Programs
- Chapter 11 - Constructors
- Constructors
- Multiple Choice Questions
- Assignment Questions and Programs
- Chapter 12 - Library Classes
- Library Classes
- Multiple Choice Questions
- Assignment Questions
- Chapter 13 - Encapsulation and Inheritance
- Library Classes
- Multiple Choice Questions
- Assignment Questions
- Chapter 14 - Arrays
- Library Classes
- Multiple Choice Questions
- Assignment Questions
- Chapter 15 - String Handling
- Library Classes
- Multiple Choice Questions
- Assignment Questions
User Defined Methods
Chapter 5
User Defined Methods
Class 10 - Logix Kips ICSE Computer Applications with BlueJ
![]() Share with a Friend |
Multiple Choice Questions
Question 1
A method that does not return a value has a ........... return type.
- double
- class
- float
- void ✔
Question 2
A method can return ...........
- any number of values
- 2 values
- only 1 value ✔
- 3 values
Question 3
If a method returns a value, then it must be ...........
- of the same data type as defined in its prototype ✔
- void type
- double type
- boolean type
Question 4
Parameters in the method definition are called ...........
- actual parameters
- formal parameters ✔
- informal parameters
- void parameters
Question 5
The parameters that are passed to the method when it is invoked are called ...........
- formal parameters
- actual parameters ✔
- informal parameters
- void parameters
Question 6
The method that changes the state of an object is known as ...........
- pure method
- impure method ✔
- perfect method
- imperfect method
Question 7
The scope of a local variable is limited to the ...........
- Windows
- Multiple programs
- Class
- Method or block it is declared in ✔
Question 8
The technique in which the change in the formal parameter gets reflected in the actual parameter is known as ...........
- call by reference ✔
- call by value
- call by argument
- call by method
Question 9
In which technique are the values of actual parameters copied to the formal parameters?
- call by reference
- call by value ✔
- call by argument
- call by method
Question 10
A method with many definitions is known as ...........
- many method
- multiple method
- void method
- overloaded method ✔
