Please run a Google search of the term, “United States Supreme Court Carpenter v. United States 2018.”
Please write an essay of not less than 500 words, summarizing the court’s decision in APA format
Please run a Google search of the term, “United States Supreme Court Carpenter v. United States 2018.”
Please write an essay of not less than 500 words, summarizing the court’s decision in APA format
“A picture is worth a thousand words” may be a lovely cliché, but it’s exactly the wrong way to view visualization.
Please view the Periodic Table of Visualization at the following link (http://www.visual-literacy.org/periodic_table/periodic_table.html).
Choose one Data Visualization and one Compound Visualization by placing your mouse cursor over each option.
Provide a brief description of your choices and explain why you made your choices.
Also, describe what advantage do your choices have over the others.
Write it in a 500+ words (Just the content not including Title page/References) Needed in APA format document.
Instructions:
Breakdown the topic using sub-headings when writing a paper.
Include in-text citations and references.APA format is expected. Please visit http://ucumberlands.libguides.com/citations/apa for APA guidelines.
When quoting a source, use the quote exactly the way it appears within quotation marks.
Make sure that you do not copy verbatim more than two words in a row from the text you have found in a resource. If you do use more than two words together, you will have to use quotation marks.
Review the rubrics before submission.
writing game story for gaming class
USE IMDB — ensures correct database is active
GO
PRINT ‘|—‘ + REPLICATE(‘+—-‘,15) + ‘|’
PRINT ‘Read the questions below and insert your queries where prompted. When you are finished,
you should be able to run the file as a script to execute all answers sequentially (without errors!)’ + CHAR(10)
PRINT ‘Queries should be well-formatted. SQL is not case-sensitive, but it is good form to
capitalize keywords and table names; you should also put each projected column on its own line
and use indentation for neatness. Example:
SELECT Name,
CustomerID
FROM CUSTOMER
WHERE CustomerID < 106;
All SQL statements should end in a semicolon. Whatever format you choose for your queries, make
sure that it is readable and consistent.’ + CHAR(10)
PRINT ‘Be sure to remove the double-dash comment indicator when you insert your code!’;
PRINT ‘|—‘ + REPLICATE(‘+—-‘,15) + ‘|’ + CHAR(10) + CHAR(10)
GO
GO
PRINT ‘CIS2275, Lab Week 6, Question 1 [3pts possible]:
Write the query to display the name and year of birth for all people born after 1980, who have
directed at least one show (i.e. those who appear at least once in the title_directors table).
Limit results to those who have died (who have a value in the deathYear column).
———————————————————————————————-
Columns to display: name_basics.primaryName, name_basics.birthYear
Sort in descending order by birth year.’ + CHAR(10)
—
— [Insert your code here]
—
GO
PRINT ‘CIS2275, Lab Week 6, Question 2 [3pts possible]:
Show every genre of television show which has had at least one title with 500 episodes.
i.e. limit results to the titleType ”tvEpisode” in the title_basics table, and to titles
containing a row in the title_episode table with episodeNumber 500.
———————————————————————————————-
Columns to display: title_genre.genre
Display genre name only, and eliminate duplicate values.’ + CHAR(10)
GO
—
— [Insert your code here]
—
GO
PRINT ‘CIS2275, Lab Week 6, Question 3 [3pts possible]:
Write a common table expression to identify the WORST shows: join title_basics against title_ratings
and limit your results to those with an averageRating value equal to 1. Project the title,
type, and startYear from title_basics; and label your CTE as BADSHOWS.
In the main query, show a breakdown of BADSHOWS grouped by type, along with the total number of
rows for each (i.e. GROUP BY titleType)
———————————————————————————————-
Columns to display: titleType, COUNT(*)
Sort results in descending order by COUNT(*).’ + CHAR(10)
GO
—
— [Insert your code here]
—
GO
PRINT ‘CIS2275, Lab Week 6, Question 4 [3pts possible]:
Identify the least popular professions. Show each profession value from the name_profession table,
along with the total number of matching rows (GROUP BY profession). Use the HAVING clause to limit
your results to professions with less than 1,000 rows.
———————————————————————————————-
Columns to display: name_profession.profession, COUNT(*)’ + CHAR(10)
—
— [Insert your code here]
—
GO
GO
PRINT ‘CIS2275, Lab Week 6, Question 5 [3pts possible]:
Use the query from #4 above to display the names of all people belonging to these professions.
Use the previous query as a subquery in the FROM clause here to limit the results.
———————————————————————————————-
Columns to display: name_basics.primaryName, name_profession.profession
Sort results in ascending order by primaryName.’ + CHAR(10)
—
— [Insert your code here]
—
GO
GO
PRINT ‘CIS2275, Lab Week 6, Question 6 [3pts possible]:
Show the name of every writer, along with the total number of titles they”ve written (i.e. rows in the
title_writers table). Limit results to those who have written between 5,000 and 10,000 titles (inclusive).
———————————————————————————————-
Columns to display: name_basics.primaryName, COUNT(*)
Sort results in descending order by primaryName.’ + CHAR(10)
—
— [Insert your code here]
—
GO
GO
PRINT ‘CIS2275, Lab Week 6, Question 7 [3pts possible]:
Show the actor and character names for everyone who has performed the same role in more than one
show with the title ”Battlestar Galactica”. i.e. identify the combination of (primaryName, characters)
which occurs in the title_principals table more than once for matching titles.
———————————————————————————————-
Columns to display: name_basics.primaryName, title_principals.characters, COUNT(*)
Sort results in ascending order by primaryName.’ + CHAR(10)
—
— [Insert your code here]
—
GO
GO
PRINT ‘CIS2275, Lab Week 6, Question 8 [3pts possible]:
Identify the names of people who have directed more than five highest-rated shows (i.e. title_ratings.averageRating = 10).
For each of these people, display their names and the total number of shows they have written.
———————————————————————————————-
Columns to display: name_basics.primaryName, COUNT(*)
Sort results in ascending order by primaryName.’ + CHAR(10)
—
— [Insert your code here]
—
GO
GO
PRINT ‘CIS2275, Lab Week 6, Question 9 [3pts possible]:
Display the title and running time for all TV specials ( titleType = ”tvSpecial” ) from 1982; if the run time is
NULL, substitute zero.
———————————————————————————————-
Columns to display: title_basics.primaryTitle, title_basics.runtimeMinutes
Sort in descending numerical order by the resulting calculated run time value.’ + CHAR(10)
—
— [Insert your code here]
—
GO
GO
PRINT ‘CIS2275, Lab Week 6, Question 10 [3pts possible]:
Identify every movie from 1913 (startYear = 1913, titleType = ”movie”); limit your results to those with a non-NULL value
in the runtimeMinutescolumn. For each movie, display the primaryTitle and the averageRating value from the title_ratings table.
Use DENSE_RANK() to display the rank based on averageRating (label this RATINGRANK), and also the rank based on runtimeMinutes
(label this LENGTHRANK). Both of these should be based on an asecending sort order.
———————————————————————————————-
Columns to display: title_basics.primaryTitle, title_ratings.averageRating,
RATINGRANK, LENGTHRANK
Sort results in ascending order by primaryTitle.’ + CHAR(10)
—
— [Insert your code here]
—
GO
GO
————————————————————————————-
— This is an anonymous program block. DO NOT CHANGE OR DELETE.
————————————————————————————-
BEGIN
PRINT ‘|—‘ + REPLICATE(‘+—-‘,15) + ‘|’;
PRINT ‘ End of CIS275 Lab Week 6’ + REPLICATE(‘ ‘,50) + CONVERT(CHAR(12),GETDATE(),101);
PRINT ‘|—‘ + REPLICATE(‘+—-‘,15) + ‘|’;
END;
Check attachment!!
Need this question APA format without plagiarism
details will be given in chat
Milestone 3: Design Modeling – Due 11/11
The Design Modeling part should contain the following components:
a. Final Class Diagram (see page 299, fig 8-15 (5th Ed))
b. Package Diagram (see page 267, fig 7-21 (5th Ed))
c. Database Design (see page 353, fig 9-16 (5th Ed))
d. Data Access and Manipulation Design (see page 358, fig 9-21 (5th Ed))
Write a brief paper in APA format of 500-1000 words that respond to the following questions with your thoughts, ideas, and comments. Be substantive and clear, and include the tables below to support your findings. Refer to the APA Sample Research Paper as a template for your write up.
A survey was conducted to analyze the debt of individuals in the United States. A researcher obtained this secondary data and ran Chi-Square and Crosstabulation analyses to determine if people who defaulted on loans is associated the level of education they completed. Additionally, the researcher wanted to determine which education level(s) are more likely to default on a loan. The results of his analyses are provided below.
Write the Results section of the paper and present the results using appropriate APA-formatted tables and figures. Include one research question and one set of an aligned null and alternative hypothesis to address the research goals outlined above. Follow all APA conventions and include the proper APA statistical notation. A clustered bar chart comparing the number of people who defaulted or did not default on a loan, for each education level, is included to help the reader visualized the data and should be included in your paper as an APA-formatted figure.
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: