How would you market a digital health service?

Digital health and technologies are increasingly dominating the healthcare systems. The usability of mobile health applications seen highest use in decays since pre and post COVID-19 occurrence. This assignment goal is to formulate best practices or framework to market digital health service.

Module 6 – How would you market a digital health service?

I very much believe that best practices are still being written in the space of digital health.  I wanted to dedicate this forum to discussing the following issues you personally might see in this space (please provide your own thoughts in around 250-350 words):

1. Are there any items that stood out in the readings for this module?

2. What best practices would you implement to ensure that patients or consumers keep returning to a service? Gamification, increased marketing, or social media are all potential discussion points. 

3. How should healthcare organizations present these services to patients?  What should be the “line” between clinical and consumer oriented?

The attach file show highlights on the questions above and should be use along with other sources to complete this assignment.

Ensure best result as possible.

Area and Circumference of a Circle

  

Area and Circumference of a Circle 

Study the program below, which uses both variables and constants:

// ************************************************************

// Circle.java

//

// Print the area of a circle with two different radii

// ************************************************************

public class Circle

{

public static void main(String[] args)

{

final double PI = 3.14159;

int radius = 10;

double area = PI * radius * radius;

System.out.println(“The area of a circle with radius ” + radius +

” is ” + area);

radius = 2 0;

area = PI * radius * radius;

System.out.println(“The area of a circle with radius ” + radius +

” is ” + area);

}

}

Some things to notice:

The first three lines inside main are declarations for PI, radius, and area. Note that the type for each is given in these

lines: final double for PI, since it is a floating point constant; int for radius, since it is an integer variable, and double for

area, since it will hold the product of the radius and PI, resulting in a floating point value.

These first three lines also hold initializations for PI, radius, and area. These could have been done separately, but it is

often convenient to assign an initial value when a variable is declared.

The next line is simply a print statement that shows the area for a circle of a given radius. 

The next line is an assignment statement, giving variable radius the value 20. Note that this is not a declaration, so the int

that was in the previous radius line does not appear here. The same memory location that used to hold the value 10 now

holds the value 20—we are not setting up a new memory location.

Similar for the next line—no double because area was already declared.

The final print statement prints the newly computed area of the circle with the new radius. 

Save this program, which is in file Circle.java, into your directory and modify it as follows: 

1. The circumference of a circle is two times the product of Pi and the radius. Add statements to this program so that it

computes the circumference in addition to the area for both circles. You will need to do the following:

Declare a new variable to store the circumference.

Store the circumference in that variable each time you compute it.

Add two additional print statements to print your results.

Be sure your results are clearly labeled. 

2. When the radius of a circle doubles, what happens to its circumference and area? Do they double as well? You can 

determine this by dividing the second area by the first area. Unfortunately, as it is now the program overwrites the first 

Chapter 2: Data and Expressions 

16

area with the second area (same for the circumference). You need to save the first area and circumference you compute

instead of overwriting them with the second set of computations. So you’ll need two area variables and two

circumference variables, which means they’ll have to have different names (e.g., area1 and area2). Remember that each

variable will have to be declared. Modify the program as follows:

Change the names of the area and circumference variables so that they are different in the first and second

calculations. Be sure that you print out whatever you just computed.

At the end of the program, compute the area change by dividing the second area by the first area. This gives you the

factor by which the area grew. Store this value in an appropriately named variable (which you will have to declare).

Add a println statement to print the change in area that you just computed.

Now repeat the last two steps for the circumference. 

Look at the results. Is this what you expected? 

3. In the program above, you showed what happened to the circumference and area of a circle when the radius went from

10 to 20. Does the same thing happen whenever the radius doubles, or were those answers just for those particular

values? To figure this out, you can write a program that reads in values for the radius from the user instead of having it

written into the program (“hardcoded”). Modify your program as follows:

At the very top of the file, add the line 

import java.util.Scanner; 

This tells the compiler that you will be using methods from the Scanner class. In the main method create a Scanner

