Answer:
The code to the given question can be given as:
Code:
1)
2 arrays that used to store 10 employee identification number and grosspay amount in parallel and its data-type is int and double.
int Employee_id[10]; //array that store integer value
double Weekly_Gross_Pay[10]; //array that store double value
2)
Define loop for print the details of employees’ identification number and weekly gross pay.
for(int i=0; i<10; i++)
{
cout <<Employee_id[i] <<" " << Weekly_Gross_Pay[i] << endl;
}
Explanation:
The explanation of the above code can be given as:
In Code (1) we declare two array that's data-type is integer and double. In Employee_id array it store the integer values and Weekly_Gross_Pay it store the double value.
In Code(2) It is used to print the value of array. In that code, we used for a loop because of its entry control loop and we know the size of the array. In this loop, we declare a variable (i) and initialized the value 0 and check the condition(i)less than 1 and increment of i. It prints all the 10 values.
Answer is "Web Designer".
Web Designers are the "artists" of the website. They conceptualize the layout and functionality of the site, from features to format. They may do little coding, and are mostly involved in the creative elements of web design. The Web Developer is less big-picture, and more knitty-gritty building of the website. She is the one who does the coding and actually builds the website, using the web designer's model.
Answer: A. Record Macro dialog box.
Explanation:
Answer:
For the university accounting system that replaces an existing system the appropriate generic software process model is Waterfall model
This is because the requirement of the system can be predicted in advance because of the existing system and secondly, this a mission critical system and the requirement are stable and reusable
For the interactive travel planning system that helps users plan journeys with the lowest environmental impact the appropriate generic software process model is Prototype Model
This is because the user's requirement may likely change and fast delivery is essential to be implemented and for this the prototype model can save time of development to focus on essential functions first.
Explanation:
In order to get a better understanding of the answers above let define the concept of
Waterfall Model:
We can define waterfall model as a type of software development approach that explains step by step development method, this software development approach consist of five to seven steps and each step is characterized by different tasks and objectives and these steps combined together explains the the life cycle of the the software development process.
Prototype Model
We can define prototype model as a type of system development approach whereby an estimation(i.e the prototype) of the final system is constructed,tested and adjusted until the desired result is obtained and the the main system is then constructed with the specification of the perfect estimation or prototype for example when constructing a bridge the engineer apply this methodology by first constructing an estimation or prototype of what the bridge should look like and then various test and adjustments are been carried out on this prototype bridge afterward he main bridge is been constructed with the specification of the prototype.