Computer Science, asked by royalprince50, 5 months ago

Carefully read the following program fragment and identify each token(keyword,

identifier, literal, operator & punctuators) used :

a = 20

b = 30

if a> b:

print(“It’s a great day”)​

Answers

Answered by rohitkhajuria90
0

KEYWORDS

if

print

IDENTIFIERS

a

b

c

LITERALS

20

30

"It's a great day"

OPERATORS

=

>

PUNCTUATORS

:

()

Similar questions