179k views
5 votes
This is used in a program to mark the beginning or ending of a statement, or separate items in a list:_____

a. Separators
b. Punctuation
c. Operators
d. Key words
e. None of these

User MWB
by
5.0k points

1 Answer

2 votes

Answer:

B) Punctuation

Step-by-step explanation:

Punctuation are greatly used in different programming languages for different purposes. In the Java, C++ and C# Programming languages for example, two popular punctuation marks are the comma (,) and semi-colon (;). The comma is used for separating elements of a list and arrays, while the semi-colon indicates end of an executable statement or line of code. Other popular punctuation marks used in programming are periods (dot), question marks, parenthesis angle brackets and braces each implementing a specific grammatical syntax in the language.

User EarlGrey
by
5.2k points