Category: Internet technology (IT)

  • Title: Managing Printer Interfaces on Your System

    Create a presentation in PowerPoint that discusses how to download, change, and install printer interfaces on your system.
    Show screen captures of what happens when your printer is not detected.
    Add a slide that explains the pitfalls of managing printers for a network.
    This assignment should be a minimum of ten slides in length 
    Remember: Title, References, images only, and “any questions” slides DO NOT count for the minimum!
    Use the rule of 7 when building your slides (more than 7 points on any one slide and it gets too wordy or overloaded with information)

  • Title: “The Hate U Give: A Journey of Dual Worlds and Social Injustice”

    IT project
    The five slides make a fake or real website for a company regarding a homepage about us page, Location page, service page, product page. also add pictures or a YouTube video
    and answer the questions below
    Chapter 21 (15 points)
    What are the Carter family and their friends celebrating?
    How are Starr’s two worlds beginning to mix and how is she dealing with it?
    How did Big Mav choose names for his children?
    Chapter 22 (5 points)
    How is the new neighborhood different from Garden Heights?
    Chapter 23 (15 points)
    How does Garden Heights react to the Grand Jury’s decision?
    How does Angie Thomas show the continuation of a cycle of hate? In other words, how has Khalil’s death created a chain reaction of violence and negativity? How are the riots in Garden Heights getting out of hand?
    Chapter 24 (10 points)
    What problem does Seven’s car have? How do they try to solve this?
    Who is leading the protest they encounter?
    Chapter 25 (5 points)
    1. Who’s responsible for destroying Big Mav’s store?
    Chapter 26 (5 points)
    1. What happens with Starr and Hailey’s friendship? Do you think Starr did the right thing?
    YOUR FINAL THOUGHTS on Angie Thomas’ The Hate U Give: Please write a few sentences providing your ultimate critique/analysis of this book; what is the ultimate message behind the book? Did you enjoy reading it? Was the ending predictable? Did you dislike the ending? Please tell all! 🙂 (20 points)

  • “Creating a Staging Table for Skeleton Candy Sales Data from 2017-2019 using SQL”

    Use SQL. 
    –Skeleton Candy Part 1 – extract from 2017, 2018, 2019 tables and put into stagingTable
    –Students, see notes below where it says –you need to fill this in here
    –Create the staging table
    DROP TABLE IF EXISTS stagingTable;
    CREATE TABLE stagingTable (
    yearInt INT(4),
    monthInt INT(2),
    –there will be more you need to fill in here
    );
    –Insert 2017 Data
    INSERT INTO stagingTable(“monthInt”, “state”, “country”, “region”, “Product_Name”, “unitPrice” –you need to fill this in here)
    SELECT “Month”, “State”, “Country”, “Region”, “Product”, “Per-Unit_price”, “Quantity”, “Order_Total” FROM pd2017
    ;
    UPDATE stagingTable SET yearInt=2017;
    –Insert 2018 Data
    INSERT INTO stagingTable( — you need to fill this in here –)
    SELECT … FROM pd2018
    ;
    UPDATE stagingTable SET yearInt=2018 WHERE yearInt ISNULL;
    –Insert 2019 Data
    INSERT INTO stagingTable(– you need to fill this in here –)
    SELECT … FROM pd2019
    ;
    UPDATE stagingTable ( — you need to fill this in here );
    SELECT * FROM stagingTable;
    That is the ·     
    Candy_part_1_skeleton_for_students.SQL