Instructions Scenario: Your friend wants to buy a computer for gaming. They don’

Instructions
Scenario:
Your friend wants to buy a computer for gaming. They don’

Instructions
Scenario:
Your friend wants to buy a computer for gaming. They don’t know what hardware they need and they aren’t sure if they want a PC or a MAC, so they have asked you for help.
Instructions:
For this assignment, you must create a table with two hardware configuration options for a Windows-based, Linux-based, or MAC-based gaming computer with the following components:
Processor
CPU
Motherboard
RAM
Hard Drive
Screen
Graphics Card
Sound Card
Network adapter
Ports
Do not select a complete computer system that is available in the market.
You must then write a report explaining the rationale you used to select each of the hardware components. Embed the table into your report.
Length: 2-3 pages
The completed assignment should address all of the assignment requirements, exhibit evidence of concept knowledge, and demonstrate thoughtful consideration of the content presented in the course. The writing should integrate scholarly resources, reflect academic expectations and current APA standards,

You have tasked the IT department with developing an incident response plan to a

You have tasked the IT department with developing an incident response plan to a

You have tasked the IT department with developing an incident response plan to address risks to the information system.
Based on your research for Unit 5:
• Explain some of the key elements of an incident response plan.
• Identify some incidents that should be included in the PCS plan.
• Discuss the relationship between this plan and other related planning such as disaster recovery and business continuity.
The requirements for your assignment are:
• 1-2 page APA paper excluding title and reference pages
• Provide at least two references and in-text citations in APA format
• College level writing

Your brief is to design a programme to teach a child to write and spelling in En

Your brief is to design a programme to teach a child to write and spelling in En

Your brief is to design a programme to teach a child to write and spelling in English. This is an open-ended assignment and I will only broad guidelines.
A good assignment should
Use multimedia presentation: text, sound, pictures.
The interface should be intuitive to to use and handle typed text and deal with special keys (e.g. delete).
Provide feedback to the child.
Employ many of the techniques we have learned in the class.
Run on different computers (without the need to change paths in the code; all needed files are in the uploaded folder; use UnifyKeyNames)
A great assignment should be:
Be interactive and engaging. Make it fun.
Adaptive. Focus on fixing weak areas (errors).
Store progress (maybe as a table)
And most importantly, be creative.

Using Jupyter Notebooks, answer each of the following questions. This is an indi

Using Jupyter Notebooks, answer each of the following questions. This is an indi

