Presentation is loading. Please wait.

Presentation is loading. Please wait.

Questions of the Day – lecture 1 What is the full file path for an Excel file named cis200 that is located on your C drive in your cis200 directory and.

Similar presentations


Presentation on theme: "Questions of the Day – lecture 1 What is the full file path for an Excel file named cis200 that is located on your C drive in your cis200 directory and."— Presentation transcript:

1 Questions of the Day – lecture 1 What is the full file path for an Excel file named cis200 that is located on your C drive in your cis200 directory and lecture2 subdirectory? Explain the terms hardware, software, operating system and applications Do you have enough memory on your hard drive to save this document? Your hard drive has.5 meg of memory left and your document is 25 pages. Each page has an average of 1600 characters and each character is represented by a 16 bit unicode representation. I typed the keyword “windows” into Google and got back millions of hits – but none of them tell me about Anderson windows for my home. What can I do?

2 What is the full file path for an Excel file name cis200 that is located on your C drive in your cis200 directory and lecture2 subdirectory? C:\CIS200\LECTURE2\CIS200.XLS

3 Do you have enough memory on your hard drive to save this document? Your hard drive has.5 meg of memory left and your document is 25 pages. Each page has an average of 1600 characters and each character is represented by a 16 bit unicode representation. 1600 characters per page * 16 bits/character = 25,600 bits per page 25,600 bits ÷ 8 bits per byte = 3200 bytes/page 3200 bytes/page *25 pages = 80,000 bytes 80,000 bytes <.5 meg  500,000 bytes

4 Explain the terms hardware, software, operating system and applications. Hardware – physical equipment Software is code that tells the hardware what to do Operating System – software that interfaces with the hardware to control basic functions such as keyboard input, printing, reading from memory etc. Applications – software designed to work with the operating system to perform specific task such as word processing, data manipulation etc.

5 What are the “variables” that will affect the results of a web search? Modify the keyword(s) you choose (home windows, Anderson windows) The syntax you include (+ “”) – And, Or, Not (windows not microsoft) The search engine you choose (try another search engine)

6 Question of the Day 2 Write a formula in cell C4 which can be copied down and across to calculate calories associated with the specific number of Grams of each food type. After you’ve copied it what formula will appear in cell G6?

7 Question of the Day 3 Write a formula in cell B10, which can be copied down, to calculate the number of smokers in the group. Write a formula in cell C10, which can be copied down, to calculate the average lung volume in liters of a smoker.

8 Question of the day 4 What type of operator would you use to compare two values? What logical construct can be used to define: –every, at least one, none, both, either? Open to page 53 in chapter 1.4 and work on the remainder of the Art Logic Problem

9 Question of the day 5 Draw a decision tree to illustrate the components of this decision and then translate into a formula in Excel syntax. All of the above patients are asthma sufferers. A new medication that claims to increase lung capacity is being administered. What are the expected volume gains in liters for each patient if the drug claims to increase capacity by 15% for heavy smokers, 20% for light smokers and 30% for non-smokers(NS).

10 Question of the Day 6 (p.70 text) Write an Excel formula in cell calc!B9, which can be copied down the column, to calculate the cost of the subfloor. The subfloor consists of two components – Plywood sheets that cover the entire area of the kitchen -. One sheet of plywood contains 32 square feet. (assume cells E3:F9 were previously calculated) Nails to install the sheet. Three nails are required for every square foot of sub-floor. Nails are sold in packages of 100. Your contractor can use excess plywood and nails on other jobs – so he will only charge you for exactly the amount you need. (Hint: read the problem description for quantities) Prices! Conv! Calc!

11 (SF of floor/ SF per sheet  # of sheets #sheets * $/sheet = dollars) + (SF of floor * # nails per SF  # nails #nails/ nail per package  # packages * $/package  dollars) Question of the Day 6 (p.70 text) Prices! Conv! Calc!

12 Sales Order Pricing p.92– Questions 1 & 2 Question of the Day 7

13 Question of the Day 8 You have student loan for $5000 at 4.5% interest. No payment is required for 2 years but the loan accrues monthly interest. Once you begin paying the loan you have 10 years to finish payments. Calculate the monthly payment. (hint: try nesting your financial functions)

14 Question of the Day 8- solution 1 st calculate how much is owed in year 2 – and then use that as the basis for your payments in years 2 through 12 =PMT(Rate, NPER, PV, FV) =PMT(.045/12,12*10, FV(.045/12,12*2,0, - 5000),0) Now Year 2Year 12 Monthly payments over 10 years 0$ $5000 $???

15 What is a slide transition? What is an animation effect How can you change the order of objects? Question of the Day 9 – PowerPoint Explain each of these views –Slide Sorter –Slide Show –Normal Slide view Outline view Notes view –Master Slide

16 Questions of the Day - 10 Define: Primary Key, Foreign Key, Indexing, Binary Search, Query Why use a DBMS software vs. spreadsheet software? Using the child database (p.180) explain how would could make a list of the names of all children over the age of 9?

17 Questions of the Day - 10 Primary Key – field(s) that uniquely identifies a record of a table Foreign Key – field in each of 2 tables that “links” them..(1) same information, (2) same field type, (3) a primary key on at least one of the tables. Indexing – setting a table property to sort on a field (for improved retrieval) Binary Search – method of searching a “sorted” list by comparing the value to be found to the midpoint of the list. If its larger you discard the 1 st half and then repeat until the value is found.

18 Questions of the Day - 10 Query – question we ask.. Actually save the instructions of how to find the answer not the answer itself. Why use a DBMS software vs. spreadsheet software? – more efficient this large amounts of data.

19 Question of the Day -11 If I add two fields in a query and one is null what value will result? For example – Current inventory (100) + shipments (null) What is the Nz function – and when would one use it in a query? (slides p.62) How would you summarize a field such as ‘quantity’ to calculate the total, average and minimum values in that field?

20 Question of the Day -11 If I add two fields in a query and one is null what value will result? For example – Current inventory (100) + shipments (null) 100 + null = null What is the Nz function – and when would one use it in a query? (slides p.62) Nz([current inventory],0) + Nz([shipments],0) How would you summarize a field such as ‘quantity’ to calculate the total, average and minimum values in that field? Use aggregation function Totals Feature Σ – group by, sum, avg, min etc.

21 When doing an “inner join” between 2 tables – describe what record set will be created and how it is created. When can and can’t you do an inner join on 3 or more tables? On the Music database, if I wanted a list of Titles that have been ordered – what tables would I need to add to my QBE grid and what fields? On the Music database, if I wanted to list all recording titles except those that start with the letters “GE” how would I write the criteria? Questions of the Day -12

22 When you do an “outer join” between 2 tables – describe what record set will be created and how it is created. When can and can’t you do an outer join on 3 or more tables? On the child database – how could I summarize the total minutes each child participated in both activities? Questions of the Day -13

23 How can I sort a list in Excel with a major sort and a minor sort? How can I summarize a list into categories with subtotals using Excel? What is a pivot table and when would using one be warranted? Questions of the Day -14


Download ppt "Questions of the Day – lecture 1 What is the full file path for an Excel file named cis200 that is located on your C drive in your cis200 directory and."

Similar presentations


Ads by Google