Query Your Database

 I have the database done from the previous module Ill send to you upon me accepting.

In the last module, you build your database.  But a database without any data isn’t useful at all!  In the last module, you build your database.  But a database without any data isn’t useful at all!  So now that you have had some practice in writing SQL queries and you have a functional database in at least third normal form (from the previous module), it’s time to populate your database and write some queries!

Step I

Populate your database that you created in module 5 with some representative testing data. Include at least 15 records for each of the tables (use INSERT commands or GUI tools provided by the DBMS you select).

Step II

Think of descriptions for six data querying requirements that could be answered from the data stored in your database, three requirements to change data already in the database, and three requirements to delete data already in the database.  Answers to your querying requirements should contain at least two JOINs; two aggregation functions; a GROUP BY clause; and three WHERE or HAVING clauses.  See the discussion instructions for examples.

Step III

In a Word document, prepare the following for each DML requirement you came up during Step II:

  • The description for your requirement
  • The DML statement (SQL command) that will get you the data you need – do not use a query generator or graphical tool to write this; write it on your own
  • A screenshot of the resulting query output when executed on your database

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

information technology

 

https://www.cnet.com/

Right  click the link above and open it in a new tab or window. You may also  right click and copy the hyperlink and paste it into the address like of  Chrome or Firefox.

CNET  is a great website for technology news and review. Their About Us page  states, “CNET tells you what’s new in tech, culture and science, why it  matters, how it works and what you need. Our global team works 24/7 to  explore and explain the changing world around us. You can depend on CNET  for news, commentary, analysis, features, FAQs, advice, hands-on  reviews, buying guides, amazing photography and fun and informative  videos.”

We  want you to read at least one article or view a video about hardware  (not software). Then write a brief summary (or create a short  presentation) summarizing the article using MS Word or PowerPoint. Brief  means no less than 10 sentences but not more than one page. Make sure  to cite your source properly. 

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Excel Skills

 

Click on USA3-Steel.xlsx (this is the document that you will be formatting according to the instructions) 

