Discussion 13 – Enterprise Risk Management

The article on IRB this week discusses broad consent under the revised Common Rule. When you are doing any sort of research you are going to need to have your research plan approved by the University’s institutional review board or IRB. If you have never heard of this term before, please take a look online and find a brief summary of what it is about, before you read the article.  

Please answer the following questions in your main post:

  • What are the main issues that the article addresses?
  • What is the Common Rule?
  • How is this issue related to information systems and digital privacy?

Please make your initial post of 500 to 600 words .

At least one scholarly source should be used in the initial discussion thread. Be sure to use information from your readings and other sources from the UC Library. Use proper citations and references in your post.

Discussion 6

 Select from the following list four (4) topics and discuss. Use only 70-words max per topic to discuss and present your answer.  The discussion questions this week are from Chapter 7 (Jamsa, 2013).

Chapter 7 topics:

  • Define collaboration.
  • Define and describe cloud-based collaboration.
  • The CIO of Ace Accounting Services suggests that the company can save considerable money using VoIP for phone calls. Define and describe VoIP. Then present three companies that provide VoIP offerings. Compare and contrast each company’s offering. Also, discuss whether or not you agree with the CIO and justify why.
  • List the questions one should consider when evaluating a cloud-based collaborative solution.

NOTE: You are required to use at least two-peer reviewed sources (besides your textbook) to answer the above questions.  

reflection

Provide a reflection of at least 500 words (or 2 pages double spaced) of how the knowledge, skills, or theories of this course

How blockchain can be beneficiary for financial sectors 

Critical thinking (Assignment 2 – Problem Solving )

 

Choose one (1) of the problem scenarios as a topic choice for your paper (Note: Your professor must approve your topic choice before you begin work on the assignment.)

Scenario 1: You have worked at your company for eleven (11) years. You have returned to college to earn a Bachelor’s degree in order to increase your chances for a promotion. You are nearly finished with your degree, when a supervisor’s position in a competing company becomes available in another state. The start date is in two (2) weeks, during your final exam period for your courses. The position offers a $15,000 per year salary increase, a car allowance, and relocation expenses. Your former supervisor works for the company and is recommending you for the position based on your outstanding job performance; if you want the job, it’s yours. All of the other supervisors at this level in the company have Master’s degrees, so you know that you would be expected to earn your Bachelor’s degree and continue on to a Master’s degree. Your present company offers tuition reimbursement, but the new company does not.

Scenario 2: Your child comes home from school with an assignment sheet for a school project. He / she is very excited about the project and begins work immediately, doing research on the Internet and gathering materials. You read over the assignment sheet and notice that your child is not including all of the required items in the project, and you have some ideas for how to improve the quality of the presentation. You recently read an article in a parenting magazine about the importance of a child developing responsibility for his/ her own learning. You recall the many ways in which your parents took over your school projects. You, on the other hand, want to encourage your child’s confidence in his / her ability to complete a project independently. The next day, you are at the grocery store when you see a parent of a student in your child’s class. That parent has spent over $30 in supplies for the science project and is taking a day off of work to put the pieces of the project together.

Scenario 3: You have two jobs, one during the week from 9:00 am to 6:00 pm, and one on Saturday from 3:00 pm to 11:00 pm. You are taking two classes, one that meets from 6:00 to 10:00 pm, and one class online. You have two kids, one who plays soccer, and one who is in band. You have two elderly parents who no longer drive. You have two siblings, one who lives two (2) miles away, and one who lives in another state. You have two (2) papers due in your classes the same week that one (1) of your children has a soccer tournament, and the other child has a band concert. You are coaching the soccer team, and you are in charge of fundraising for the band. You have a goal to complete your degree in two (2) years. Your doctor tells you that your blood pressure, your cholesterol, and your weight are too high and recommends several medications that cost you nearly $200 per month after your insurance co-pay.

Scenario 4: You are a sales representative for a company that encourages staff to log time in the field and away from the office. You are expected to begin and end your day at the office. You notice that each day when you arrive and return another co-worker is already there, and you wonder whether this person spends most of his / her time at the office. At your weekly sales meeting, you are informed of your co-workers’ outstanding sales performance. You suspect that this co-worker is spending more time flattering the boss instead of working leads in the field, and as a result is getting the best client referrals. Your own sales numbers have steadily decreased since this other sales representative was hired.

 

Write a four to five (4-5) page paper in which you:

  1. Define the problem in the scenario that you have chosen.
  2. Analyze the problem in the scenario.
  3. Generate options for solving the problem in the scenario.
  4. Evaluate the options for solving the problem.
  5. Decide on the best option for solving the problem.
  6. Explain how you will implement the decision made and reflect on whether this option was the most effective.

final_app_part1.png

Web Scraping Homework – Mission to Mars

 

Step 1 – Scraping

Complete your initial scraping using Jupyter Notebook, BeautifulSoup, Pandas, and Requests/Splinter.

  • Create a Jupyter Notebook file called mission_to_mars.ipynb and use this to complete all of your scraping and analysis tasks. The following outlines what you need to scrape.