object called scan to read from System.in.

Instead of initializing the radius in the declaration, just declare it without giving it a value. Now add two statements

to read in the radius from the user:

A prompt, that is, a print statement that tells the user what they are supposed to do (e.g., “Please enter a value

for the radius.”);

A read statement that actually reads in the value. Since we are assuming that the radius is an integer, this will

use the nextInt() method of the Scanner class.

When the radius gets it second value, make it be twice the original value.

Compile and run your program. Does your result from above hold? 

Chapter 2: Data and Expressions 

17

Project Management: A Systems Approach to Planning, Scheduling, and Controlling

 

You will have a two-part team project due in Weeks 9 and 10. The first part will be a research paper that outlines the components of a successful project. The second part will be application of these components to a project (real or fictitious) that you and your team mates are planning to start in a comprehensive Project Plan. Each paper should have a presentation to accompany it.

Guidelines:

  • For Part 2, remember to give me some context with regard to your project selection. Tell me what kind of business/organization it is, the goals of the project, and why it is important to complete the project.
  • Use your textbook as your primary source of information and current research (no more than 5 years old) to supplement it.
  • The papers must be written in APA style with references formatted in APA style, including a References page.
  • Presentations can take any form you like—be creative!

All written work must be submitted in the student’s own words with sources properly attributed in APA format. For your convenience, the correct in-text citation for your textbook is  (Kerzner, 2013). The correct in-text citation for your Case Studies book is (Kerzner, Project Management: Case Studies, 2013).

The correct full-text references for each book appear below:

Kerzner, H. (2013). Project Management: A Systems Approach to Planning, Scheduling, and Controlling, 11th ed. Retrieved from VitalSource Bookshelf: https://online.vitalsource.com/#/books/9781118418550/

Kerzner, H. (2013). Project Management: Case Studies. Retrieved from VitalSource Bookshelf: https://online.vitalsource.com/#/books/9781118415825/

Internship for computer science profession

Prepare a professional cover letter

Articulate effective interview strategies

Explain the difference between a “good” interview and a “bad” interview

