- Home >
- Programming >
- Access Homework 1
Programming
Access Homework 1
Question Description
Need help with my Programming question - I’m studying for my class.
Please FOLLOW THE DIRECTIONS EXACTLY HOW THEY ARE READ.
48 hrs. till I need it completed and correct.
I have another assignment very similar to this one when you finish.

Student has agreed that all tutoring, explanations, and answers provided by the tutor will be used to help in the learning process and in accordance with Studypool's honor code & terms of service.
Final Answer


Duke University
Completion Status:
100%
Review
Review

Anonymous
Top quality work from this tutor! I’ll be back!

Anonymous
It’s my second time using SP and the work has been great back to back :) The one and only resource on the Interwebs for the work that needs to be done!

Anonymous
Thanks, good work

Studypool
4.7

Trustpilot
4.5

Sitejabber
4.4
Similar Questions
WK4 Individual
individual information individual company information mcbride network information transcript ...
3 in 1
Write a program metric.c that asks users for their height in feet and inches, written for example as 5’7”, and conver...
Data Base
ITEC 451 Lab 3.docx ...
Java Program
Problem 5.1 (Read Example 10-1 on Page
615)
Write a program that read data from a file (InputData.txt attached
in the...
Web Design Question
web240.txt Week 3.txt Part 2
Create a homepage for your planned site that demonstrates
effective application of design e...
Project Deliverable assignment due sunday 10-20-13
You are currently the Chief Information Officer (CIO) for an innovative Internet-based company with gross revenues of more...
Related Tags
Book Guides

Studypool values your privacy. Only questions posted as Public are visible on our website.
Most Popular Answers

3 in 1: in less than 12 hours!!!
3 in 1: in less than 12 hours!!!
This is an intro to programming course...keep it simple!! And in CWrite a program typemult.c in C that prompts the user for two numbers and asks whether to treat each number as an integer. Then multiply the two numbers, treating each number as an int or double based on the user’s preference. Print the resulting computation, matching the format in the examples below. Note that numbers are comma delimited and that the user can answer the y/n questions with either lower or uppercase letters.(˜)$ a.outEnter two numbers to multiply: 2.5,3.5Is the first number an int (y/n)? nIs the second number an int (y/n)? N2.50 * 3.50 = 8.75(˜)$ a.outEnter two numbers to multiply: 0.5, 3.5Is the first number an int (y/n)? nIs the second number an int (y/n)? Y0.50 * 3 = 1.50Write a program energy.c in C that calculates an electricity bill for an electric company that provides a credit for user-generated energy (e.g. from solar panels). Your program will prompt the user for the amount of energy consumed and the amount of energy generated. Note that the user input is / delimited. The bill will be calculated according to a tiered pricing model applied to kilowatt-hours (kWh) consumed and generated. For energy generated, the user is always credited $0.10/kWh. For energy consumed, the first 300 kWh are charged at a rate of $0.15/kWh. Energy consumed beyond 300 kWh is charged at a rate of $0.30/kWh. The energy company likes their calculations to have at least 10 digits of precision and for the price to be returned to the millionth dollar ($0.000001), so choose your variable data types accordingly and format your output as shown below. a.outHow many kWh were consumed/generated? 1/0Your bill is: $0.150000(˜)$ a.outHow many kWh were consumed/generated? 100 / 1Your bill is: $14.900000Write a program seconds.c in C that prompts the user for a number of seconds and returns the equivalent number of years, days, hours, minutes, and seconds. Your program should correctly respond to inputs that correspond to 0 seconds up to at least 10,000 years. Assume that a year has 365 days,a.outHow many seconds? 40000000That is 1 year(s), 97 day(s), 23 hour(s), 6 min(s), 40 sec(s)a.outHow many seconds? 0That is 0 year(s), 0 day(s), 0 min(s), 0 sec(s)How many seconds? 315360000000That is 10000 year(s), 0 day(s), 0 hour(s), 0 min(s), 0 sec(s

PROGRAMMING 3
PROGRAMMING 3
The ECE Department offers three depth sequences:Computer System Design: ECE-15, ECE-111, ECE-141, ECE-165Communications Systems: ECE-153, ECE-155, ECE-158Machine Learning and Controls: ECE-171, ECE-178Within every depth sequence, the first course has no prerequisites, and each course is a prerequisite for the next. For example, ECE-153 has no prerequisites, but it is a prerequisite for ECE-155, which in turn is a prerequisite for ECE-158. There are no cross-depth prerequisites. Write a program prereq.c that prompts the user for a course name and prints the prerequisites needed to take it, and a happy message if no prerequisites are required, as shown below. Implement your program using switch-case and use fall-through.(˜)$ a.outCourse: ECE-15Prereqs: Anyone can take that!(˜)$ a.outCourse: ECE-141Prereqs: ECE-111 <-- ECE-15(˜)$ a.outCourse: ECE-165Prereqs: ECE-141 <-- ECE-111 <-- ECE-15(˜)$ a.outCourse: ECE-155Prereqs: ECE-153Write a program trivia.c that prompts the user for a nonnegative integer, and prints the number of digits, the smallest and largest digits, the number of times the digit 7 appeared, and a conclusion determined by the remainder of the number mod 3: “Boring!” if the remainder is 0, “Amazing!” if the remainder is 1, and “Yahoo!” if the remainder is 2. When typing the number of digits and the number of times 7 appeared, use singular (“digit”, “time”) for 1, and plural (“digits”, “times”) for all other numbers. Assume that a nonnegative number will always be entered and that a positive number will not start with any 0’s, for example 007 will be written as just 7.(˜)$ a.outNonnegative integer: 53844 digits, smallest is 3, largest is 8, 7 appeared 0 times. Yahoo!(˜)$ a.outNonnegative integer: 5079746 digits, smallest is 0, largest is 9, 7 appeared 2 times. Yahoo!(˜)$ a.outNonnegative integer: 71 digit, smallest is 7, largest is 7, 7 appeared 1 time. Amazing!(˜)$ a.outNonnegative integer: 01 digit, smallest is 0, largest is 0, 7 appeared 0 times. Boring!(˜)$Hints: You will need to identify and then remove the rightmost digit, one at a time. For example for 348, you need to identify 8, then 4, then 3. The rightmost digit can be found using modulo (%), and can be peeled of using integer division (/=). You can build the program gradually by first printing one of the requested values (say smallest digit), then revisiting the program and printing the other values (largest, prevalence of 7, etc.).Write a program chessboard.c that asks the user for the size of a chessboard and the locations of the King, Queen, and a rook, specified by row and column with the top row and left column being 1. Print the chessboard with horizontal and vertical lines and indicate dark squares by * as shown below. MArk the location of the King by K, the location of the Queen by q if the King can capture the queen and by Q if the king cannot capture it, and similarily for the location of the Rook, use r or R depending on whether the King can capture it. You can assume that the user will input three different locations within the board.Hints: One way to solve it is in stages. First draw the board with just the horizontal and vertical lines and without any markings. Then modify the program to also print the *'s. Then further modify to print the locations of the three pieces. Finally print Q/q and R/r correctly. Recall that a King can capture everything immediately adjacent to it horizontally, vertically, or diagonal. Hence if the King is at row Kr and column Kc, then it can capture a piece at row r and column c if Kr-1<=r<=Kr+1 and Kc-1<=c<=Kc+1.a.outBoard size: 5King row and column: 5 3Queen row and column: 4 5Rook row and column: 2 1+-+-+-+-+-+|*| |*| |*|+-+-+-+-+-+|R|*| |*| |+-+-+-+-+-+|*| |*| |*|+-+-+-+-+-+| |*| |*|Q|+-+-+-+-+-+|*| |K| |*|+-+-+-+-+-+(˜)$ a.outBoard size: 4King row and column: 1 1Queen row and column: 1 3Rook row and column: 2 1+-+-+-+-+|K| |Q| |+-+-+-+-+|r|*| |*|+-+-+-+-+|*| |*| |+-+-+-+-+| |*| |*|+-+-+-+-+(˜)$ a.outBoard size: 3King row and column: 2 2Queen row and column: 1 3Rook row and column: 3 1+-+-+-+|*| |q|+-+-+-+| |K| |+-+-+-+|r| |*|+-+-+-+(˜)$Hints: This problem is mor

Data Base assignment- MS access
Data Base assignment- MS access
Hoffer 10th Edition and 11th Edition: Chapter 4: Problems and Exercises. #8, 9 and 21. -question 21, an additional step is to create a relational database using your relational design. -question 21 (Pet Store), an additional step is to create a relational database using your relational design. create this in either MS Access , Use the Relationship modeling tool to create and enforce referential integrity.Book: http://www.84.b.hostable.me/10337/Modern%20Database%20Management%2010ed.pdf URL
Have a homework question? Get help from verified tutors now!