Most likely bring it to your managers attention and and have him contact an OSHA employee.
The answer is D
<span>D) It allowed computers to be smaller because the chip allowed for the creation of computer components with varying capabilities.</span>
To put it into simple terms, software is always a continuous
process of coding and updating, thus, you will never code and be done. Professional
software not only consists of programs that are developed for a client, but
also the compilation of documentation, configuration of data, support websites,
requirements, design manuals, and evolution to make these programs operational
and complete.
A professionally done software system consists of more than one
program and configuration files used to set up these programs.
that sound like the CPU, the central processing unit, it handles the informations and distributes it.
Answer:
<em>The programming language is not stated; However, I'll answer this question using 2 programming languages (Python and C++)</em>
<em></em>
<em>Comments are used for explanatory purpose </em>
Python program starts here
def get_my_age(): #Declare function
age = 21 #Assign value to age
print(age) #Print age
get_my_age() #Call function
#End of Program
C++ Programming Language starts here
#include<iostream>
using namespace std;
int get_my_age() //Declare Function
{
int age = 21; //Assign value to age
cout<<age; //Print age
}
int main()
{
get_my_age(); //Call Function
return 0;
}