Lecture Notes:
There are 3 sections of a cover letter that are required when writing a professional cover letter to include with your resume:
Introductory paragraph (to attract the potential employer’s attention)
Main Body (to highlight and draw attention to your skills)
Closing paragraph (to ask for an interview

Week 2 assignment #1—related to cover letter  

Using the lecture notes above, the video in this week’s discussion forum, and sources from the internet, write and submit a cover letter for a job you are interested in applying for. You can use indeed.com, careerbuilder.com, LinkedIn, or look for job opening on a company’s website to find a job opportunity that interest you. Be sure to include a copy of the job posting with your cover letter.

Week 2 Assignment #2—interview prep—good interview vs. bad interview (interviewing techniques

https://www.youtube.com/watch?v=HG68Ymazo18 [Title: Top Interview Tips: Common Questions, Nonverbal Communication & More] 

https://www.youtube.com/watch?v=rAIXkf8WOlk [Title: Good interview, bad interview]

After watching both video, write a one to two paragraph reflection of what you will do differently in an interview as a result of what your learned. Explain what you did wrong prior to watching this video. If you have never interviewed for a job, then write about your interview for admission into the  Graduate School.

Assignment W3

Write a summary of attached PowerPoint presentations.  The summary can be a few pages long and should capture the goal of the presentation and any key points in it.  

CIS 213 DB 5

1 page apa format

Using a project that you have experience with, that of a family member or friend, or one from your own research to clarify your answers, discuss:

  • Why estimating time and cost is important to the project.
  • What you think is difficult about estimating the project times.
  • What you think is difficult about estimating the project costs. Explain why you think this is difficult.

Cite all sources. Additionally, please respond to two other classmates’ posts. 

Poblem definition

  

Poblem definition: Write a program that would calculate and display the results for the multiplication table for values ranging from 1 to 100. 

A. Problem Analysis – Following the directions in the assignment, clearly write up your problem analysis in this section. 

B. Program Design – Following the directions in the assignment, clearly write up your problem design in this section and comment your pseudocode. 

C. Program Comments and Test Data – Following the directions in the assignment, include your test data and expected results in this section.

Risk Management Plan Outline and Research

This project is divided into several parts, each with a deliverable. The first four parts are drafts. These documents should resemble business reports in that they are organized by headings, include source citations (if any), be readable, and be free from typos and grammatical errors. However, they are not final, polished reports. Please see the attached requirements.

Project Part 1: Risk Management Plan Outline and Research

For the first part of the assigned project, you will create a partial draft of the risk management plan. To do so, follow these steps:

  1. Research risk management plans.
  2. Create an outline for a basic risk management plan with anticipated section headings (as indicated in this numbered list). This plan will include a qualitative risk assessment, which is addressed later in the project.
  3. Write an introduction to the plan by explaining its purpose and importance.
  4. Define the scope and boundaries of the plan.
  5. Research and summarize compliance laws and regulations that pertain to the organization. Keep track of sources you use for citation purposes.
  6. Identify the key roles and responsibilities of individuals and departments within the organization as they pertain to risk management.
  7. Develop a proposed schedule for the risk management planning process.
  8. Create a draft risk management plan detailing the information above. Format the plan similar to a professional business report and cite any sources you used.

Submission Requirements

  • Format: Microsoft Word (or compatible)
  • Font: Arial, size 12, double-space
  • Citation style: Your school’s preferred style guide

Estimated length: 4–6 pages 

CIS 498 – Identifying Your Company and Your Role

  ACTIVITY: IDENTIFYING YOUR COMPANY AND YOUR ROLE

Activity: Identifying Your Company and Your Role

Overview

You have accepted a job offer from the chief information officer at a small business with 30 employees. The company moved into a new building last year and quickly expanded. The CEO has asked the CIO to serve as an executive stakeholder of the project steering committee, which is headed by the lead project manager of the PMO that the company is contracting with.

Instructions

For this activity, you will establish the fictional company, executives, and team members that you will refer to. You will use the information from this activity to complete your first assignment in Week 2.Using the provided Word Document Template, respond to each of the following:

  1. What is the name of this e-commerce company? (Do not choose a real company.) What is the fictional name of the CEO, and what is the fictional name of the CIO? (You can use a friend or family member if you want, or some celebrity or fictional character.)
  2. In 1–2 paragraphs, describe what kind of business your fictional company is in. Do they sell a product? A service? A new government (non-political, please) agency? A nonprofit or charity, perhaps? The one stipulation is that they must conduct business online, and they must be growing.
  3. Finally, choose one of the following roles on the team. Pick one that is closest to the concentration you have studied. For example, software engineering would be closest to software development, forensic investigation would be closest to cybersecurity. If you have any questions on how to answer this, reach out to your instructor. Which of the following is your major (concentration) closest to?
    • Software Development.
    • Networking.
    • IT Project Management.
    • Data Analytics.
    • Data Management.
    • Cybersecurity (yes, this is the correct spelling).
  4. Now that you have identified your area of expertise based on the concentration you have studied, you will need to identify the members of your team. You will take the place of one of the members, so put your name where it belongs; the other roles can have fictional names assigned to them.
    • Cybersecurity Specialist.
    • Networking Specialist.
    • Data Management Specialist.
    • IT Project Manager (Assistant to the Project Manager).
    • Software Development Team Lead.

Week 3 Assignment

 

Instructions 

Please watch this video: https://youtu.be/ctij93rBmsM which is an hour long video on anti-forensics.

Instructions

Now that you have watched the video – please complete this assignment. 

1. What did you learn?
2. Did you learn anything that surprised you such as “I didn’t know I could use this technique to try to hide data?!”
3. Please list at least four different ways that an bad actor may try to obfuscate their tracks.
4. Once you have identified four different ways that a bad actor may try to evade scrutiny, please identify how you might be able to uncover those techniques.