identify five tasks that can use applications in Microsoft Office 2016 Suites and discuss the benefits for each task in relation to your work.
diss
This week we focus on the concept of false discovery in data. After reviewing the article by Naouma (2019), answer the following questions:
- What is a false discovery rate?
- Can a false discovery rate be completely avoided? Explain.
- What was the outcome of the results of the use case?
Data Visualization
Choose three of the storytelling techniques(below) in which data is presented and stories are being interpreted. Discuss the importance and the advantages of using these techniques. Provide an example of each technique.
Matrix chart
Treemap
sunburst chart (use below)
References
https://counterculturecoffee.com/learn/resource-center/coffee-tasters-flavor-wheel
Atleast Two APA references
Computer Security Assignment
***The assignment is in the Word Doc.***
– Please read the Word document so you understand the assignment.
– Use the sources attached to this assignment.
– Please deliver on time.
create a stand alone web site
Introduction: Apply learned skill to create a simple website with functional links Instructions: To complete your Final Project for CTI 110, you must create a stand-alone Web site. Your site must fulfill the following requirements. Three to five individual Web pages (of which one should be an “About” page containing your contact information using a mailto link) A hierarchy of navigation: User should be able to move from page to page freely At least one page which utilizes tables to display information At least one page which utilizes forms (such as a user feedback form) You should create a ZIP file containing the directories containing your site. You may optionally choose to host your website on a free website hosting service. Submit your project proposal and the completed site using the link below. Grading Criteria: Minimum of three pages (20 points each) Functional links + at least one image embedded ( 20 points) Table added to website (10 points) Simple form added to website (10 points) ATTACHED IS A PROJECT PROPOSAL. LOOKING FOR BASIC. NOTHING FANCY. AS LONG AS IT GET A 70%
Internship Assignment
Note: No need of mentioning the company name, simply can say – my organization.
Working as AWS Developer
In 300 word paper, reflect on your internship and how it related to your executive masters program at university. As you prepare your paper, you might consider answering some of these questions:
- How did this internship help prepare you for future endeavors, both academically and in the workplace?
- What was the best and worst parts of your overall experience?
- What surprised you about this internship?
- What, if any, were any disappointments?
Operating System
what phone or laptop do you own?…what is the operating system on your device?…be VERY specific…what was it about the operating system that made you choose it?…now that you have purchased your device, what is your evaluation of the operating system?…does it perform and do all the things you thought it would when you made your decision to buy?…are you satisfied with the security aspects of the operating system?…for each question, explain WHY…
Be VERY specific when you answer this…
REMEMBER…this is a PERSONAL evaluation of the decision that you made regarding your purchase…it is NOT a list of functions and features…you may reference functions and features but you need to be specific on how those functions or features apply to YOU…if all you do is provide me a list of functions and features, you will NOT do well on this assignment…
You should submit at least TWO FULL PAGES OF CONTENT…meaning sources, title, etc. do NOT count…be sure to include any reference material you used…
Cyber security
Write a research paper of 4 to 5 pages length on Cyber Security. The length of pages does not include references. There must be a separate page for reference.
Exp19_Excel_Ch08_Cap_Golden_State_5K
Exp19_Excel_Ch08_Cap_Golden_State_5K
Project Description:
You are a volunteer for the Golden State 5k, an annual 5k held across several cities in California to raise money for at risk youth. As part of your duties, you track donations, volunteer information, and race results. This year you have decided to use Excel to calculate frequency distribution by age and time, calculate various descriptive statistics, and forecast participation rate as well as donation rate for 2025.
Start Excel. Download and open the file named Exp19_Excel_Ch08_Cap_GoldenState5k.xlsx. Grader has automatically added your last name to the beginning of the filename.
Ensure the RaceResults worksheet is active, then use the FREQUENCY function to calculate the frequency distribution of the race results in column D. Place your results in the range G4:G9.
Enter a function in cell F22 to calculate the correlation between age (Columns C) and race time (Column D).
Enter a function in cell G22 to calculate the covariance between age and race time.
Enter a function in cell H22 to calculate the variance of the ages in the data set. Note this is a sample of data not a population.
Enter a function in cell I22 to calculate the standard deviation of the ages in the data set.
Ensure the Data Analysis ToolPak add-in is active. Use the Data Analysis ToolPak to create a histogram with chart output starting in cell H12 based on the ages of the runners surveyed. Use the range F13:F18 as the Bin Range. Ensure that Chart output and Cumulative percentage is included in the results. Place the upper left hand corner of the chart in cell L13.
Ensure the VolunteerInfo worksheet is active. Use the Data Analysis ToolPak to perform a single factor ANOVA on the range C5:E21 (Including column lables). Place the results starting in cell G5.
Create a Forecast Sheet that depicts year over year growth in participation for the city of Los Angeles. Set the Forecast end year as 2025 and place the results on a new worksheet named 2025Forecast.
Ensure the Participants worksheet is active then create a scatter plot chart that places the Participant observations on the X axis and the Donation dollars on the Y axis (do not include column headings). Add the chart title Participant Forecast and a linear trendline to the chart that also shows the Equation and the R-square.
Enter a function in cell F6 to calculate the intercept of the linear trendline created in the prior step.
Enter a function in cell G6 to calculate the Slope of the linear trendline.
Enter a function in cell H6 to calculate the R-square of the linear trendline.
Enter a function in cell I6 to calculate the Standard Error.
Use the FORECAST.LINEAR function in cell F9 to forecast potential donations once the goal of 20,000 participants is reached. Format the results as Currency.
Complete your analysis by adding formulas in the range G9:H9 to calculate the high and low thresholds of the forecast.
The weight of water is 62.42796 pounds
1.Code writing
The weight of water is 62.42796 pounds per cubic foot.Write a complete C++ program to input the length, width, and depth of a pool in feet. Compute the volume (Volume is the length times the width times the depth) and multiply this by the weight of a cubic foot of water.Checkpoints: The weight of water must be declared as a pound defined global constant; must prompt the user for each dimension separately; and, output must be one digit to the right of the decimal point.Write all necessary statements. Use no function other than main().. No arrays, no loops. (20 points)Sample run:Enter length (ft): 30.6
Enter width (ft): 15.2
Enter depth (ft): 8.0
Weight: 232291.9 pounds2.Code writing
Complete the program below writing by writing the prototypes and function definitions for getData() and for calBMR(). Make no changes to main()!Function getData() is to prompt the user for and input the person’s weight, height (in inches), age, and ‘F’ for female and ‘M’ for male. Make sure that the program is not case sensitive and exit the program if there is a data entry error. The function calcBMR() should calculate and return the basil metabolic rate (BMR).For Women: BMR = 655 + 4.3 * weight + 4.7 * height in inches + 4.7 * ageFor Men: BMR = 66 + 6.3 * weight + 12.9 * height in inches + 6.8 * age#includeusing namespace std;// Write the prototypes for getData() and calcBMR()__________________________________________________________________________________________int main()
{
// Local Declarations
double weight, height, age;
char sex;
double valBMR;
//Call function to input person’s information
getData(weight, height, age, sex);
//Call function to calculate BMR
valBMR = calcBMR(weight, height, age, sex);
// Output
cout << "BMR: " << valBMR << endl;return 0;
}// main
//Define functions getData() and calc()HTML Editor Keyboard Shortcuts
3. Code writing
Meridian Corporation of Fremont is trying to decide whether to reward employees who carpool to work. The proposed plan is to pay each employee in the carpool $ 0.08 per mile if the minimum passenger efficiency of 25.0 is met. The passenger efficiency is calculated asP = nm
Gwhere n is the number of people in the carpool, m is the distance traveled in miles and G is the number of gallons of fuel used.The file opened in part A (do not open it again but do have a reference to it as a parameter) contains data on existing carpools. The input file represents each existing carpool as a line of data containing the number of people in the carpool, the total commuting distance for a five-day work week, and the number of gallons used. Write a function called calcEfficiency to process this file until the end of data. Calculate the passenger efficiency for each carpool and if the efficiency is greater than 25.0 then output the passenger efficiency and the amount to be rewarded to the screen. Use no arrays! Paste in only the function definition – not main() even it you wrote it to test your program.Sample carpool.txt2 80 4
3 125 10.5
2 350 15.9Sample output Screen:Efficiency Money
40.0 $ 6.40
35.7 $10.00
44.0 …
4. Assume #includeGivenifstream fpIn;Write a statement to open a file called carpools.txt and assign the pointer to fpIn. If the file cannot be found, then print out the message No such file and exit the execution of the program.