Answer:
command line and graphical user interface
Explanation:
there were (and still are) operating system with no graphical user interface at all, as for example some Unix releases
Answer:
Binary to Gray Code Converter
The logical circuit which converts the binary code to equivalent gray code is known as binary to gray code converter. An n-bit gray code can be obtained by reflecting an n-1 bit code about an axis after 2n-1 rows and putting the MSB (Most Significant Bit) of 0 above the axis and the MSB of 1 below the axis.
The 4 bit binary to gray code conversion table is given in attached file.
Answer:
Following are the correct code to this question:
short_names=['Gus','Bob','Zoe']#defining a list short_names that holds string value
print (short_names[0])#print list first element value
print (short_names[1])#print list second element value
print (short_names[2])#print list third element value
Output:
Gus
Bob
Zoe
Explanation:
- In the above python program code, a list "short_names" list is declared, that holds three variable that is "Gus, Bob, and Zoe".
- In the next step, the print method is used that prints list element value.
- In this program, we use the list, which is similar to an array, and both elements index value starting from the 0, that's why in this code we print "0,1, and 2" element value.
Answer:
A. The mathematical formula for finding the area of a circle.
D. Instructions for setting up a new DVD player
E. A series of steps that moves a "lighting bot" around to turns on lights.
Explanation:
Algorithm is a systematic procedure (or process) that produces the answer to a question or the solution of a problem in a finite number of steps.
Option A is an algorithm. The mathematical formula for finding the area of a circle gives a solution to a problem. The problem is finding area of a circle and the formula gives the step by step procedure finding the area of a circle.
Option B is not an algorithm. Option B just provide a list of your favourite animals and it doesn't answer a question we know about.
Option C is not an algorithm. A problem statement is still a problem with no solution whereas algorithm provides solution
Option D is an algorithm. It provides the step by step procedures for setting up a new DVD player
Option E is an algorithm. It provides a series of steps that moves a lighting bot around to turns on lights, so it provides a solution.