[solved] – Question 70404
Case Project 2-3: Selecting Server Postinstallation Tasks You have finished installing Windows Server 2012 R2 on the new server for CSM Tech. Next, you need to decide what to name the server and how it will participate in the exist-ing domain: as a domain controller, a member server, or a stand-alone server. The server will be named CSM-Server1-DC and located near the existing server in the equipment closet. List the postinstallation tasks you must perform on this server, including details on the server name and its role in the domain (if any). Don’t include installing specific server roles just yet.
Expert Answer
[solved] – Question 70435
Write a program that has a two-dimensional 3 by 5 integer array of gymnast scores in a competition. The scores must all be in the range of 0-10. Include nested loops to read in values into the array. Compute and print the average score for each gymnast in a seperate void function. Compute and print the overall score for each gymnast as well as the overall average(sum all 15 scores and divide by 15) in a seperate void function.
I have tried the problem but I don’t know how to do the functions and everything messes up. I think there should be 5 gymnasts with three scores per each. Thank you!
Expert Answer
[solved] – Question 70468
write program in c++ using for loops statements to print a circle of stars and diamond of stars
New
Expert Answer
[solved] – Question 70470
Write a program that asks the user to enter a starting number and an ending number. The program should then print all the numbers between the starting and ending number (including both of them), and the total of all the numbers it printed. You can assume that the starting number will be less than the ending number.
Sample run:
Enter the starting number: 2 Enter the ending number: 4
2
3
4
The total is 9
Expert Answer
[solved] – Question 70489
On the Loan worksheet, in cell C9, enter a PMT function to calculate the monthly payment for the
Altamonte Springs 2018 facilities loan. Ensure that the function returns a positive value and set
the references to cells B5 and B6 as absolute references.
Expert Answer
[solved] – Question 70518
(Employee Class) Create a class called Employee that includes three instance variablesa first name
(type String ), a last name (type String ) and a monthly salary ( double ). Provide a constructor
1
that initializes the three instance variables. Provide a set and a get method for each instance
variable. If the monthly salary is not positive, do not set its value. Write a test application named
EmployeeTest that demonstrates class Employee s capabilities. Create two Employee objects and
display each objects yearly salary. Then give each Employee a 10% raise and display each Employee
s yearly salary again
Expert Answer
[solved] – Question 70519
( Date Class) Create a class called Date that includes three instance variablesa month (type int ),
a day (type int ) and a year (type int ). Provide a constructor that initializes the three instance
variables and assumes that the values provided are correct. Provide a set and a get method for each
instance variable. Provide a method displayDate that displays the month, day and year separated
by forward slashes ( / ). Write a test application named DateTest that demonstrates class Date s
capabilities.
Expert Answer
[solved] – Question 70520
I need help on my database homework . I need to write SQL Statements i am not to sure how to do it
Expert Answer
[solved] – Question 70555
Stuck on this problem, can anyone help?
Fill in the following code to crash the program if the file fails to open
#include <iostream>
#include <fstream>
#include<__________>
using namespace std;
int main(){
ifstream.inf;
inf.open(“input.txt”);
if(!inf){
cout << “Failed to open file” << endl;
___________(_________) // type either true or false in the parenthesis which ever one would make the program crash
}
return 0;
}
Expert Answer

