Answer:
Your answer would be option D
Explanation:
Computer aided software can do everything that it states from A to D.
A, is true because it could display physics of items such as building models or cars.
B, This is very common such as WW11 movies and there backgrounds, such as a city that doesn't exist anymore or the world trade center before the incident.
C, With current tech you would make many different landscapes and areas that don't even exist like editing a grassy landscape during fall and putting snow over the land scape making it look like there is snow when there's not.
BRAINLEIST PLEASE! if you have any questions please ask.
Answer:
#include<iostream>
using namespace std;
//create the function which add two number
void addTwoNumber(int num_1,int num_2)
{
int result = num_1 + num_2; //adding
cout<<"The output is:"<<result<<endl; //display on the screen
}
//main function
int main(){
//calling the function
addTwoNumber(3,6);
return 0;
}
Explanation:
First, include the library iostream for using the input/output instructions.
then, create the function which adds two numbers. Its return type is void, it means the function return nothing and the function takes two integer parameters.
then, use the addition operation '+' in the programming to add the numbers and store the result in the variable and display the result.
create the main function for testing the function.
call the function with two arguments 3 and 6.
then, the program copies the argument value into the define function parameters and then the program start executing the function.
Register, google CPU registers for more info
Answer:
The answer to this question is the option "a".
Explanation:
In computer science, the term SDLC stands for Software Development Life Cycle or it is also known as the System Development Life Cycle. This process used by the software industry to produce high-quality software. It aims to produce high-quality software that fulfills customer expectations. The term system specifications is a part of the SDLC. In this part we check the software support the system or not so the answer to this question is system specifications.