Questions
Q1. Choose any ONE topic of your choice from the following and write your opinion either...

Q1. Choose any ONE topic of your choice from the
following and write your opinion either PRO or CON
about it in your own words word limit 100 WORDS.
• Write your chosen question on top and mention
pro or con.

1.There should be only girls and only boys school.
PRO/CON
2.Is reading fiction a waste of time? Explain your
answer using specific reasons and examples to
support your position. PRO/CON
3.“Better a lie that soothes than a truth that hurts.”
Do you agree? Why or why not? Use specific
reasons and examples to explain your answer.
PRO/CON
4.Convince your best friend to try your favorite
eatery for fast food, their food is the best. Or
forbid them, their food is not up to the mark.
PRO/CON
5.I learn more by watching movies, videos and
clips on that same topic than reading about it.
PRO/CON

In: Computer Science

There are techniques in biotechnology that can create genetically engineered babies. This technology can cure genetic...

There are techniques in biotechnology that can create genetically engineered babies.

This technology can cure genetic diseases, such as Multiple Sclerosis, Hodgkin’s Disease, Cystic Fibrosis, Alzheimer’s, or Sickle Cell Anemia. However, it can also be used to give cosmetic characteristics or traits that would result in an unfair advantage, such as creating better athletes by giving them incredible strength. Write a 250-word Essay on how this technology should be used in the future. Should limits be placed on what can be done with this technology? How can such regulations be enforced?

OUTLINE

1) How should this technology be used in the future? - To prevent genetic diseases and assist the child in living a healthy life.

2) Should limits be placed on what can be done with this technology? - YES. This technology should not be used for superficial purposes, such as appearance concerns, building better athletes, and selecting the sex of the child.

3)How can such regulations be enforced? - By setting laws that require the procedures to only be used for health concerns and the prevention of genetic diseases.

In: Biology

Question 1 In this exercise, you are required to do a program analysis and write a...

Question 1 In this exercise, you are required to do a program analysis and write a program for a system that computes a speeding ticket cost. The charge is calculated as follows: P20 for every kilometre above the speed limit, plus P100 standard charge. E.g. If the speed limit is 60 km/hour and you are driving at 75 km/hour. The charge will be P400. If the speed is equal to or under the speed limit, then there is no charge. However, if the speed is over 220 km/hour in a 60 km zone the license is immediately revoked plus P3000 pula fine, but if it is the driver’s birthday the ticket will be forgiven and cost nothing. The output should be both to the screen and word document file. Required: Part A: Documentation Compile a well-structured report that contains the following information. 1. Problem definition 2. System Requirements 3. Flowchart for the system 4. Results and Discussions 5. Conclusions 6. Referencing [50 marks] Part B: C++ Program Write a C++ program for the system. Assessment will be through demonstration. [50 marks]

In: Computer Science

   Task Description Task No. Must Follow    Expected time(days) Reserve the meeting room                 A        

  

Task Description Task No. Must Follow    Expected time(days)

Reserve the meeting room                 A                 None                                      1

Order the marketing material              B                     A                                        9

Brief the managers                             C                     A                                        2

Send put the customer emails            D                     C                                        3

Burn sample DVDs   E                      C                                        3

Load the new software F                      D, E                                    2

Do a class rehearsal.                           G                     B, F                                    1

Now you do:

(A) Using the data from the table above, draw a Gantt chart to help Flow Associates organize the meeting. Chart should be neat and labeled.   

(B) Using the data from the table above, draw a PERT diagram. Then identify the critical path. The diagram should be neat and labeled.

Note: you can create these charts using MS Project. If you do not wish to use MS Project, you can use MS Excel to create Gantt chart and MS Word to create PERT Diagram.

In: Computer Science

Pretend that I (your professor) have enough free time to create an elaborate database for one...

Pretend that I (your professor) have enough free time to create an elaborate database for one of my fall face-to-face classes that contained the following information:

1) daily attendance

2) grades for every assignment and exam (including date of assignment)

3) age of students

4) every contact that each student made with me including email and office visit

5) voluntary class participation per student

6) whether students were freshmen, sophomore, junior, or senior

7) how many hours each student worked at a job each week

Write a 300-word essay discussing what ways I (the professor) could examine the relationship of this data to learn more about this class. Also, is there any additional data that would be interesting to have to examine this class?

Example: "I would like to analyze the relationship between class attendance and grade. I suspect that, on average, the students who do not show up to class are less likely to perform well..."

In: Computer Science

A small grocery store uses a very basic file format to store prices for its goods....

A small grocery store uses a very basic file format to store prices for its goods. This file format has one item per line. The first word of the line is the name of the product, and after this is the price of the product in dollars (no dollar sign). For example, a typical file might look like:

bread 2.50

milk 1.90

pizza 10.95

