Methods/Method Overloading Flashcards

1
Q

A collection of related classes

A

Package

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

The term _____is used to create Java programs, either application or
applet

A

Class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
  • it is used to group a set of related operations;
  • and is used to allow users to create their own data types.
A

Class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

A set of instructions designed to accomplish a specific task.

A

Methods

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

the package java.util contains the _____ Scanner. This _____ contains the method nextInt, nextDouble, nextLine for inputting data
into a program.

A

Class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

An application program is a collection of one or more ____

A

Classes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Collection of methods and data members

A

Class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

A _____can be predefined or standard ___, such as nextInt, print, and println, which are already written and provided as part of the system

A

Method

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

public class Classname
{
classMembers
}

A

Syntax of Class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Public static void main (String[] args)
{
statements
}

A

Syntax of a method main

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

is a collection of statements that are grouped together to
perform an operation or a task.

A

Method

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Methods can be: (2)

A
  • Predefined methods
  • User defined
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

In programming language like C and C++, methods are like ___.

A

Functions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

We create methods to make our program modular in a sense that commonly used commands which can be put in a single block of code and then every time we want to use the methods we just _______ it in our program instead of writing the same code______.

A

call, from scratch

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

are used to divide complicated programs into manageable
pieces.

A

Methods

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Methods that are already written and provided by java

A

Pre-defined method

17
Q

Methods that programmer create

A

User-defined Methods

18
Q

Advantages of using methods (4):

A
  • You can focus on just that part of the program
  • Different people can work on the same method simultaneously.
  • you can right one method once and use it many times
  • enhances program’s readability
19
Q

In java, predefined methods are organized as a collection of classes, called _______

A

Class libraries

19
Q

It is organized as a collection of classes

A

Predefined Method

21
Q

Give one example of class (method)

A

class Math (Package: java.lang):
Pow(x,y)
Sqrt(x,y)
Max(x,y)
Min(x,y)
Round(x,y)

22
Q

User defined methods are classified into two categories (2):

A
  1. Value-returning methods
  2. Void Methods
23
Q

Methods that have a return data type

A

Value Returning Methods

24
Q

Methods that do not have a return data type

A

Void Methods

25
Q

Methods Declaration Components (5):

A
  1. Modifiers
  2. The return type
  3. The method name
  4. The parameter list in parentheses
  5. The method body
26
Q

Such as public and private

27
Q

the data type of the value returned by the method, or
void if the method does not return a value.

A

The return type

28
Q

the rules for field names apply to method names as well.

A

The method name

29
Q

a comma-delimited list of input
parameters, preceded by their data types, enclosed by parentheses, ()

A

The parameter list in parentheses`

30
Q

Two types of parameter:

A
  • Formal Parameter
  • Actual Parameter
31
Q

a variable declared in the method heading.

A

Formal Parameter

32
Q

a variable or expression listed in a call to a method.

A
  • Actual Parameter
33
Q

Enclosed between braces - the method’s code, including the declaration of local variables, goes here.

A

The method body

34
Q

In java, several methods can have the same name within a class. This is called __________ or overloading a method name.

A

Method Overloading

35
Q

Two methods are said to have different formal parameter lists if both methods have (2):

A
  1. Different number of formal parameters, or
  2. If the number of formal parameter is the same, then the data type of the formal parameters, in the order you list, must differ in at least one position
36
Q

To overload a method name, within a class, any two definitions of the method must have ______________ list.

A

Different formal parameters

37
Q

Method overloading is an example of ________

A

Static Polymorphism