Computer Science, asked by rajputradha946, 3 months ago

which of the following is a keyword a) character b) object c) break d) attribute​

Answers

Answered by BrainlyProgrammer
5

Answer:

Option C: break

What is break keyword?

It is a predefined word which we can use to come out of a loop/switch block

In java, you can use break in 2 different ways in a nested loop

  1. break; //By default, it brings the control(compiler) out of the inner loop
  2. break outer; //Used to come out of the outer loop even if you are in the inner loop

While, in switch block it is necessary to use break statement after every cases otherwise fall-through will appear When break statement is not present at the end of the particular case, it automatically goes to the next case this is known as fall through)

What are keywords?

  • Keywords are those pre-defined reserved words which cannot be used as a variable name.
  • These words are reserved by the system and they carry special meaning.
  • It cannot be used as a variable names
  • It must be remembered that All keywords are reserved words but all reserved words are not keywords.
Answered by krishna210398
1

Answer:

The correct answer is c) break

Explanation:

What is break keyword?

It is a predefined word which we can use to come out of a loop/switch block

In java, you can use break in 2 different ways in a nested loop

break; //By default, it brings the control(compiler) out of the inner loop

break outer; //Used to come out of the outer loop even if you are in the inner loop

While, in switch block it is necessary to use break statement after every cases otherwise fall-through will appear When break statement is not present at the end of the particular case, it automatically goes to the next case this is known as fall through)

What are keywords?

Keywords are those pre-defined reserved words which cannot be used as a variable name.

These words are reserved by the system and they carry special meaning.

It cannot be used as a variable names

It must be remembered that All keywords are reserved words but all reserved words are not keywords.

which of the following is a keyword a) character b) object c) break d) attribute​

https://brainly.in/question/41210424

What is irreversible process

https://brainly.in/question/14792358

#SPJ2

Similar questions