Posts

Featured post

ICT285 Databases TMA 2017 Assignment 2 | Design & Implementation & SQL

Case Study Re-read the description of the FastFoods4U case in Assignment 1 if you need to refresh your memory. Bill is pleased with your work so far and asked you to go on to implement your design. He has made a few clarifications and additions to the specifications that you should note: Bill’s trial of the system has been very successful and he now wants to broaden his service into other suburbs as well. He has also recruited more drivers, with the expectation that there will be drivers available in each suburb. However, customers will still only be able to have orders delivered from restaurants in the same suburb. Bill needs to know whether his meals are being delivered on time as per his advertising so the database will need to be able to provide information on requested and actual delivery times/dates. Bill is pleased with the way FF4U is developing and wants to make some further additions to the concept. He has decided to offer a service whereby customers will be able to s

Tally Technology Budget | Excel Practice Task | Download now

ADDITIONAL PROJECT A Technology Budget Files Needed: Chapter2TechnologyBudget.xlsx Tally is a start-up website development company located in Seattle, Washington. The company currently has 7 employees and is looking to hire 6 new employees in the next month. You are in charge of purchasing for Tally. Your first task is to purchase computers for the new employees. You want to look into 3 different manufacturers: Dell, HP, and Apple. You budget is $550,000 to purchase the following: New computers for all employees – for old and new, 2 monitors each. 2 high-end servers  5 color printer/scanner combination Desks for all the new employees (not manufacturer specific, just make sure the desk will hold the computers and monitors. Software: (Not necessarily manufacturer specific, just make sure it is compatible for the brand of computers etc you are purchasing). The operating system for the computers Visual studio professional Virus software MS office SQL Server Database

[Excel] Martin Lemieux Budget Analysis SOLVED

Martin Lemieux Budget Analysis Martin Lemieux is interested in using Microsoft Excel to create a personal home budget for himself. He has provided you with his information for six months so you can help him get started with his budget spreadsheet. He would like to see how much he spends each month and how much he spends for six months for each expense category. He also wants to know how much money he will have left over if he takes a new job that generates more income. Creating the spreadsheet Start Microsoft Excel, start a new Blank workbook and then type Martin’s Budget in cell A1. Save the spreadsheet as Tutorial-1_Last Name_Personal Budget.xlsx. (Replace “Last Name” with your last name.) In cell B2, type January, then use the fill handle to enter the months from February to June. Enter Total Expenses in cell H2. Starting in cell A3, enter the labels and values shown below, resizing column widths as needed. Select the range B4:B14, then use the fill handle to fill the r

[SOLVED] Java basic concepts

The Instant Lottery Program requires the generation of Random Numbers. For example: n = (int) (Math.random() * (b –a + 1)) + a; What is the operation performed by (int) called? What are the values for a and b in the lottery problem? Math.random() returns a double number in what range? Declaring and assigning Declare an integer variable named aNumber. Assign it the value 107. Make it a named integer constant. Declare a decimal number of type double. Assign the result of A_NUMBER / 3 in a way that keeps the fractional part. Give an example of a count loop and an event loop that you used in your programming assignments. Which type was used in the Instant Lottery Program? How? Why? Draw the top-down design of the Instant Lottery Program. Remember to show how each method relates to the overall solution. Describe the purpose of a driver and a stub used in testing your top-down design. How does Java handle responding to a button press? What are the basic steps to follow? What is an Event and

Java Arrays program with full source code | Download Now

Image
Program Description Write a program that reads positive numbers (integers) and stores them into an array. Write a method to prompt for the input values. (sentinel terminated) Write a method to print the array. Write a method that returns the value of the smallest number. Write a method that returns the value of the largest number. Write a method to find the location of a number (array index + 1) Write a method to compute the average of the numbers in the array. Write a method to output the results. The input prompt example: Enter at least 10 unique positive numbers (integers) terminated with a sentinel value (-1) Expected Output Amount of numbers read: 10 Numbers read: 12, 33, 41, 1, 4, 10, 7, 21, 66, 50 Smallest number was 1 in location 4 Largest number was 66 in location 9 Average was 24.5 Output Screenshot Download solution now Buy now CONTACT DETAILS For any other questions or other tasks please feel free to contact me via email: mhassnainjamil@gmail.com via WhatsApp: +92-324-70421

[SOLVED] Java How To Program | Shopping Cart Application | Chapter #29 Ex #29.4 Solution

Shopping Cart Application: Using the techniques you learned in Section 29.8.2, create a simple shopping cart application. Display a list of books as an h:selectOneRadio element. When the user submits the form, store the user’s selection in a @SessionScoped managed bean. Allow the user to return to the list of books and make additional selections. Provide a link to view the shopping cart. On the shopping cart page, display the list of selections the user made, the price of each book and the total of all books in the cart. Get your solution now Buy now

[SOLVED] Trivia Game using Linked List, Polymorphism and Inheritance in Java

You will need to first create an object class encapsulating a Trivia Game which INHERITS from Game. The game is the parent class with the following attributes: description - which is a string write the constructor, accessor, mutator and toString methods.  Trivia is the subclass of Game with the additional attributes: trivia game id - integer ultimate prize money - double number of questions that must be answered to win-integer. write the accessor, mutator, constructor, and toString methods. Write a client class to test creating Trivia objects. Once you have successfully created Trivia objects, you will continue by creating a linked list of trivia objects. Your linked list code should include the following: a TriviaNode class with the attributes: trivia game - Trivia object next- TriviaNode write the constructor, accessor, mutator and toString methods. A TriviaLinkedList Class which should include the following attributes: head - TriviaNode number of items - inte

Trivia Game using Linked List, Polymorphism and Inheritance in Java

You will need to first create an object class encapsulating a Trivia Game which INHERITS from Game. The game is the parent class with the following attributes: description - which is a string write the constructor, accessor, mutator and toString methods.  Trivia is the subclass of Game with the additional attributes: trivia game id - integer ultimate prize money - double number of questions that must be answered to win-integer. write the accessor, mutator, constructor, and toString methods. Write a client class to test creating Trivia objects. Once you have successfully created Trivia objects, you will continue by creating a linked list of trivia objects. Your linked list code should include the following: a TriviaNode class with the attributes: trivia game - Trivia object next- TriviaNode write the constructor, accessor, mutator and toString methods. A TriviaLinkedList Class which should include the following attributes: head - TriviaNode number of items - int