Click on Excel Assessment.docx (this is the instruction sheet for formatting (USA3-Steel spreadsheet)

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Assignment 3

 Assignment 3 Individual CS 120/121 Objectives: 1. Produce a persuasive research paper from the outline developed in Assignment 2 2. Create a Microsoft PowerPoint presentation to share your topic, findings and conclusion. In this assignment, you will use everything that you have created in Assignments 1 and 2 to produce a cohesive and well-written paper, which clearly conveys your research topic and supporting evidence to your readers. Your paper should include a detailed analysis of research found, including explanations of statistics and the methodology/techniques of studies that you include as support for your position. Final paper should include a visual aid that provides supplemental information (tables, charts, graphs, figures, etc). Explain how the visual you included helps support your position. In addition, you will be creating a PowerPoint presentation to share your research topic, position and supporting evidence with the class. Your slides should be readable, well designed to catch the audience’s attention, and include the main points of your research topic. Due date: Refer to Important dates document on Portal Infolit tutorial 7 must be completed prior to the submission of the individual portion (submission link may vary for different instructors). There may be a penalty for non-completion, so be sure to ask your professor about this in class. 1 Directions: 1. Start with the title of your paper. 2. Write your complete paper (you can use your full-sentence outline from A2 to guide you). • Include your thesis statement and introduction of your topic. • Include at least one object o An object can be a table, figure, graph or chart – with an explanation of how it is related to your research. 3. Create a bibliography for your sources using EndNote (in APA 7th edition format). All sources are created using EndNote. DO NOT copy and paste, must import from EndNote. 4. Include at least one properly formatted footnote in your paper. (Note: footnotes are not for citation – APA 7th follows in-text citation methods, but are for providing additional information. Example: You are citing the results of a research study in support of your position, a footnote can be used to provide background information on the study such as sample size, duration, any controls or variables, etc. that may help enhance your reader’s understanding of the methodology of the researchers who conducted the study) 5. Write student biography Include a photograph 6. Develop PowerPoint slides for your presentation Microsoft Word Document Requirements: • Name the document: o a3-ind-group-##-name.docx ▪ Replace ## with your group’s number ▪ Replace name with your name • Include o Your name o Professor’s name o CRN number o Group number • Write complete research paper – follow content requirements above and the formatting instructions below • Line spacing: single spaced • Margins: 1 inch all around • Paragraph style: justified • Font type: Times New Roman • Font size: 12pt • All sources are created and imported from EndNote • You should submit your individual draft through SafeAssign on Blackboard. This is a program that checks for plagiarism and helps students learn to properly attribute sources. This submission is mandatory. 2 Microsoft PowerPoint Requirements: • Name the PowerPoint: o a3-ind-group-##-name.pptx ▪ Replace ## with your group’s number ▪ Replace name with your name • Include o Your name o Professor’s name o CRN number o Group number • Information to include: o Slides of the research project supported by evidence o Include at least one visual aid (table, chart, graph, figure, etc) and explain how it is related to your research topic o Include your student biography with a picture 

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

python

or HW 3, you should use a main() function to control the program you write. You should also use other functions as appropriate (or as specified). 

  1. String Manipulation – Write a program that asks the user to enter a word or phrase and then displays the word or phrase with all occurrences of the letter “r” removed. Example: “Park the car in Harvard Yard” becomes “Pak the ca in Havad Yad.”
  2. Special Number – Write a program that can find a four-digit number that has the four digits reversed when multiplied by four. For example, rstu * 4 = utsr. The program should report the number to the user. 
  3. Check for Palindromes – Write a program that prompts the user to enter a word or phrase. Then check to see if the word is a palindrome. A palindrome reads the same forward and backward ignoring punctuation and spaces. For example, “racecar,” “Madam, I’m Adam,” and “Anna.” You can use these palindrome sentences (Links to an external site.) as a source for checking if your program works. 
  4. Calculate the Factorial – The factorial of a positive integer is the product 1 * 2 * 3 * 4 … * n where n represents the positive integer. Write a program that asks the user to enter a positive integer and calculates the factorial. Use a main() function to control the program flow. Write a function to get an integer from the user and verify the user entered a positive integer value. Write a different function to calculate the factorial for a number. 
  5. [REMOVED FROM PY HW 3 BECAUSE WE DID NOT COVER FILE I/O IN CLASS YET] Crayon Colors – The file “Colors.txt Download Colors.txt” contains the names of 123 crayon colors with one color per line. Write a program that asks the user to enter a letter of the alphabet and then displays all the colors that start with that letter. Write three separate functions: one to get the user input, one to read the colors.txt file into a list, one to build a list with the colors that start with the letter, and one to display the output. 
  6. Anagram Checker – Write a program that asks the user to enter two words or phrases. Then check to see if the words or phrases are anagrams of each other. Two words or phrases are anagrams of each other if they use the same letter with the same frequency in both phrases. Examples include night & thing, inch & chin, elbow & below, little big man & labeling mitt, another day & a hearty nod. 
  7. [REMOVED FROM PY HW 3 BECAUSE WE DID NOT COVER FILE I/O IN CLASS YET]Sorting States List – The data file “States.txt Download States.txt” contains the 50 US states in order they joined the union with one state per line. Write a program to read the file contents into a list. Then sort the list based on the number of consonants contained in the state name in ascending order. HINT: You will need to write a function to count the number of consonants in a word. 
  8. Reading Numbers – Write a program that asks the user to enter a number with 27 digits or less. The convert that number into a set of three-digit numbers and associated place values. Display the results to the user. The following table shows the output if the user entered 293452000450041006950254586. 

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Unit 7 db#2 + responses

 What are some ways that the government could collect data on non-criminal citizens? How could this information be misused? Please use outside research to back up what you say and be sure to cite your sources. 

Then respond to 2 classmates

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Unit 3 DB: Database Implementation

1 page due Wed 

 A friend of yours is running his business on what is becoming a more complex linked spreadsheet.  He invited you to assess the situation and propose a solution.  After a thorough study, you have suggested that he start using a database.  How would you justify the use of a database?  He also asked you to explain what he called “buzz words” that are surging the IT field:  

  • What is the difference, in terms of functions and roles, between DBMS and SQL?  
  • Define and explain the difference between database, data warehouse, and big data?

In response to your peers, please fill in any gaps or add more detail to help support their answer, emphasizing the critical features and operations of the relational model and why it is the most popular database model. 

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

module 06

 

Module 06 Content

  1. Lab assignment develop a PowerPoint presentation on assessing the value for SSL decryption in an Enterprise environment. Your PowerPoint presentation will require a minimum of 8 slides and no more than 12 slides. You will need to include clear and concise work notes within your presentation slides. Be sure to cite your sources.

    Submit your completed assignment by following the directions linked below. Please check the Course Calendar for specific due dates.

    Save your assignment as a PowerPoint document. (Mac users, please remember to append the “.PPT” extension to the filename.) The name of the file should be your first initial and last name, followed by an underscore and the name of the assignment, and an underscore and the date. An example is shown below:

    Jstudent_exampleproblem_101504

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

analyzing and visualizing data

 Select any example of a visualization or infographic, maybe your own
work or that of others. The task is to undertake a deep, detailed
‘forensic’ like assessment of the design choices made across each of
the five layers of the chosen visualization’s anatomy. In each case
your assessment is only concerned with one design layer at a time.
For this task, take a close look at the annotation choices:

1. Start by identifying all the annotation features deployed, listing
them under the headers of either project or chart annotation
2. How suitable are the choices and deployment of these annotation
features? If they are not, what do you think they should have been?
3. Go through the set of ‘Influencing factors’ from the latter section of
the book’s chapter to help shape your assessment and to possibly
inform how you might tackle this design layer differently
4. Also, considering the range of potential annotation features, what
would you do differently or additionally?

Submit a two-page document answering all of the questions above. Be
sure to show the visualization first and then thoroughly answer the
above questions. Ensure that there are at least two-peer reviewed
sources utilized this week to support your work.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

A summary of A survey on parallel clustering algorithms for Big Data

I need someone to summarize these 8 pages in 4 hours. 

JORDAN TIME ZONE , I need it by 10:00 pm 

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now