Exp19_Excel_Ch12_CapAssessment_Teaching_Schedule

  

Exp19_Excel_Ch12_CapAssessment_Teaching_Schedule 

Exp19 Excel Ch12 CapAssessment Teaching Schedule

 Excel  Chapter 12 Teaching Schedule 

  

Project Description:

You have just started your first career as a high school teacher. To jump start your planning process, you would like to create a teaching schedule template to help plan your weekly tasks. You will create a template, create custom macros to automatically insert dates, and inspect the document for issues.

     

Start Excel. Download   and open the file named   EXP19_Excel_CH12_Cap_Assessment_TeachingSchedule.xlsx. Grader has   automatically added your last name to the beginning of the filename. 

 

Clear all data   validation in the range A1:G19.

 

Delete the sample   text in cell B2.

 

Type Teaching   Schedule in   cell B1.

 

Type prepared   by:   in cell F1.

 

Delete the value in   cell G1.

 

Add the following   comment in cell G1 Enter Name.

 

Type Monday in cell C4 and use   the fill handle to fill the range D4:G4 with the remaining days of the week. 

 

Use the document   inspector to inspect the document. Remove document properties and personal   information and then click close.
 

  Note: Mac users, from the Excel menu, open your preferences, click Security,   and then click the check box to Remove personal information from this file on   save.

 

Use the accessibility   checker to check the document for issues. Accept the recommended actions for   merged cells and use the recommended action to select Rose, Table Style   Medium 23. Close the accessibility checker pane.

 

Record a macro named ClearSchedule using the shortcut   CTRL+SHIFT+J. Add the description When run, this macro clears the values in   the schedule (no period). When run, the macro should delete the values in   cell G1 and in the ranges C3:G3, C5:G6, C8:G9, C11:G12, C14:G15, C17:G19, in   that order.

 

Create a form control   button that fills cell F2, ensuring that the button does not overlap with any   other cells. Assign the ClearSchedule macro and edit the button text to Clear.

 

Create a form control   button that fills cell G2, ensuring that the button does not overlap with any   other cells. Edit the button text to Insert Dates.

 

Open the VBA editor   and create a new module named DateStamp. Create a procedure named InsertDate. Add a blank line   after the procedure name, and then insert the comment Inserts   weekly dates, then enter the following code Range(“C3:G3”) =   Array(Date, Date + 1, Date + 2, Date + 3, Date + 4) and exit the VBA   editor.

 

Assign the InsertDate   macro to the Insert Dates form control button.

 

Test both macros and   then open the VBA editor. Locate the module containing the ClearSchedule   macro. Copy the code and paste it starting in cell B2 in the Code worksheet.   Each line of code should be in its own row in the worksheet.

 

Locate the module   containing the InsertDate macro. Delete any blank lines between the comment   and End Sub, and then copy the code and paste it starting in cell D2. Each   line of code should be in its own row in the worksheet.

 

Check the document   for compatibility with Excel 2010, 2013, and 2016.
 

  Note: Mac users, skip this step.

 

Save EXP19_Excel_CH12_Cap_Assessment_TeachingSchedule   as a macro-free workbook and close it. Exit Excel. Submit the file as   directed.

Assignment

1.  Write a program using R-Markdown answering questions from the Week_9_case_study document 

2.  Submit as word document answers to the following questions at the end of chapter 2 in the text: Problems 2, 3, 4, 7. 

3.    Submit as a fully executed pdf R-Markdown file answering all the questions in Problem 11

4.    Write a fully executed R-Markdown program and submit a pdf file solving and answering questions listed below under Problems at the end of chapter 3. For clarity, make sure to give an appropriate title to each section.

Problem 1: Shipments of household appliances (a, c, d)

Problem 2: Sales of riding mowers 

Problem 3: Laptop sales at a London computer chain (a, b)

 Problem 4: Laptop sales at a London computer chain (a, b)

