Which of the following is a keyword?
character
object
break
main
Answers
Answer:
break.........
It is only keyword in given list....
Explanation:
Answer: break
Concept : Keywords
Given : (a) character
(b) object
(c) break
(d) main
To Find : Which of the following is a keyword ?
Explanation :
'break' is a keyword among the other given words. Keywords are a special word in any language which have a specific meaning. These keywords can not be used as identifiers in a program. Keywords are also known as reserved words as they have a reserved meaning already written in a program. Languages like Java, C, Python, C++, Javascript, etc have some predefined words called keywords . There are 32 keywords in C language , they are - auto, break, case, char, const, continue, default, do, int, long, register, return, short, signed, signof, static, switch, struct, typedef, union, unsigned, void, volatile, while, double, enum, else, extern, float, for, goto, if.
#SPJ3