67.0k views
3 votes
HELP FAST!

It is conventional to capitalize which kinds of words when writing pseudocode?

A.
function names

B.
method names

C.
variable names

D.
keywords

User Eicksl
by
7.2k points

2 Answers

5 votes

Answer:

D. keywords

Step-by-step explanation:

It is conventional to capitalize keywords when writing pseudocode. Keywords are predefined words that have specific meaning in the programming language. They are used to perform specific tasks and have predefined meaning, it is important to distinguish these words from other words in the pseudocode. Capitalizing keywords makes it easier to read and understand the pseudocode, and can help to prevent errors in coding.

On the other hand, function names, method names and variable names are not capitalized when writing pseudocode, but are written in camel case or snake_case. It is important to note that the conventions for writing pseudocode may vary depending on the programming language or the organization.

User Shiladitya
by
7.5k points
7 votes

Answer:

D. keywords

Step-by-step explanation:

This is the convention recommended when writing pseudocode

Examples are READ, WRITE, INPUT, IF, ELSE, ENDIF, WHILE, etc.

User CrisisGriega
by
7.6k points