file:///C:/Users/irfan/Downloads/Data%20Mining%20for%20Business%20Analytics_%20Concepts,%20Techniques,%20and%20Applications%20in%20R%20(2).pdf

Exercise 9, page 205. Just write out the recursive

1. (3 points) Exercise 9, page 205. Just write out the recursive method gcd; you aren’t

required to write or run a test program. 

2. (3 points) Exercise 17, page 209. 

3. (4 points) Draw a recursion tree for the call binarySearch(5, 0, 8). Use the

recursive version of the method found on p. 174 of your textbook.

Label each node of the recursion tree with the indices of the subarray being searched

(given by the parameters first and last). Assume the array values contains the

following:

[-2 1 3 5 7 12 18 20 23]

4. (2 points) How many total calls are made to binarySearch? What is the depth of

recursion for this call? Here depth of recursion = longest path in the recursion tree.

5. (4 points) In class we saw two ways to formulate the choose function, one with two

recursive calls, and another needing only one recursive calls. Write both versions (call

them choose1 and choose2, for the number of recursive calls) as static methods in a

class along with a main method for testing. For both, be sure to check the validity of the

arguments and throw IllegalArgumentException if invalid. Your test will prompt

the user for n and m and return the results of running both versions of choose.  


Record the results of testing your code with arguments (4,2) and (6,4). Then test them for

(15,8) and (35,20).  On some computers the last call may take several minutes.  If any of

your answers are negative, explain why.

6. (2 points) Java provides the primitive type long for integral computations which cannot

be expressed using int.  Long integers hold values from more than 92 quintillion to less

than -92 quintillion.  Rewrite each choose method so that it returns value of type long. 

Rerun each computation from the previous problem and record the results.

 

7. (2 points) How many total calls are made to choose2(6,4)? What is the depth of

recursion for this call? Use a recursion tree to answer this question (extra credit for

turning in a drawing of the tree).

 

8. (4 points) For each of the algorithms gcd, contains, binarySearch,

and choose2, say if they are tail recursive or not.

Discussion 2- Monitoring Project

Consider a past situation where you were a member of a team that was involved in a project. Ideally, this situation should be where you currently work. However, you can use any situation or experience in your personal life as well. If you are at a loss of thinking of a scenario – then you may choose to make up a project that may be of interest to you instead.

  • Describe the overall project goals and your role in the project.
  • Explain how the project scope was clearly defined at the beginning of the project or how it was not clearly defined. 
  • Prepare and share with us a listing of deliverables from your project. Offer at least 5 deliverables and two work packages per deliverable. Identify the WBS code accordingly. For example:

Breakdown

Description

WBS Code

Project

Project Title

1.0

Deliverable 1

Deliverable 1 Description

1.1

WP1

First Work Package

1.1.1

WP2

Second Work Package

1.1.2

Deliverable 2

Deliverable 2 Description

1.2

WP1

First Work Package

1.2.1

WP2

Second Work Package

1.2.2

  • Finally, complete a quick google search, and locate a website (that appears credible) that presents an example WBS. Share the link with your peers along with a sentence or two related to how their WBS aligns to the typical structure of a WBS as presented in the week introduction.

Text

A Guide to the Project Management Body of Knowledge (PMBOK® Guide) – Seventh Edition and The Standard for Project Management (RUSSIAN) ISBN: 9781628257007 Authors: Project Management Institute Project Management Institute Publisher: Project Management Institute Publication Date: 2021-08-01

objective summaries feb 17

Written Assignments Content

  1. 3 Draft Objective Summaries: 

    1. Apply the individual feedback the Professor provided for the sample objective summary to have objective summary #1.

    2. Create 2 additional objective summaries.

    3. Submit 3 objective summaries.

  1. Revise the sample objective summary according to the individual feedback the Professor provided. 
  2. Select 3 objective summaries to include with Assignment 3.
  3. Copy them into 1 APA 7 formatted document. 
  4. Note that you should keep each objective summary separate in Assignment 3. Use headings (Introduction, Summary, Conclusion) for each objective summary to differentiate the articles being summarized. 
  5. Finalize and submit Assignment 3 for submission. 
     