Write a C program which reads one such file (create your own for testing) into two arrays, one called “items” which stores the product names, and the other called “prices” which stores all the prices. When creating the arrays, assume that the maximum length of a product name should be capped at 100 characters, and that there is a maximum of 1000 products in the file. Once all values are stored in the array, print the product list to the screen, including dollar signs in the prices as necessary along with headers for each column, for example:

ITEM PRICE

==============

bread $2.50

milk $1.90

pizza $10.95

In: Computer Science

You want to create a study to examine the psychological factors affecting how teenagers in an...

You want to create a study to examine the psychological factors affecting how teenagers in an impoverished urban area spend their time outside of school. For this assignment, you will design this study. Below is a list of each of the components on which you will be evaluated. You will be evaluated based on the following: Use of the scientific method. Discussion of which methods you used, why, and potential sources of error. Explanation of the relationship between the hypothesis vs. the null hypothesis; and connection to your study. Analysis of potential ethical issues, their importance in research, and how to address them. Discussion of potential issues regarding culture, gender, diversity, or the environment and how to address them. Explanation of which types of sources were used and how these choices may affect results. An overview of how you would present your findings and why they can be classified as being within the field of psychology. Please provide your answers in a 3- to 4-page Microsoft Word document Cite any sources in APA format.

In: Psychology

HOW WOULD YOU WRITE THIS IN PYTHON? SHOW THIS IN PYTHON CODE PLEASE # DEFINE 'all_keywords',...

HOW WOULD YOU WRITE THIS IN PYTHON?
SHOW THIS IN PYTHON CODE PLEASE
# DEFINE 'all_keywords', A LIST COMPRISED OF ALL OUR NEGATIVE SEARCH KEYWORDS AS REQUIRED BY THE PROJECT
# FOR EACH ELEMENT IN 'full_list' (THE LIST OF LISTS YOU WOULD HAVE CREATD ABOVE THE PREVIOUS LINE)
#       INITIALIZE THE SET 'detected_keywords' TO EMPTY
#       DEFINE VARIABLE 'current_reviewer' FROM CURRENT ELEMENT OF 'full_list' BY EXTRACTING ITS FIRST SUB-ELEMENT,...
#       ...CONVERTING IT TO A STRING, AND THEN STRIPPING THE SUBSTRING '<Author>' OFF THIS STRING
#       GENERATE THE LIST 'separated_words' COMPRISED OF EACH SEPARATE WORD IN THIS REVIEWER'S COMMENTS, BY EXTRACTING THE SECOND SUB-ELEMENT...
#       ...FROM THE CURRENT ELEMENT AND EXECUTING THE '.split' METHOD ON IT
#       FOR EACH ELEMENT IN 'separated_words'
#               FOR EACH ELEMENT IN 'all_keywords'
#                       if LOWER-CASE OF 'all_keywords' IS CONTAINED IN LOWER-CASE OF 'separated_words'
#                               ADD THE CURRENT ELEMENT OF 'all_keywords' TO THE SET 'detected_keywords'
#       IF LENGTH OF 'detected_keywords' IS MORE THAN ZERO
#               PRINT A LINE SUCH AS -- XYZ USED THE FOLLOWING KEYWORDS: {'bad,'rough'}
#       ELSE
#               PRINT A LINE SUCH AS -- XYZ DID NOT USE ANY NEGATIVE KEYWORDS.

In: Computer Science

The CEO of your company would like to revamp the retirement options offered to employees. Create...

The CEO of your company would like to revamp the retirement options offered to employees.

Create a proposal that describes two to three different retirement plans that could be offered. In the proposal, you must identify specific requirements of the Employee Retirement Income Security Act of 1974 that the organization would need to fulfill. In addition to the proposal, management has asked the HR department to design a communication plan that encourages employee participation for one of the proposed retirement plans.

Prepare a 525- to 700-word proposal and communication plan. In your communication plan, include components that encourage participation in the retirement plan.

Answer the following questions:

  • How will you communicate information to employees?
  • How often will you communicate information to employees?
  • What tools or methods will you use to communicate the plan?
  • How will you overcome resistance to participation?
  • How will you get employees to enroll?
  • How will you communicate the plan to make it attractive?

I just need help with the introduction and conclusion

In: Operations Management

INSTRUCTIONS: A company has a centralized accounting system. Each individual department currently compiles its accounting paper...

INSTRUCTIONS: A company has a centralized accounting system. Each individual department currently compiles its accounting paper transactions from its local accounting system. To eliminate the paper and increase efficiency, the Audit Manager of the company just asked you, IT auditor, to help him come up with a plan to implement an interface from each individual department’s accounting system to the centralized accounting system.

TASK: Prepare a memo to the Audit Manager naming and describing the most critical controls that you would recommend in this particular case. You are required to search beyond the chapter (i.e., IT literature and/or any other valid external source) to support your response. Include examples, as appropriate, to evidence your case point. Submit a word file with a cover page, responses to the task above, and a reference section at the end. The submitted file should be 5 pages long (double line spacing), including cover page and references. Be ready to present your work to the class.

In: Operations Management