Answer:
The central processing unit (CPU), also called a processor, is located inside the computer case on the motherboard. It is sometimes called the brain of the computer, and its job is to carry out commands. Whenever you press a key, click the mouse, or start an application, you're sending instructions to the CPU.
Explanation:
Answer:
el disco duro es un componte de almacenamiento de una pc, su uso es de guardar archivos también como el sistema operativo de ejemplo :linux, window ,mac etc
Explanation:
Answer:
The program using do-while loop defined as follows:
Program:
#include <stdio.h> //include header file
int main() //defining main method
{
int i = 0; //defining integer variable i and assign value.
//defining do-while loop
do
{
printf("%d", ++i); //print value
}while (i<5); //check condition
return 0;
}
Output:
12345
Explanation:
Output of given program:
In the given program, it will not print any value because in while loop semi colon is used which is not valid.
Program Explanation:
In the above C language program header file is included, which provides features to use basic function then the main method is defined inside this method an integer variable "i" declare, that holds a value which is "0". In this method, the do-while loop is defined. In the do section, we print value and in the while block checks the condition which is i is less than 5.
Using the knowledge in computational language in python it is possible to write a code that uses process of writing a class definition for the class Book.
<h3>Writting the code in python:</h3>
<em>class Book:</em>
<em> # a constructor for this class.</em>
<em> # The constructor should accept an argument for each of the fields.</em>
<em> def __init__(self, book_title, book_author, book_publisher):</em>
<em> self.book_title = book_title</em>
<em> self.book_author = book_author</em>
<em> self.book_publisher = book_publisher</em>
<em />
<em>def main():</em>
<em> b = Book("title1", "author1", "publisher1")</em>
<em> print(b.book_title)</em>
<em> print(b.book_author)</em>
<em> print(b.book_publisher)</em>
<em />
<em />
<em>main()</em>
See more about python at brainly.com/question/18502436
#SPJ1
Answer
No I believe that it works on the computers instead of the wifi