The term “abstract” is a homophone that can mean one of two scholarly writing activities. One is the abstract that you will write to introduce your dissertation. The other meaning is a shortened writing assignment whereby you write a condensed summary of an academic journal. For this week, we will focus on writing a scholarly abstract of a qualitative journal. More information about writing an abstract can be found via the web resource “Writing Scholarly Abstracts.”
responsesystemanalysis2
refer to the attached document
Database Management
1. For parallel database, if “Different queries” run in parallel, how to handle possible conflicts?
2. What is the application of Hash partitioning and its advantages?
3. Since there are different data warehouse system available such as AWS, Snowflake,…etc.
If you want to retrieve some information/data/special topics from different warehouse system, what will you do? Such as what kind of steps needed to take and why shall we take those steps, or directly using keyword, etc. Note: you may need to concern about both of the efficiency and effectiveness (precision) performance.
4. What is data pipeline? List some advantages as using data pipeline.
5. Why is NoSQL become another important approaching for database and occupied a lot of marketing?
*****A simple explanation is required. Each question should be one paragraph. And one paragraph should be 5-8 sentence.
Open Access and create a new
Open Access and create a new database named “5-5 Applicants.”
Create a table named “Applicants” with the following fields: Date, Position, First Name, Last Name, and Phone. Select “Date” as the field type for the Date field. Select “Text” or “Short Text” as the field type for the other fields. Select the Phone field as the primary key.
Enter the following information into the table. Enter the current year in the dates (instead of 20–).
Date Position First Name Last Name Phone
1/3/20– Cashier ***** *****(###) ###-####1/4/20– Stocker Forrest Bayly(###) ###-####1/4/20– Cashier Susan Mcintyre(###) ###-####1/5/20– Manager Barry Gamble(###) ###-####1/5/20– Cashier Joshua Neslund(###) ###-####1/6/20– Stocker Erin Gonzales(###) ###-####1/6/20– Manager Laura Reynolds(###) ###-####1/7/20– Cashier Amy Pederson(###) ###-####1/7/20– Cashier Serena Worcester(###) ###-####1/7/20– Stocker Philip Raymond(###) ###-####1/8/20– Cashier Bryan Crider(###) ###-####1/8/20– Manager Sara Reyes(###) ###-####1/8/20– Stocker Lauren Hurst(###) ###-####1/9/20– Manager ***** *****(###) ###-####1/9/20– Stocker Tom Reitz(###) ###-####1/9/20– Cashier Kelly Tumpane(###) ###-####The owner has asked you to create a list of applicants sorted in ascending order first by the position and then by the last name. Create a query based on the Applicants table. In the query results, display all fields, and sort the data as requested. Save the query as “Position Sort Query.” Run the query and save the results table.
Solved Exp19_Excel_Ch08_CapAssessment_Employee_Satisfaction
Exp19_Excel_Ch08_CapAssessment_Employee_Satisfaction
Project Description:
You work as a data analyst for Camino Marketing, a U.S.-based web marketing company. You have been asked to conduct an employee satisfaction survey. As part of the survey, you will collect sample data to help provide insight into employee salaries, productivity within the three national offices, and to predict the growth of the New York office’s client base by 2025. Start Excel. Download and open the file named Exp19_Excel_Ch08_CapAssessment_EmployeeSatisfaction.xlsx. Grader has automatically added your last name to the beginning of the filename. Ensure the Employee Satisfaction worksheet is active, then use the FREQUENCY function to calculate the frequency distribution of job satisfaction in column D. Place your results in the range G5:G9. Enter a function in cell G12 to calculate the standard deviation of column c. Enter a function in cell G13 to calculate the variance between salaries. Enter a function in cell G14 to calculate the Covariance of the salaries and job satisfaction in the data set. Note this is a sample of data not a population. Enter a function in cell F17 to calculate the correlation coefficient between employee salary and job satisfaction. Ensure the Data Analysis ToolPak add-in is active. Use the Data Analysis ToolPak to create a histogram based on the salaries in column C. Use the range I4:I9 as the Bin Range. Ensure that Cumulative percentage, column labels, and chart output are included in the results. Place the results in cell K4. Edit the result text in cell K4 to display Salary, if necessary. Ensure the Office_Data worksheet is active. Use the Data Analysis ToolPak to perform a single factor ANOVA on the range C3:E35. Place the results starting in cell G3. Be sure to include column labels. Resize columns G:M as needed. Create a Forecast Sheet that depicts year over year growth in customer growth. Set the Forecast end year as 2025 and place the results on a new worksheet named 2025Forecast. Ensure the Customers worksheet is active then create a scatter plot chart that places the Years on the X axis and the Clients on the Y axis. Add a linear trendline to the chart that also shows the Equation and the R-square. Add the title Customer Growth. Enter a function in cell E4 to calculate the intercept of the linear trendline created in the prior step. Enter a function in cell F4 to calculate the Slope of the linear trendline. Enter a function in cell G4 to calculate the R-square of the linear trendline. Enter a function in cell H4 to calculate the Standard Error. Use the FORECAST.LINEAR function in cell E7 to the total number of customers by the end of 2021. Complete your analysis by added formulas in the range F7:G7 to calculate the high and low thresholds of the forecast. Save and close Exp19_Excel_Ch08_CapAssessment_EmployeeSatisfaction.xlsx. Exit Excel. Submit the file as directed.
fog computing for maria the tutor
red part
java : Question: Overview Use the principles of Object Oriented Design (OOD) and Object Oriented Programming (OOP) to re-build the horseRace
Java
Question: Overview Use the principles of Object Oriented Design (OOD) and Object Oriented Programming (OOP) to re-build the horseRace assignment using object-oriented programming. Each horse will be an object, and the race will be another object that contains a list of horses and manages the race. Along the way, you will experiment with UML, create classes,
This question hasn’t been solved yet
Overview Use the principles of Object Oriented Design (OOD) and Object Oriented Programming (OOP) to re-build the horseRace assignment using object-oriented programming. Each horse will be an object, and the race will be another object that contains a list of horses and manages the race. Along the way, you will experiment with UML, create classes, review access modifiers, build member variables, add access methods, and create constructors. The Project Build a program that simulates a horse race. The race works just like the last assignment, and the user may not ever see the difference. But this time, the underlying design will use objects. You will have two objects in the game. There will be an array of five horse objects. The horse will ‘know’ how to advance according to a random flip, and to return its position. The other primary entity in this game is the race (or the track, if you prefer.) This object will contain a series of horses. It will also have the ability to start the race. When the race is running, the race class will ‘tell’ each horse to advance, and will print out a track diagram showing the relative positions of the horses. In this case we may do automated testing against your program. In order to accommodate this you will prompt (ask for input) for a random seed and use it to seed your random number generator. This will allow you to test your program against several seeds. And we may test your program with a series of these random seeds. While this will not be your entire grade, but your ability to pass these tests could be a consideration in your grade. This is a common industry practice and one we will try to introduce you. Note that you will not need the automation feature nor a GUI. This just gives you an idea of the race concept. Code Organization While you have already written this program in a procedural fashion, this program is a perfect candidate for the object-oriented paradigm
Excel Project
I have an Excel project like this
Written report part will not be made, only Excel model
Psychology 1 (MEDIA ASSIGNMENT)
Details of Media Assignment
(APA RESEARCH PAPER) Psychology in the media
You will be required to write a research paper in APA format, it should be double spaced, minimum 5 pages (Not counting the TITLE page and REFERENCE page). You don’t have to have an Abstract. SKIP the abstract and after the title page go to the body of your work and follow the steps outlined.
The purpose of the assignment is for you to gain a broader understanding of how psychology is applied to everyday situations. Therefore, you will need to be a kind of “mini-expert” on the topics about which you are writing.
STEP 1: Choose a psychological disorder (you can Google them or refer to Chapter 14 in your book titled “Psychological Disorders.”
STEP 2: Research the disorder and tell me what is it? What are the symptoms and characteristics of the disorder? What can be done to prevent the disorder? What are the treatment methods for the disorder?
STEP 3: ALL of the above MUST be in APA format. Purdue University OWL is my favorite site to copy formatting and learn about APA Style: https://owl.english.purdue.edu/owl/resource/560/01/
Walden University also has Excellent guidelines on how to write in APA style
http://academicguides.waldenu.edu/writingcenter/apa
STEP 4: Choose a movie (Can be a documentary or a fiction), book, a biography of someone famous (must be someone known to the public (Angelina Jolie, Socrates, Hilary Clinton etc.). Writing about your uncle or niece will not suffice.
STEP 5: Your movie. Book, documentary character must have the disorder you will be writing about. In this section you will show if your character has the disorder and how is it displayed?
Write specific examples of how the disorder or the exceptional abilities are displayed according to various scenes. Show using specific scenes from the movie, book or documentary, how his/her behavior conforms to the disorder discussed? So I know you understand the subject you are writing about. DO NOT tell me the whole movie, ONLY talk about the relevant scenes where the disorder of the character is “Shown” and expressed in his/her behavior.
STEP 6: In few words tell me how your perception and understanding have changed about that particular disorder and how did that character influence YOU as a person? (Such as made you more open minded and understanding, or fueled your curiosity to study it more etc.).
How did your character influence or change social understanding and perception of the disorder presented?
STEP 7: All analyses must be typed in your own original writing. If you pass off others’ work as your own, it constitutes academic dishonesty and will result in disciplinary action.
GOOD LUCK! 🙂
SECURITY ASSESSMENT & TESTING
For each case answer the following questions
Question 1: What reason for this successful attack? What was the vulnerability (Flaw or weakness that allows a threat agent to bypass security)?
Question 2: Attack surfaces type?
Question 3: Who are the threat actors?
Question 4: What can be done to defend against this particular attack (So, it will not happen again)?
