Exp19_PowerPoint_AppCapstone_Intro_STEM

Exp19_PowerPoint_AppCapstone_Intro_STEM

  

Project Description:

As a member of the local school district’s STEM (Science, Technology, Engineering, and Math) committee, you have been asked to create a presentation on STEM education to be used to build interest in expanding the STEM curriculum with the local school district and to seek funding from local business owners and taxpayers. You began a presentation and now need to add the content to the presentation.

     

Start   PowerPoint. Download and open the file named Exp19_PPT_AppCapstone_Stem.pptx. Grader has automatically added   your last name to the beginning of the filename. Download and extract the zip   file named Exp19_PPT_AppCapstone_Stem_Assets.zip.   

 

Change the theme colors to   Aspect.

 

 

Change the theme fonts to Gill   Sans MT.

 

On Slide 8, insert the Microscope.jpg in the left   placeholder. Apply the Metal Oval
  picture style. Change the Picture Border fill to Dark Gray, Background 2,   Lighter 10%.

 

On Slide 10 in the left content   placeholder, insert the ElementarySchool.jpg   image. In the right content placeholder, insert the ElementarySchool2.jpg image.
 

  Apply the Simple Frame, White picture style to both images. Change the   Picture Border fill for both images to Dark Gray, Background 2, Lighter 10%.

 

On Slide 11 insert the MiddleSchool.jpg image. Make the   following changes to
  the inserted image:
  • Crop the left side of the image so that most of the white area is removed.
  • Change the Shape Height of the image to 5.2“.
  • Apply the Simple Frame, White picture style.
  • Change the Picture Border to Dark Gray, Background 2, Lighter 10%.
  • Set the Horizontal position of the image to 3.6” and the Vertical position to 1.9“.

 

On Slide 12 insert the HSVideo.mp4 video file. Make the   following changes to the
  video:
  • Apply the Simple Frame, White video style.
  • Change the Video Border to Dark Gray, Background 2, Lighter 10%.
  • Set the video to start Automatically.

 

On Slide 4 insert the image WorldMap.jpg as a background image on   the slide. Change the transparency to 40%.

 

On Slide 2 insert a Picture   Caption List SmartArt graphic.
 

  Add the following to the SmartArt graphic:
  • Type Science   in the first   bullet point in the Text pane and then insert Science.jpg   as the image
  • Type Technology   in the second   bullet point and add then insert the Technology.jpg   image.
  • Type Engineering in the third bullet point and add the image Engineering.jpg.
  • Type Math   as the fourth   bullet point and add the image Math.jpg.
 

  Apply the Intense Effect SmartArt Style to the SmartArt graphic.

Assignment 300 words

 Do a bit of research on penetration testing techniques. Investigate and document the following

  • Five network penetration testing techniques
  • Advantages and disadvantages of each
  • One notable social engineering test
  • Possible negative implications of penetration tesing

Final DBA Database Systems & Application Project Presentation

Subject: DBA Database Systems & Application

Create Final Project Presentation (PPT) for Project for “COVID Tracking digital app” aka VaxUS

Details: 

VaxUS will be an online portal and we also create Mobile App to record, manage and maintain the vaccination status of individuals who have been given the Covid19 shot or shots, in their entirety.  

The assumption is that the individual has not been vaccinated.

We also need to think of upcoming children vaccine between 5 to 12 year of age base on their state certificate/record.

Requirement:

1. Total 10-12 slides

2. No title page

3. please MUST READ and include from below 

   a. Database and Application Design

   b. Data Modeling,Connectivity,and Metadata

   c. Data Integrity and Database Security

   d. Database Design normalization

   e. High level overview of Entity Relationship Diagram and Database Network diagram

Cloud Computing

  We have a cloud computing course project. I uploaded the file with requirements. I need  2 page explanation and an instance from AWS or Azure. You need to create an instance, a project in AWS or Azure and explain it in 2 pages. The rest of it is explained in the word. It’s simple.

Assignments

For this week’s assignment, please research a scholarly article on scholar.google.com and briefly summarized the article on the topic of “File Identification and Profiling in Digital Forensics”. Please, use APA Style formatting on this assignment.

Computer 10

Seek out the latest presentation by Mary Meeker on “Internet Trends” (if you cannot find it, the video from 2019 is available at https://www.youtube.com/watch?v=G_dwZB5h56E or seek out another source of information on Internet Trends and Emerging Technologies.

Write 1 page describing what the top three trends and/or emerging technologies are, in your opinion and why. 

Are there any ethical dilemmas over those trends and why? (Think about printable like 3D printers and weapons, autonomous vehicles, wearables, findables, etc…).  In your opinion, is this trend good for mankind?

You are developing a simple graphics

  

You are developing a simple graphics package that will allow you to draw and manipulate simple geometric shapes such as squares, rectangles, etc. Your initial design is along the following lines:
 

public class Rectangle {
private int h, w;
public intgetHeight() {…}
public intsetHeight(int x) {…}

}
 

public class Square extends Rectangle {
// ???
}
This question has a ‘devil’s advocate’ nature to it and is in two parts.
 

You intend to model a square as inheriting from a rectangle. How would you complete the code on the above right to realize this intention?