Assignments:
1.) Access Module 1 SAM Training
2.) Access Module 1 SAM End of Module Pr*ject 1
3.) Access Module 1 SAM E*am: This consists of completing the skills learned on first assignment.
+1 (231)-518-0303 [email protected]
Home » Archives for chebby » Page 2310
Assignments:
1.) Access Module 1 SAM Training
2.) Access Module 1 SAM End of Module Pr*ject 1
3.) Access Module 1 SAM E*am: This consists of completing the skills learned on first assignment.
.Instructions
Faster Computing has contacted Go2Linux and requested a brief proposal presentation for migrating its systems from Windows to Linux.
The company is specifically interested in seeing the following information:
(10.1.1: Identify the problem to be solved.)
(10.1.2: Gather project requirements to meet stakeholder needs.)
(10.1.3: Define the specifications of required technologies.)
(1.1.3: Present ideas in a clear, logical order appropriate to the task.)
The deliverable for this phase of the project is a three- to five-slide PowerPoint narrated presentation.
For each slide, you will embed your own audio recording as if you were presenting the content to the Faster Computing team. Faster Computing has not yet committed to the project, so this should be presented as a proposal. The presentation should be visually appealing; the inclusion of at least one image that supports the content and adds value to the proposal is required.
(1.3.3: Integrate appropriate credible sources to illustrate and validate ideas.)
You must cite at least two quality sources.
You used at least 2 references and your references were cited properly following an accepted style. Ask your instructor for clarification.
Use the Migration Proposal Presentation template to get started.
(2.3.1: State conclusions or solutions clearly and precisely.)
You should present your proposal as if you are selling to the company. Revisit all of these important reasons in the summary slide.
As you progress in your IT career, you may find yourself making presentations to customers, client audiences, and professional peers. By creating an effective presentation, you are showing how you use your technical knowledge and convey your ideas to others in a professional setting, an important workplace skill.
The following evaluation criteria aligned to the competencies will be used to grade your assignment:
Due today: 1 page team plan
Topic: You are starting a new company and want to ensure organizational success through operational efficiency and strategic vision. The plan for this project is to understand where there is a need in the market to create a new product/ service, understand the components that need to be addressed or factored when managing operational efficiencies (to include resource management), and present the work as though asking for approval to proceed with the project.
Due today:9 pm est
Reamining details attached
Assignment 1:
Remote Access Method Evaluation
Learning Objectives and Outcomes
Ø Explore and assess different remote access solutions.
Assignment Requirements
Discuss which of the two remote access solutions, virtual private networks (VPNs) or hypertext transport protocol secure (HTTPS), you will rate as the best.
You need to make a choice between the two remote access solutions based on the following features:
Ø Identification, authentication, and authorization
Ø Cost, scalability, reliability, and interoperability
Requirement:
· ****Separate word document for each assignment****
· Minimum 300-350 words. Cover sheet, abstract, graphs, and references do not count.
· Add reference separately for each assignment question.
· Strictly follow APA style. Length – 2 to 3 paragraphs.
· Sources: 2 References to Support your answer
· No plagiarized content please! Attach a plagiarized report.
· Check for spelling and grammar mistakes!
· $5 max. Please bid if you agree.
Assignment 2:
Discuss techniques for combining multiple anomaly detection techniques to improve the identification of anomalous objects. Consider both supervised and unsupervised cases.
Requirement:
· ****Separate word document for each assignment****
· Minimum 300-350 words. Cover sheet, abstract, graphs, and references do not count.
· Add reference separately for each assignment question.
· Strictly follow APA style. Length – 2 to 3 paragraphs.
· Sources: 2 References to Support your answer
· No plagiarized content please! Attach a plagiarized report.
· Check for spelling and grammar mistakes!
· $5 max. Please bid if you agree.
Assignment 3:
Refer to the attached “Term Paper for ITS632(1)” for assignment.
Requirements:
· ****Separate word document for each assignment****
· Minimum 6 pages. Cover sheet, abstract, graphs, and references do not count.
· Add reference separately for each assignment question.
· Strictly follow APA style.
· Sources: 3-5 References
· No plagiarized content please! Attach a plagiarized report.
· Check for spelling and grammar mistakes!
· $30 max. Please bid if you agree.
The Popularity of Baby Names
In this project we will graph data about American baby names taken from the Social
Security Administration Website. We will read the data, store it in a dictionary of lists
data structure, and then let the user type in names. If a name appears in our data, we
will draw a graph, like the one below, showing how the popularity of the name evolved
since 1880. The graph below plots the frequency of babies named Karl by year.
As a side note, this plot is very similar to the plots that can be obtained from Googles
N-gram viewer, with the exception that this is a much more manageable set of data.
Input File
The primary data file countsByName.csv contains 97,310 names compiled from Social
Security card applications after 1879. It was downloaded and reformatted from the
Social Security Administration names database file ( here (Links to an external
site.)Links to an external site. ). The first line describes the columns. The leftmost
column is the name. This is followed by the number of applications with that name from
1880 to 2017.
Here are the first 9 lines from the file countsByName.csv:
Name,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893
Mary,7092,6948,8178,8044,9253,9166,9921,9935,11804,11689,12113,11742,13222,12839
Anna,2616,2714,3143,3322,3880,4014,4298,4240,5008,5085,5253,5114,5562,5712
Emma,2013,2043,2310,2374,2596,2742,2775,2661,3104,2894,2996,2897,3140,2982
Elizabeth,1948,1852,2193,2268,2565,2591,2691,2695,3236,3074,3124,3065,3469,3372
Minnie,1755,1661,2014,2049,2243,2184,2380,2226,2668,2637,2666,2440,2617,2528
Margaret,1578,1667,1828,1894,2152,2215,2283,2432,2914,2930,3115,3077,3447,3579
Ida,1480,1444,1678,1639,1890,1860,2057,1938,2242,2130,2188,2002,2269,2256
Alice,1414,1315,1542,1494,1732,1690,1821,1829,2207,2154,2281,2024,2381,2445
Normalizing your counts. To account for the fact that the population of the United
States has been increasing it makes sense to plot the percentage of applications
instead of the total number of applications for a specific name. To get the percentage of
applications for a specific name and year, you need to divide the count for that name by
the total number of applications that year. You have the counts by year from the file
above. We are also providing the totals by year in a separate file named
totalsByYear.csv :
Year,Total
1880,201484
1881,192696
1882,221533
…
2014,3696311
2015,3688687
2016,3652968
2017,3546301
Hint: The first line can be ignored by your program. Your program may assume that that
the year range always runs from 1880 to 2017 when creating the x-axis for your plots.
Graphing module
This assignment includes an introduction to using a simple graphing module that
outputs results in text to the screen. We will be using the plainchart.py module which is
not covered in your primary textbook. Download the module here from Canvas and put
it in the same directory as your Python code. You will only need to know three lines of
code to use the plainchart.py module:
# import the plainchart module at the top of your program
import plainchart
# create and print a text chart that is 25 lines high
# numList is a list of integer counts by year or
# a list of floating point percentages by year
chart = plainchart.PlainChart(numList, height=25)
print(chart.render())
Your objective is to create a list of numbers numList to give to the charting module. The
module works with both integers and floating point values. Also regardless of the range
of values, the module will automatically adjust the height of the chart to 25 lines.
Part 1 (40%) Reading the Database and Getting User Input
Get the file countsByName.csv and place it in the same directory you are running your
script.
You will begin by writing a program that reads in the file countsByName.csv and
populates a dictionary that can be used to look up a list of counts by year (columns
2,3,4,5,…in countsByName.csv) using the person’s name (column 1 in
countsByName.csv). The counts should be stored as a list of integers, not strings.
You will then write a loop that keeps asking the user to enter a name until it finds it in
the dictionary. When “Name” is found print out “Found Name” followed by the list of
counts. Do not assume that the user entered the name in the same case as used in the
file, instead use string methods to convert the user input to the correct case.
The exact format for the prompt and output is shown here:
What’s your name?chipmunk
What’s your name?xylophone
What’s your name?porschE
Found Porsche
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 10, 14, 9, 7, 19, 48, 64, 51,
45, 46, 57, 66, 82, 127, 182, 172, 159, 179, 123, 123, 70, 68, 45, 30, 35, 27, 12, 25, 32,
15, 20, 9, 15, 18, 17, 16, 11, 9, 14, 9, 5, 0, 13, 0, 5]
Strategy hints:
● When looking up a name, you should use string methods convert the case of
whatever the user entered to titlecase. (see example above)
● You will need to remove the name from the list of counts before storing it in
the dictionary. The pop list method can be used to remove elements from
lists.
● The split method will give you a list of counts as strings, but you will need to
convert them to integers before storing them in the dictionary.
● The format for the printed list is exactly what you get if your give a list to the
print command. (e.g. print(counts) ) We will improve on this output in the next
part.
Submit this to Kodethon as Baby_Names_Pt1.py
Part 2 (30%) Plotting the output
Download the plainchart.py module and place it in the directory where you are running
your script.
Modify your program so that it prints the maximum counts and then instead of printing a
list of integers it uses plainchart to plot the values.
Plainchart does not provide axes. The y-axis is provided by the Maximum Count. You
can write a loop that uses string methods to create the x-axis. Every 10 years (from
1880 to 2010) draw a bar “|”, followed by the year, followed by 5 spaces (for a total of 10
characters).
Strategy hints:
● If you can’t figure out the x-axis loop you may also do it with a single print
statement.
Submit this to Kodethon as Baby_Names_Pt2.py
Part 3 (30%) Normalizing
Get the file totalsByYear.csv and place it in the same directory you are running your
script.
Read in the file to get the total number of people in the database for each year. Note
that the number increases over time, and our plots will be more accurate representation
of the name’s popularity if we plot the percentage over time. For each year, compute the
percentage (count / total for that year) * 100, before plotting it with plainchart. Also
change the y=axis to show the maximum popularity as a percentage.
Strategy hints:
● The popularity is a percentage formatted to four decimal places. You will
need to multiply the years frequency (counts/total counts) by 100 to get a
percentage. You will need to use the format method to format the floating
point value for printing.
Submit this to Kodethon as Baby_Names_Pt3.py
Portfolio Project: This week discuss a current business process in a specific industry.
Note the following:
-The current business process itself.
-The industry the business process is utilized in.
After explaining the current situation, take the current learning from the course and:
Explain a new technology that the business should deploy.
Be specific, don’t only note the type of technology but the specific instance of technology. (For example, a type of technology is smart automation a specific type of automation is automated light-dimming technology).
Note the pros and cons of the technology selected.
Note various factors the business should consider prior to deploying the new technology.
The above submission should be three pages in length. Remember the total length does not include the APA-approved cover page or the references. There should be at least three APA approved references to support your work
i need help with my Microsoft excel project asap
Please read attached document and start work on assignment.
Assignment need by 3/29/2021 1PM EST.
On the internet or your phone, listen to TWO of the following early Rock and Roll songs from the list below: o Bill Haley, “Rock Around the Clock” o Elvis Presley, “That’s All Right” o Elvis Presley, “Mystery Train/”I Forgot to Remember to Forget” o Elvis Presley, “Jailhouse Rock” o Little Richard, “Tutti Frutti” o Chuck Berry, “Johnny B. Goode” o Chuck Berry, “Brown-Eyed Handsome Man” U o Buddy Holly, “That’ll Be the Day” o Buddy Holly, “Bo Diddley” MUS 121 – Rhythm Blues and Hip Hop Unit 2 – Rock and Roll – Music as a Cultural Artifact – Guided Listening Assignment After listening to your TWO selections, answer the following questions in a word document: o Define the musical term: Rock and Roll. o, Share a brief biography of each of the two bands/artists you chose. o Name the members of each of these bands. o Who were the songwriters of the songs that you chose? Was there any controversy surrounding the song if the performing artist was not the original songwriter? o Examine the lyrics and share the lines of each song which are your favorite and/or made an impression on you. o What are the ideas being addressed in each of these songs? o What is the date that the original music was written? What is the date that this original recording was made/released? o Has anyone else recorded the two songs you have chosen? If so, find one YouTube recording of “covers” of each the two songs you have chosen if they are available. If nothing is available, please indicate that as well. o List the instruments you hear in these recordings. Are each of these songs the same or different instrumentation? o What was your favorite thing about the performances/recordings? o What emotions did the performances/recordings make you feel when you heard it? Requirements: Three to four pages in length, excluding the Reference page. APA format, including an in-text citation for referenced works. At least four resources
Assignment 1
What is your definition of data visualization? What are the key components of data visualization? What techniques do you hope to learn from this course?
The answer must be 250 words. There must be APA formatted references (and APA in-text citations) to support the thoughts in the post.
Course Textbook: Kirk, Andy. Data Visualization: A Handbook for Data Driven Design, Second Edition. Sage, 2019
Assignment 2
When using different data algorithms, why is it fundamentally important to understand why they are being used?
If there are significant differences in the data output, how can this happen and why is it important to note the differences?
Who should determine which algorithm is “right” and the one to keep? Why?
The answer must be 100-150 words. There must be APA formatted references (and APA in-text citations) to support the thoughts in the post.
Textbook: Introduction to Data Mining
ISBN: 9780133128901