Using Jupyter Notebooks, answer each of the following questions. This is an individual lab. You will do your work in Jupyter notebook and must show the code you used to get the answer if it is a code-based question. Please submit both the Jupyter Notebook report (as an HTML file).
Your report submission should be formatted using Markdown and code in Jupyter notebook as follows: The name of the assignment as an H1, your name as an H2, and the date as an H3 all in the first cell block. Add a horizontal line/rule after the cell. The questions should then be answered in individual cells indicated by Q1, Q2, Q3…etc. in H4 format and separated from other questions by horizontal lines/rulers.
You are designing a database for a startup company and you need to begin by providing an overview of your data and then creating a few tables and performing some initial queries. You will use Jupyter notebook to answer the questions below, create the database, tables, and records, and write your queries.
The incoming data will be loaded in everyday at 8:00 PM EST. What kind of data processing is this considered?
The data will be in tabular format with rows and columns. What kind of database should the company use to store the data? What are some common database systems that could be used to store the data? What programming language will be used to interact with the data and database?
Currently, the incoming data only consists of tabular, related data. However, in the future, the management team is considering collecting data in JSON format. What kind of database should be used to store this type of data? What are the benefits of storing data in this way? What are the drawbacks?
As you build your relational database, what are three important components to consider? Describe each of these three components and why they are important.
Using SQL code in Jupyter notebook, create a SQL database using SQLite in Jupyter notebook and create two tables. The first table should be called “orders” and have the following columns/fields: order ID, item name, price, and customer ID. The second table should be called “customers” and have the following columns/fields: customer ID, signup_year, country, and age.Designate which columns will be primary keys and whether there is a foreign key in one of the tables that links to a primary key in another table. Add SQL constraints to ensure that there are no null values in the signup_year column.
Provide a written description of the SQL code you wrote above in Q6 in a way that a non-technical person with no knowledge of SQL could read and understand. Explain why the columns you chose are primary and foreign keys and the importance of keys in relational databases to a colleague who has no knowledge of databases or SQL.
Insert the following data into the “orders” table100 Blender 45.66 1001
101 Blender 43.23 1098
102 Treadmill 765.76 1009
103 TV 954.33 1045
104 TV 476.60 1003
105 Lamp 26.75 1008
106 Laptop 1300.34 1098
107 TV 675.55 1011
108 Treadmill 886.87 1003
109 Treadmill 1987.54 1055
Insert the following data into the “customers” table1000 2004 USA 63
1001 2008 FR 44
1002 2010 UK 76
1003 2018 FR 28
1004 2001 FR 71
1005 2015 USA 25
1006 2017 USA 58
1007 2009 USA 51
1008 2020 UK 48
1009 2017 USA 42
Write a query to pull all records and columns from the orders table.
Write a query to pull all records and columns from the orders table but limit the output to the first four records.
Write a query to select the sign up year, country, and age columns and only records of customers located in the UK from the customers table.
What is the mean age of customers in the USA? Include the SQL code you used to get the answer.
Using the orders table, determine how many treadmills have been sold. Use an alias to rename the name of the result column to be “treadmills_sold.” Include the SQL code you used to get the answer.
How old is the youngest customer in the USA?
What is the mean age of customers in each country? Include the SQL code you used to get the answer.
On average, what is the most expensive item purchased? Write a query to show the mean sale price of each item in the orders table and sort the results so the most expensive item is first and the least expensive item is last.
Alter the code you used for #17 to filter the results and keep only records that exceed 1000.00. Include the SQL code you used to get the answer.
Write a query to return the item names and price from the orders table that start with the “T” or cost less than 100.00
What is the difference between WHERE and HAVING? Explain when to use one or the other.
We need to know more about the customers who purchased the items in the orders table. Write a join to join the orders table to the customers table. The results should show only customers who have made a purchase that is listed in the orders table and are listed in the customers table and the item_name they purchased. (Note that not all customer ids are listed in the customer table.)
Alter the code you wrote in #21 to group the results by customer id from the customers table and count the number of orders for each customer made. Alias the result column as “num_orders” and sort the results so the customer with the most orders is the first row in the result. Which customer id has the most orders?
What kind of join would we use if we wanted to keep all records in the orders table (left table) and join any matches between the orders table and the customers table (right table)?
What is the average age of customers in the customers table? Include the SQL code you used to get the answer.
Write a subquery (i.e. nested query) to filter the customers table to keep only records that are less than the average age for all customers in the table
Return the country name and mean age for any countries’ customers with a mean age greater than 60.
Please submit both the Jupyter Notebook report (as an HTML file).

INSTRUCTIONS SUBMESSION You should submit two separate ladder logic files for th

INSTRUCTIONS SUBMESSION
You should submit two separate ladder logic files for th

INSTRUCTIONS SUBMESSION
You should submit two separate ladder logic files for the lab, one for each part. The submitted file should be the Do-more Designer file with the “.dmd” file extension. There are multiple files saved along with it, but you only need to submit the DMD file. Files should be named with Lab, the part, and your name (for example Lab_Part1_Shan_John.dmd).
NOTE: If you did not specifically save your file somewhere on your computer, the DMD file is probably in the default project folder, C:UsersPublicDocumentsDo-moreDesigner2_9Projects.
Ladder Logic World – PLC Programming Tutorial:

Ladder Logic


Important: please use this link to download this software and install it in order to do the task:
https://we.tl/t-ilHcWfKefu

Winter is a cold season characterized by dropping temperatures, often accompanie

Winter is a cold season characterized by dropping temperatures, often accompanie

Winter is a cold season characterized by dropping temperatures, often accompanied by snow and ice, creating a white and chilly landscape. Days are shorter, while nights are longer. People typically wear warm clothing to protect themselves from the low temperatures. Winter is also associated with traditional holidays and cozy indoor activities.

Make sure the program works with the test files. Please note that the test progr

Make sure the program works with the test files. Please note that the test progr

Make sure the program works with the test files. Please note that the test programs does not actually check if your solution is correct or not, its only purpose is to ensure that it is possible to run your code at all.
You also need write a report on how you used continuations. That report does not have to be long, just describe when it’s used and for what purpose.
The deadline in the instructions is not accurate.
Don’t forget to follow the instructions so no points are lost.
Many thanks!This task should be completed with the original code/solutions. Please make sure you do not use any open source solutions.

You have been provided with starter code(seeMyCanvas)that includes the source co

You have been provided with starter code(seeMyCanvas)that includes the source co

