Answer:
Toca un clip para pegarlo en el cuadro de texto.
Answer:
The central processing unit is the brain of the computer. it is the part of the computer which performs manipulations. it is also called the microprocessor.
components of the CPU: The control unit, the arithmetic and logic unit, the register and the memory unit.
I hope you understand:-):-)
Answer:
1. Art director: selecting color palettes.
2. Web project manager: creating budget spreadsheets.
3. Usability lead: researching target audiences.
4. Developer: coding.
Explanation:
HTML is an acronym for hypertext markup language and it is a standard programming language which is used for designing, developing and creating web pages.
Generally, all HTML documents are divided into two (2) main parts; body and head. The head contains information such as version of HTML, title of a page, metadata, link to custom favicons and CSS etc. The body of the HTML document contains the contents or informations of a web page to be displayed.
The various role performed during the web development process (task) includes;
1. Art director: selecting color palettes. This individual is saddled with the responsibility of choosing the color that best fits a website.
2. Web project manager: creating budget spreadsheets. He or she is responsible for performing tasks such as creating a financial (budget) plan, start and finish date (timing), procurement, etc.
3. Usability lead: researching target audiences. This individual is saddled with the responsibility of surveying and collecting data from the demography for which the website is designed.
4. Developer: coding. This is the technical expert referred to as a web developer and is responsible for writing the set of instructions (codes) that enables the website to work properly and serve a purpose.
Answer:
The following are the code in the C++ Programming Language.
//define header file
#include <iostream>
// using namespace
using namespace std;
//define a class
class Accumulator
{
//set private access modifier
private:
//declare integer type variable
int sum;
//set public access modifier
public:
//define constructor
Accumulator (int sum)
{
//refer the same class as instance variable
this->sum = sum;
}
//define integer type function
int getSum()
{
//return the value of sum
return sum;
}
//define void type function
void add (int value)
{
//variable sum is increased by the argument value
sum += value;
}
};
Explanation:
<u>The following are the description of the code</u>.
- Firstly, set the required header file and namespace then, define a class 'Accumulator' and inside the class.
- Set private access modifier then, declare an integer data type variable 'sum'.
- Declare a class constructor whose name is the same as the class name 'Accumulator()' and pass integer data type argument 'sum' in its parameter that refers to the same class as instance variable.
- Define a integer data type function 'getSum()' that return the value of the variable sum.
- Finally, define a void type function 'add()' and pass the integer data type argument 'value' in its parameter in which the variable sum is increased by the argument value
.