B. Because conditional statements have an IF before stating the condition
Answer:
A text editor
Explanation:
A text editor is an application that enables a programmer edit and create codes in a programming language. These codes are then executed to do just what the programmer wanted them to do.
Answer:
it changes the level of music, such as bass level or sweter level
Answer:Click the File tab, and click the Open option.
Explanation: correct on edge
The size of a list of integers can be found using python as follows;
size = len(list1)
<h3>How to find the size of a list using python?</h3>
The size of a list can be found using the len() function in python.
According to the question, the list is an integer.
Therefore, let's use an example below:
list1 = [1, 2, 1, 3, 6, 7, 8, 9, 4, 7, 8, 6, 4]
size = len(list1)
print(size)
Therefore, the size of a list of integers can be found using the len() function in python.
learn more on python here: brainly.com/question/14989942
#SPJ1