Answer:
u have to contact brianly and tell them that u accidentally made a different account name then the 1 u want
This system requires giving different codes to all characters in 5 bits. Thus, option "A" is correct.
<h3>What is a bit for a computer?</h3>
A bit is a binary digit, the most smallish increment of data on a computer. A bit can have only one of two values: 0 or 1, compared to the electrical values of off or on, respectively. Because bits are so small, you rarely work with data one bit at a time.
Thus, option "A" is correct.
To learn more about binary digits click here:
brainly.com/question/16942844
#SPJ1
Answer:
A) Switch
Explanation:
In Java and most programming Languages, A Switch Statement provides a multi branch statements which provides a more flexible way for transfer of execution to the branch that fulfills the condition of the expressed value. This is a better way of handling if...elseif....else statements. In this way, a variable is tested for equality against some values. Variables used in switch expressions can only be primitives (int, byte, char), enums and strings. A switch statement has
1. A default statement (optional), appears at the end of the switch and acts as the else condition.
2. A break statement which terminates the switch when reached.
The syntax of a switch statement is given below:
switch(expression) {
case x:
// code block
break;
case y:
// code block
break;
default:
// code block
}
Answer: print("I can code")
Explanation:
luckily im a coder
Answer:
The program code is completed below
Explanation:
Program Code:
"""
Your Name
Course Name, Section (example: ENTD200 B002 Spr15)
Instructor name
Week #
Date completed
"""
months = ["January ", "February", "March", "April", "May", "June", "July"
, "August", "September", "October", "November", "December"]
for i in range(0,12):
print("Month",i+1, "is" , months[i])