Based on data from a statistical abstract, only about 18% of senior citizens (65 years old or older) get the flu each year. However, about 28% of the people under 65 years old get the flu each year. In the general population, there are 15% senior citizens (65 years old or older). (Round your answers to three decimal places.)
(a) What is the probability that a person selected at random
from the general population is senior citizen who will get the flu
this season?
(b) What is the probability that a person selected at random from
the general population is a person under age 65 who will get the
flu this year?
(c) Repeat parts (a) and (b) for a community that has 86% senior
citizens.
(d) Repeat parts (a) and (b) for a community that has 52% senior
citizens.
In: Statistics and Probability
(A) Let a,b,c∈Z. Prove that if gcd(a,b)=1 and a∣bc, then a∣c.
(B) Let p ≥ 2. Prove that if 2p−1 is prime, then p must also be prime.
(Abstract Algebra)
In: Advanced Math
In: Physics
In: Mechanical Engineering
project question:
'Design and build a thrust measurement system for model aircraft engines '
1- Questions
i) sketch
ii) ideas
iii) plan
iv) introduction, background, theory , abstract etc...
In: Mechanical Engineering
I want an abstract about this topic please, not copy-paste from the Internet
Synthesized Shaped Beam Flat Array Antenna for Digital Beam-Forming Radar Applications, Utilizing Printed Technology.
In: Computer Science
Given the following specification, design a class diagram using PlantUML. To design the class diagram, use abstract, static, package, namespace, association, and generalization on PlantUML
Specification:
In: Computer Science
in java please
Project 2: The Triangle Class
Problem Description:
Design a class named Triangle that extends GeometricObject. The class contains:
• Three double data fields named side1, side2, and side3 with default values 1.0 to denote three sides of the triangle.
• A no-arg constructor that creates a default triangle.
• A constructor that creates a triangle with the specified side1, side2, and side3.
• The accessor methods for all three data fields.
• A method named getArea() that returns the area of this triangle.
• A method named getPerimeter() that returns the perimeter of this triangle.
• A method named toString() that returns a string description for the triangle.
For the formula to compute the area of a triangle, see Exercise 5.19. The toString() method is implemented as follows:
return "Triangle: side1 = " + side1 + " side2 = " + side2 + " side3 = " + side3;
Coding: (Copy and Paste Source Code here)
public class TheTriangleClass {
public static void main(String[] args) {
Triangle triangle = new Triangle(1, 1.5, 1);
triangle.setColor("yellow");
triangle.setFilled(true);
System.out.println(triangle);
System.out.println("The area is " + triangle.getArea());
System.out.println("The perimeter is " + triangle.getPerimeter());
System.out.println(triangle);
}
}
class Triangle extends GeometricObject {
// Implement it (See below for a complete example, the example is for Rectangle)
}
abstract class GeometricObject {
private String color = "white";
private boolean filled;
private java.util.Date dateCreated;
/** Construct a default geometric object */
protected GeometricObject() {
dateCreated = new java.util.Date();
}
/** Construct a geometric object with color and filled value
*/
protected GeometricObject(String color, boolean filled)
{
dateCreated = new java.util.Date();
this.color = color;
this.filled = filled;
}
/** Return color */
public String getColor()
{
return color;
}
/** Set a new color */
public void setColor(String color)
{
this.color = color;
}
/** Return filled. Since filled is boolean,
29 * the get method is named isFilled */
public boolean isFilled()
{
return filled;
}
/** Set a new filled */
public void setFilled(boolean filled)
{
this.filled = filled;
}
/** Get dateCreated */
public java.util.Date getDateCreated()
{
return dateCreated;
}
@Override
public String toString()
{
return "created on " + dateCreated + "\ncolor: " + color + " and
filled: " + filled;
}
/** Abstract method getArea */
public abstract double getArea();
/** Abstract method getPerimeter */
public abstract double getPerimeter();
}
In: Computer Science
Question based on the business course
24. The United States has a Masculine Orientation when compared to a country like Sweden . Which of the following statements are true
a.The US encourages power, physical strength, and domination Sweden values submission and politeness .
b. The US focuses on results , achievement and competition ; Sweden focuses on modesty , work/life balance ,
and promoting equality.
25. Which of the following are NOT terms used to describe and compare Divergent Cultural Characteristics
a. High context vs. Low context
b.bAtheistic vs. Polytheistic
c. Implicit rule vs Explicit-Rule
d. Long-term vs. Short-term orientation
26. in Uncertainty-Rejecting cultures, such as Japan and Saudi Arabia:
a.Employees are encouraged to question policies and/or regulations
b. Society is resistant to change and seeks to avoid unnecessary risks
c. Freedom of expression is celebrated
d. Few clear rules or regulations exist
c.The US prizes sports, cars, and the military Sweden values furniture, music, and meatballs .
d. The US rewards manliness and winning ; Sweden rewards feminism and beauty
30. When trying to get in touch with a coworker who is out of the office for the day, you should try to:
a. Send a text message to their personal mobile phone during business hours
b. Email them immediately once the work day is over
c. Try your best to reach them by their preferred method of contact
d. Call and leave a detailed voicemail
33. Which of the following groups of words are ONLY CONCRETE subjects ?
a. teamwork , initiative, customer service representative
b. strategy , goal, advertising firm .
c.ethics , competition , challenge
d. coworker , document , supervisor
35. Identity the sentence focus error(s) in the following sentence: The marketing strategy was developed by the CEO of the company.
a. abstract subjects, passive voice, and faulty expletives
b. abstract subjects and faulty expletives
c. abstract subjects and passive voice
d. faulty expletives ONLY
36. Identity the sentence focus error(s) in the following sentence: There are number of reasons why record profits will be earned by Apple in 2019.
a. abstract subjects ONLY
b. passive voice and faulty expletives
c. abstract subjects, passive voice, AND faulty expletives
d. passive voice ONLY
In: Operations Management
How is a technical report different from a news report? Mention their differences
In: Economics