Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

This question focuses on decision making
The program below was developed to assess if an -18 year old who is visiting the park that deserves a 10% discount given in the following scenario.
"You are told that the Kruger national park is giving away a 10% discount to children who are not more than p12 years old or a senior citizens who are at least 65 years old.it is further stated that ONLY those who are visiting the park at least the fifth time will qualify for discount

Create a program that will do the following:

- Ask the user for a number from 1 to 20, check to ensure that a valid number is entered

- Ask the user for a second number from 1 to 20, check to ensure that a valid number is entered

- Ask the user for a third number from 1 to 20, check to ensure that a valid number is entered

- Display a message telling the user what is the largest number

- Display a message telling the user what is the second largest number


A client has approached you to create a website specific to their business. This website will serve as a

way of marketing their business, attracting clients and allowing them to make queries. The client

wants the website to keep track of users by storing their details for survey and marketing purposes.

The client requests that the website should have a database to keep track of these users.


Create any one game using data structure in C program


Take a list of elements that contains both characters and numbers. Using any sorting algorithm sort the list such that the characters are in alphabetical order and the numbers are in descending order. However, retain the position of numbers and characters. For example: Input: b,2,1,c,3,a. Output: a,3,2,b,1,c.


write a algorithm to reversethe required elements of password to get the actual password,so that file can be opened


 Make an application with the above classes for a client that comes with a list of items * that needs to purchase with the following ruleset: - At the beginning at least 5 different types of items must be added to the storage (use the method addItemQuantity() from Storage.class) - Then create a list of items of the client. - For every item first should be checked if the items are available (use getItemQuantity of Storage.class) - If an item is unavailable do not include it in the invoice - If the item is available include it in the invoice - After all the items are added to the invoice, show all the items added with the description, quantity and cost of the item. This final list should be shown ordered in alphabetical order. - output the invoice into a text file (invoice.text) and save it on the local PC.


 Write an application to create a super class Employee with information first name &
last name and methods getFirstName(), getLastName() derive the sub-classes
ContractEmployee and RegularEmployee with the information about department,
designation, salary & method displayFullName() , getDepartment, getDesig(),
getsalary() and to set department name , designation and salary of the corresponding
sub-class objects respectively.
 Derive sub-classes of ContractEmployee namely HourlyEmployee &
WeeklyEmployee with information number of hours & wages per hour, number of
weeks & wages per week respectively & method calculateWages() to calculate their
monthly salary. Also override getDesig () method depending on the type of contract
employee.

You are provided with a simple Java project.create an abstract class 3DShape for 3D shapes.

ˆ Create Cube and Cylinder 3D shapes by extending the 3DShape class you’ve just created.

ˆ Create an interface to calculate volume and implement necessary code to calculate correct value of volume of all types of your 3D shapes.

As a bonus, implement a design where 2DShape supertype is the parent of the 3DShape supertype, and respective methods for area and volume calculation are inherited from the relevant supertype for the concrete 3D objects.


Fibonacci numbers are a sequence of integers, starting with 1, where the value of each number is the sum of the two previous numbers, e.g. 1, 1, 2, 3, 5, 8, etc. Write a function called fibonacci that takes a parameter, n, which contains an integer value, and have it return the nth Fibonacci number. (There are two ways to do this: one with recursion, and one without.)


LATEST TUTORIALS
APPROVED BY CLIENTS