125k views
5 votes
1. _____ are used to clarify code, but are not interpreted by the interpreter as commands. (1 point)

(A) Functions
(B) Algorithms
(C) Statements
(D) Comments

2. ASCII and Unicode are the international standards that specify the binary code for any character
in any human language.
(1 point)
(A) True
(B) False

3. A ______ uses one or more conditions to return a true or false value. (1 point)
(A) binary breakdown
(B) split function
(C) logical expression
(D) bifurcated algorithm

User Rogala
by
5.7k points

2 Answers

3 votes

Answer:

1. D Comments

2. B False

3. C Logical Expression

User Roger Cuesta
by
6.0k points
4 votes

Answer:

1.Comments are used to clarify code, but are not interpreted by the interpreter as commands.

2. False

3. A logical expression uses one or more conditions to return a true or false value.

Step-by-step explanation:

1. Comments are codes that allow you to enter content that helps clarify the other codes and that later will not be reflected in the final work.

2. ASCII is a character code based on the Latin alphabet, represents texts and allows the control of devices that handle text such as the keyboard.

Unicode is a character encoding standard that makes it easy to handle texts from many languages, as well as texts from dead languages.

3. Logical expressions are those that can take one of two values, true or false.

User Qijun Liu
by
5.4k points