unity3d binary tree

using unity3d to make a binary tree model whenever user input numbers, it will automatically build the binary tree step by step

CIS 498 – Showcasing Your Knowledge, Skills, and Abilities Overview

 WEEK 2 ASSIGNMENT – SHOWCASING YOUR KNOWLEDGE, SKILLS, AND ABILITIES

Week 2 Assignment – Showcasing Your Knowledge, Skills, and Abilities

Overview

Now that you have been assigned a role on the team, it is your responsibility to make the Project Manager aware of the knowledge, skills, and abilities you bring.Locate a job posting on indeed.com, glassdoor.com, monster.com, or other job boards and read the description of the position. This can be the same one you identified in the discussion for this week. What skills do they specifically call for in your area of expertise? These should sound familiar. This will give you an idea of what real employers are looking for now in your discipline.Take some time to review previous assignments submitted during your time at Strayer or even deliverables you may have submitted while on the job during your time at Strayer, focusing specifically on the pieces that relate to your area of study. Take notes as you review to use to inform your assignment submission.

Instructions

Use the provided Word Document Template to prepare a 1–3 page memo to the Project Manager showcasing the knowledge, skills, and abilities you are bringing to the team. Be sure to provide the following:

  • A high-level overview of the key requirements and duties of the job you have just taken with the new company. This can be taken from the job posting you identified in the discussion for this week. The overview you provide should be consistent with what is emphasized in the job posting.
  • A URL to the job posting for your position. Be sure that this is a persistent link and a current posting—not one you have used in a previous assignment. Again, this can be the same one you posted as part of the discussion for this week. 
  • Explanation of why you are a good fit for this project. You can expand on what you submitted in the discussion for this week. This is your opportunity to reference specific experiences that make you uniquely qualified for this role on the team. Be sure you also include an explanation of why those experiences are relevant to the position.
  • A list of any certifications you have. If none, list any specific accomplishments you have achieved relevant to the project or that would demonstrate the skills that certification might demonstrate. Be sure to include a brief explanation of why the certification or accomplishment is relevant to the job and/or your role in the project.

Write the memo as if you are responding to questions from the PM on what they can expect from you on the project. 

International business management.

 

Why do you think free trade areas established so far in Africa have not lived up to their expectations?

What will African countries need to do to make the TFTA a success? What are the likely impediments to doing this?

All original threads should be at least 250 words. This parameter helps to promote writing that is thorough, yet concise enough to permit other students to read all the postings. The thoughts and opinions expressed in your thread need to be substantiated by research and literature (from the textbook or outside sources). All references should be in the correct APA style. While this is a formal discussion environment, you are allowed to use the first-person perspective in all your posts since you will be expressing your personal opinions. All original threads should: Bring clarity to the issues being discussed. Raise new and novel (yet relevant) points. Relate issues to personal experience. Rationally defend your stated position. 

SQL – Creating ERD and Business Analytical Reports (queries) with Results

Create a database for an imaginary business must be normalized and populated.

Examples of imaginary business could be Pizza with Delivery,  Airport, Medical Office. Don’t choose a business with complicated logistics.

Your database will include an Event table (Order, Flight and Booking, Patient Appointment, Delivery, etc) with min 500 records for min 2 years or 10 months of data and 4-6 Master tables with a min of 30-50 records. 

– Need ERD, 15-20 Business Analytical Reports(queries) with Results

– Research Project You may create a story, or use your work project. The project must include: ● Written story, ● Database logical and physical design ( ERD, tables) , ● Data, ● SQL Queries that represent business questions that your database would address.

– The research project can be presented as a Powerpoint, minimum of 15-20 pages long in length including ERD, CreateTable SQL, SQL Queries with returned records, Charts/Graphs and references.