Category: Programming

  • Title: Introduction to Programming and Application Development

    Using what you have learned throughout this course, create a PowerPoint presentation that discusses the following:
    Provide a discussion about what programming is and how programming can help with problem solving.
    Explain what pseudocode is, and provide an example.
    Explain what a flowchart is, and provide an example. You can use the drawing tools in MS PowerPoint to create the flow diagram.
    Explain what object-oriented programming (OOP) is, provide an example of an OOP language, and provide an introduction to the language.
    Discuss what is meant by Application Life Cycle Management and why it is important to software development.
    Discuss the differences between desktop applications and console-based applications, and provide an example for each.
    Discuss what a database is and how database programming can help store, maintain, and retrieve data. Identify and discuss at least one popular database programming language.
    Your PowerPoint must be 8–10 slides, and you should include a title slide and references slide. You must use at least two credible online sources in your PowerPoint. You may also use resources from the government library, any other library, or any peer-reviewed or academic reference.
    Use of speaker notes is required as well. In the speaker notes, you will provide what you would say if you were giving the presentation to an audience. Please write your notes in complete sentences in paragraph form, and adhere to typical grammar and/or punctuation rules. You must cite and reference any information from your selected resources in APA Style.

  • Title: “Coffee Chain Demo: Analyzing Sales Data Using Excel Dashboards”

    Use the CSV data file provided below to complete the “Coffee Chain Demo” presented in Chapter 8 of the Murray text. Start with a new, empty workbook; do not use the starter workbook provided by the author if you happen to find it online. Your workbook should contain your worksheets and the final dashboard
    I have included the following PowerPoint slide set which contains screen images from each worksheet showing dimensions and filters. Use the FSCJ logo instead of the InterWorks logo displayed in the textbook and slides. To download the logo file, right-click the image below and select “Save Link As” or “Save Image As.”
    (I had to zip the CSV file to upload it here you can unzip it)

  • Assignment 2 Specs – Tickets “Movie Ticket Sales with Military Time and School Attendance Check”

    Assignment 2 Specs – Tickets
    The goal of this assignment is to learn how to solve a problem with a combination of if/elif/else statements and complex boolean expressions. It can be completed with solely the material from Chapters 1-3. Solutions using lists, tuples or the “in” operator will receive a zero for the assignment as those techniques are not relevant to the goal of the assignment.
    90/100 Instructions
    A movie theater gives discounts based on different ticket types and the day of the week: 
    type   price  
    senior  9.00
    child  8.00
    general   10.00
    Day of the Week   discount  
    mon, tue, wed   25%
    thu, fri, sat    0%
    sun  10%
    Ask the user:
    What type of tickets they are buying. The user is limited to picking only one ticket type. Note that there’s a built in function in Python with the name type so it would be best to pick a different name for the variable. 
    How many tickets they are buying.
    What day of the week they are going.
    Use if/elif/else statements to look at the user’s input for the type and day to determine the correct price and discount.
    If the user enters something other than senior, child or general charge them the general ticket price of $10.
    If the user enters something other than mon, tue, wed, thu, fri, sat or sun charge them the full price, no discount.
    Calculate and display the total cost using f-strings or the format function to limit it to two decimal places.
    Sample Output 90/100
    ————————————————————————————————–
    >>> %Run ‘A2-TravisBickle’
    Remember going out to the movies??
    What kind of tickets are you purchasing? child, general or senior?
    senior
    What day of the week? Enter sat for Saturday etc.
    mon
    How many tickets do you need?
    10
    Total: $67.50
    >>>
    ———————————————
    >>> %Run ‘A2-TravisBickle’
    Remember going out to the movies??
    What kind of tickets are you purchasing? child, general or senior?
    general
    What day of the week? Enter sat for Saturday etc.
    mon
    How many tickets do you need?
    10
    Total: $75.00
    >>>
    ———————————————
    >>> %Run ‘A2-TravisBickle’
    Remember going out to the movies??
    What kind of tickets are you purchasing? child, general or senior?
    replicant
    What day of the week? Enter sat for Saturday etc.
    mon
    How many tickets do you need?
    10
    Total: $75.00
    >>>
    ———————————————
    >>> %Run ‘A2-TravisBickle’
    Remember going out to the movies??
    What kind of tickets are you purchasing? child, general or senior?
    replicant
    What day of the week? Enter sat for Saturday etc.
    funday
    How many tickets do you need?
    10
    Total: $100.00
    >>>
    ————————————————————————————————–
    100/100 Instructions
    Change the program so that if the user enters something other than mon, tue, wed, thu, fri, sat or sun for the day refuse to sell them the tickets, displaying a message that they entered an invalid day instead of showing a the ticket total. 
    Sample Output 100/100
    ————————————————————————————————–
    >>> %Run ‘A2-TravisBickle’
    Remember going out to the movies??
    What kind of tickets are you purchasing? child, general or senior?
    replicant
    What day of the week? Enter sat for Saturday etc.
    monday
    How many tickets do you need?
    10
    NO TICKET, invalid day.
    >>>
    ———————————————
    >>> %Run ‘A2-TravisBickle’
    Remember going out to the movies??
    What kind of tickets are you purchasing? child, general or senior?
    replicant
    What day of the week? Enter sat for Saturday etc.
    mon
    How many tickets do you need?
    10
    Total: $75.00
    >>>
    ———————————————
    >>> %Run ‘A2-TravisBickle’
    Remember going out to the movies??
    What kind of tickets are you purchasing? child, general or senior?
    general
    What day of the week? Enter sat for Saturday etc.
    funday
    How many tickets do you need?
    2
    NO TICKET, invalid day.
    >>>
    ————————————————————————————————–
    105/100 Instructions
    Add another input and ask the user what time the movie is in military time e.g. 0000 through 2359.
    Convert the user’s input to an integer using the int() function.
    If it’s a child trying to buy a ticket for a weekday between 0200 and 1600 inclusive refuse to sell them the tickets, displaying a message asking them why they aren’t in school instead of showing the total.
    Sample Output 105/100
    ————————————————————————————————–
    >>> %Run ‘A2-TravisBickle’
    Remember going out to the movies??
    What kind of tickets are you purchasing? child, general or senior?
    child
    What day of the week? Enter sat for Saturday etc.
    mon
    How many tickets do you need?
    1
    What time is the movie? Enter 0000 to 2359
    1601
    Total: $6.00
    >>>
    ———————————————
    >>> %Run ‘A2-TravisBickle’
    Remember going out to the movies??
    What kind of tickets are you purchasing? child, general or senior?
    child
    What day of the week? Enter sat for Saturday etc.
    mon
    How many tickets do you need?
    1
    What time is the movie? Enter 0000 to 2359
    1600
    NO TICKET, why aren’t you in school???
    >>>
    ———————————————
    >>> %Run ‘A2-TravisBickle’
    Remember going out to the movies??
    What kind of tickets are you purchasing? child, general or senior?
    child
    What day of the week? Enter sat for Saturday etc.
    sat
    How many tickets do you need?
    1
    What time is the movie? Enter 0000 to 2359
    1600
    Total: $8.00
    >>>
    ———————————————

  • “Exploring Trends in Sports: A Tableau Dashboard” Tableau Dashboard Title: “Exploring Trends in Sports: A Tableau Dashboard” Introduction: Sports have been a major part of human history, and with the rise of technology, data analysis

    I have to make a Visualization in Tableau for the sports dataset. Req built 5-8 visualizations using the dataset. Try to incorporate parameters, filters, dual axis, sets, or some other advanced techniques. I will provide you the data set, as file link https://www.raed.net/file?id=848947 dataset is big, Visualization should be about most of the years. I Have to present the final Dashboard.

  • Title: “Creating a Responsive User Interface with Mouse Rollover Effect Using Client-Side Scripting” Client-side technology: JavaScript JavaScript would be the best choice for creating this webpage because it is a widely used client-side scripting language that

    You are developing a webpage for your employer, and you will need to develop a client-side script. For this responsive user interface, you will need to use a mouse rollover effect so that when the user moves the mouse over an image, a message will appear. When the user moves their mouse out of the image frame, the message disappears.
    What client-side technology do you think would be best to use in creating this webpage, and why?

  • Title: Calculating Average Scores in Python Flowchart: Start | V Input English score | V Input Math score | V Input Social Studies score | V Calculate average score = (English score + Math score

    Write a flowchart (Visio) and pseudocode that displays the average using the English, Math, and Social Studies scores as input. Create a Flowchart in Visio and Pseudo code in Text. The code is using python. I provided a example outline of how the visio flowchart should look.

  • Understanding the Transport Layer and TCP Communication in the TCP/IP Model

    Which of the following statements best describes the transport layer of the TCP/IP hierarchical model?
    Question 11 Choose one:.
    (1) The main roles of the transport layer communication protocols are IP address management and routing.
    (2) The main role of transport layer communication protocols is to control the standards of wired LANs and the hardware standards that comprise them.
    (3) The main role of transport layer communication protocols is to determine and implement data transfer methods.
    (4) The main role of transport layer communication protocols is to convert the data of a communication application into a data format that a computer can understand.
    Which of the following statements best describes TCP and communication using TCP?
    Question 21 Choose one:.
    (1) It is a communication protocol that leaves data in packet units and does not perform error checking.
    (2) Communication using TCP is connection-based communication.
    (3) Communication using TCP is connectionless communication.
    (4) TCP is used for communications that require real-time transmission of information, such as IP telephony and Internet video relay.
    Which of the following statements best describes the TCP header?
    Question 31 Choose one:.
    (1) [1] Sender port number (16 bits), [2] Receiver port number (16 bits), [3] Sequence number (32 bits), [4] Acknowledgement number (32 bits), [5] Data offset (4 bits), [6] Reserved (6 bits), [7] Control flag (6 bits), [8] Window size (16 bits), [9] checksum (16 bits), [10] emergency pointer (16 bits), [11] options and [12] padding are written.
    (2) The checksum is used as a means of communicating the communication status to the communicating party.
    (3) Only the sending port number (16 bits), receiving port number (16 bits), length (16 bits) and checksum (16 bits) are written.
    (4) The sequence number is used as data to identify which communication application created the data at the sending application layer.
    Which of the following statements best describes the port number?
    Question 41 Choose one:.
    (1) The port number used by the client, reserved in the range 0 to 1023, is called the well-known port and is assigned to the communication application.
    (2) The port number used by HTTP is 80.
    (3) The port number used for SMTP is 110.
    (4) The port number used by the communication application for the server is the same as the port number used by the communication application for the client.
    Which of the following statements best describes the procedures for communication by TCP?
    Question 51 Choose one:.
    (1) The amount of data a receiver can receive at one time is called the segment size.
    (2) The checksum of the TCP header is used as a means of communicating the communication status to the communication partner.
    (3) The control flag SYN is used to establish a connection and Fin is used to terminate a connection, but these requests are always confirmed by the ACK flag, which is an acknowledgement.
    (4) A number is written in the acknowledgement number of the TCP header to indicate where the split received data was located in the transmitted data so that it can be recovered by the receiving side.

  • “LED Counter Program in PLP Assembly”

    The Task:
    Write a program in PLP assembly that counts up by one starting from zero (or one) inside a loop and writes this
    value to the LEDs every time the value is increased. The memory address of the LEDs is 0xf0200000. check the attached pdf to get the whole idea

  • “Creating a Macro to Manipulate 32-Bit Memory Operands in Assembly Language”

    Write a macro named mDWORD that receives one 32-bit memory operand. 
    The feedback is: 
    You don′t call the macro. 
    There is not a zero to end the strings. 
    The LOCAL directive is for labels. 
    The code is in the pdf i can’t submit the asm file amd it’s assembly language.
    I don’t think the code needs that much changement. (Please i neeed it fix asap and thank you).

  • “Identifying Violations in an Informal Website: A Group Project Review”

    This is a group project of which several team members have already completed their part. I would only need you to complete the remaining 5 spaces.
    The 5 informal website reviews must be violations that this one presents, since the part of my project requires that I find it.