NASA Mars News

# Example:

news_title = "NASA's Next Mars Mission to Investigate Interior of Red Planet"



news_p = "Preparation of NASA's next spacecraft to Mars, InSight, has ramped up this summer, on course for launch next May from Vandenberg Air Force Base in central California -- the first interplanetary launch in history from America's West Coast."

JPL Mars Space Images – Featured Image

  • Visit the url for JPL Featured Space Image here:  https://www.jpl.nasa.gov/spaceimages/?search=&category=Mars 
  • Use splinter to navigate the site and find the image url for the current Featured Mars Image and assign the url string to a variable called featured_image_url.
  • Make sure to find the image url to the full size .jpg image.
  • Make sure to save a complete url string for this image.
# Example:

featured_image_url = 'https://www.jpl.nasa.gov/spaceimages/images/largesize/PIA16225_hires.jpg'

Mars Weather

  • Visit the Mars Weather twitter account here and scrape the latest Mars weather tweet from the page. Save the tweet text for the weather report as a variable called mars_weather.
  • Note: Be sure you are not signed in to twitter, or scraping may become more difficult.
  • Note: Twitter frequently changes how information is presented on their website. If you are having difficulty getting the correct html tag data, consider researching Regular Expression Patterns and how they can be used in combination with the .find() method.
# Example:

mars_weather = 'Sol 1801 (Aug 30, 2017), Sunny, high -21C/-5F, low -80C/-112F, pressure at 8.82 hPa, daylight 06:09-17:55'

Mars Facts

  • Visit the Mars Facts webpage here and use Pandas to scrape the table containing facts about the planet including Diameter, Mass, etc.
  • Use Pandas to convert the data to a HTML table string.

Mars Hemispheres

  • Visit the USGS Astrogeology site here to obtain high resolution images for each of Mar’s hemispheres.
  • You will need to click each of the links to the hemispheres in order to find the image url to the full resolution image.
  • Save both the image url string for the full resolution hemisphere image, and the Hemisphere title containing the hemisphere name. Use a Python dictionary to store the data using the keys img_url and title.
  • Append the dictionary with the image url string and the hemisphere title to a list. This list will contain one dictionary for each hemisphere.
# Example:

hemisphere_image_urls = [

   {"title": "Valles Marineris Hemisphere", "img_url": "..."},

   {"title": "Cerberus Hemisphere", "img_url": "..."},

   {"title": "Schiaparelli Hemisphere", "img_url": "..."},

   {"title": "Syrtis Major Hemisphere", "img_url": "..."},

]

Step 2 – MongoDB and Flask Application

Use MongoDB with Flask templating to create a new HTML page that displays all of the information that was scraped from the URLs above.

  • Start by converting your Jupyter notebook into a Python script called scrape_mars.py with a function called scrape that will execute all of your scraping code from above and return one Python dictionary containing all of the scraped data.
  • Next, create a route called /scrape that will import your scrape_mars.py script and call your scrape function.
    • Store the return value in Mongo as a Python dictionary.
  • Create a root route / that will query your Mongo database and pass the mars data into an HTML template to display the data.
  • Create a template HTML file called index.html that will take the mars data dictionary and display all of the data in the appropriate HTML elements. Use the following as a guide for what the final product should look like, but feel free to create your own design.

final_app_part1.png final_app_part2.png

Step 3 – Submission

To submit your work to BootCampSpot, create a new GitHub repository and upload the following:

  1. The Jupyter Notebook containing the scraping code used.
  2. Screenshots of your final application.
  3. Submit the link to your new repository to BootCampSpot.

Hints

  • Use Splinter to navigate the sites when needed and BeautifulSoup to help find and parse out the necessary data.
  • Use Pymongo for CRUD applications for your database. For this homework, you can simply overwrite the existing document each time the /scrape url is visited and new data is obtained.
  • Use Bootstrap to structure your HTML template.

ITGE -1

 Do you feel that countries and companies need explicit strategies for technology development, given the tremendous amount of largely spontaneous creativity that occurs today, often in areas where new technologies are not expected to exert a great influence.  Why or why not? 

Need one page of content 

Write an essay of at least 500 words discussing the reasons for the two new auditing roles in Oracle 12c. Why did Oracle consider them necessary? What problems do they solve? How do they benefit companies?

Use the five paragraph format. Each paragraph must have at least five sentences. Include 3 quotes with quotation marks and cited in-line and in a list of references. Include an interesting meaningful title. Cite your sources in a clickable reference list at the end. Do not copy without providing proper attribution (quotation marks and in-line citations).

Need Assignment Help

  Go online and search for information that relates to ethical hacking  (white hat or gray hat hacking). Choose one of these areas explain why a  company might benefit from hiring someone to hack into their systems.  

  Your assignment should be 3-4 paragraphs in length.  (300-400 words)

I will expect APA formatting, citations, references