You have been provided with starter code(seeMyCanvas)that includes the source code for each of the
sort methods discussed (bubble, selection, insertion, shell, merge, quick and radix) that are to
be evaluated. You must add code to each of the methods to count the number of comparisons
required to completely sort the data. Ensure that you generate and use the same data for each
sort. Remember that the sort methods replace the existing data (in place sorting) so you need
to copy over the sorted output array before each sort is called. You will also measure the time
required to sort the data using each method by timing the algorithm using the
System.nanotime method.
Requirements
Your program must report the following information:
1. The time required in microseconds, the number of comparisons required and the time
to execute a basic step (the comparison) in ns for each of the sort methods provided.
The basic step is determined by taking the time required to sort an array of a size n and
dividing by the number of basic steps for that algorithm. Report your results for data
sets of 20, 100, 10000, 50000 elements.
Produce a table that looks similar to this:
Comparison for array size of 20 (Averaged over 5 runs)
==========================================================
Sort Execution Time Compares Basic Step
Algorithm (ns) (ns)
———————————————————–
aSort xxx xxxxx xxx.x
bSort xxx xxxxx xxx.x
cSort xxx xxxxx xxx.x
dSort xxx xxxxx xxx.x
eSort xxx xxxxx xxx.x
fSort xxx xxxxx xxx.x
gSort xxx xxxxx xxx.x
———————————————————–
You will need to produce a table for each different data size. The results should be
averaged over a number of runs in order to get reliable results.
2. Create a random array of 100,000 positive integer values and then compare the
performance of using a linear search (method a) vs a sort/binary search (method b) of
the array. Search the array for -1 (it will not be found in the array). Use one of the 7
sorting techniques provided. Report the time required for both techniques and also
report the number of linear searches required that would justify sorting the data first.
3. In a Comment section at the TOP of your source file, provide answers to the following:
a. List in order (fastest to slowest) your selection of algorithm to use when the array
to be sorted contains 20 elements. Base this on your results
b. List in order (fastest to slowest) your selection of algorithm to use when the array
to be sorted contains 50000 elements.
c. At 50000 elements which sort has the lowest basic instruction set time? Does this
impact your selection of the fastest algorithm? Why?
d. In a table provide the following information for each algorithm:
 Name
 BIG O notation (time complexity – average case)
 BIG O notation (space complexity – worst case)
Example Output to include in comment
Sort Algorithm Identification
==========================================================
Sort Sort Algorithm Big O Big O
Algorithm Name (time) (space)
———————————————————–
aSort ________ O(___) O(____)
bSort ________ O(___) O(____)
cSort ________ O(___) O(____)
dSort ________ O(___) O(____)
eSort ________ O(___) O(____)
fSort ________ O(___) O(____)
gSort ________ O(___) O(____)
———————————————————–
Implementation Notes:
Part 1:
 You will need to make each method return the count – change the type of method from a
void to a long method.
 To get counting to work without using a global variable, you will need to use recursive
counting in some of the methods. An example of recursive counting is shown below:/**
* A demonstration of recursive counting in a Binary Search
* @param array – array to search
* @param low – the low index – set to 0 to search whiole array
* @param high – set to length of array to search whole array
* @param value – item to search for
* @param count – Used in recursion to accumulate the number of comparisons made
*
(set to 0 on initial call)
* @return an array with the item index in the first value and the
*
count in the second value
*/
private static int[] binarySearchR(int[] array, int low, int high, int value, int
count)
{ int middle;
// Mid point of search
// Test for the base case where the value is not found.
if (low > high)
return new int[] {-1,count};
// Calculate the middle position.
middle = (low + high) / 2;
// Search for the value.
if (array[middle] == value)
// Found match return the index
return new int[] {middle, count};
else if (value > array[middle])
// Recursive method call here (Upper half of remaining data)
return
binarySearchR(array, middle + 1, high, value, count+1);
else
// Recursive method call here (Lower half of remaining data)
return
binarySearchR(array, low, middle – 1, value, count+1);
}
 The code to do the counting should be modularized so that code duplication is minimized.
You can use method references (function pointers), and try to create a loop for each of the
array sizes requested.
NOTE: I have uploaded one starter file for the use and help in Assignment please use it properly.

I want the solution for these question and please write a description for tho so

I want the solution for these question and please write a description for tho so

I want the solution for these question and please write a description for tho solving because I have to explain it. this link can be helpful to solve the codes https://verificationguide.com/verilog-examples/ . I have attached the questions