Solutions for Class 10 ICSE Logix Kips Computer Applications with BlueJ Java | IT Developer <?php echo $page_title; ?>
IT Developer

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