- 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 |
State whether the given statements are True or False
Question 1
A method may contain any number of return statements.
True
Question 2
The non-static methods need an instance to be called.
True
Question 3
A method can return more than one value.
False
Question 4
Methods defined as void must return a value.
False
Question 5
The static methods need an instance to be called.
False
Question 6
In Java, all primitive types are passed by value and all reference types are passed by reference.
True
Question 7
You can place the return statement in a void method without any expression.
True
Question 8
If a method returns a value, then it must be of the same data type as defined in the method prototype.
True
Question 9
Parameters in the method definition are called dummy parameters.
True
Question 10
Methods reside in a class in Java.
True
Question 11
Method overloading is one of the ways by which Java implements polymorphism.
True
Question 12
The scope of a local variable is limited to the method or the block it is declared in.
True
Question 13
The keyword static makes a method a class method.
True
Question 14
An impure method always returns the same value when the same arguments are given.
False
