Questions
All health care providers report diagnoses of diabetes. What best describes this type of surveillance? (choose...

All health care providers report diagnoses of diabetes. What best describes this type of surveillance? (choose one)

b) Active surveillance

a) Notifiable disease surveillance

c) Syndromic surveillance

d) Sentinel surveillance

e) Passive surveillance

If you compared the odds of a disease for a cohort of people exposed to some type of environmental agent, relative to a cohort of similar people who were not exposed, what would an odds ratio of 0.2 with a statistically significant p-value (p-value<0.05) represent? (Select the best ONE)

a.

Exposure appears to be positively associated with the disease

b.

Exposure appears to be negatively associated with the disease

c.

Exposure is not associated with the disease

d.

Exposure is definitely causative of the disease

e.

None of the above

The odds ratio for people with ischemic heart disease not taking calcium supplements compared to people taking calcium supplements is 0.67. What is the odds ratio for ischemic heart disease in people taking calcium supplements compared to people not taking calcium supplements? (choose one)

a) 1.33

d) -.33

e) 1.67

c) 1.49

b) -0.67

An observational study is being designed to assess the association of alcohol intake with cardiovascular disease. Which of the following factors is likely to be a confounder? (choose one)

a) exposure to fluoride in the public water system

b) smoking

d) season of birth

c) Zika virus

In: Nursing

a. Identify which ofthe following statements are correct and which are not correct.Write a...

  • a. Identify which of the following statements are correct and which are not correct. Write a correct alternative statement for those which are not correct.

    • I. it is more expensive to install fibre-optic cable because specialist training is necessary

    • ii. routers are used to connect subnets on a LAN

    • iii. all traffic in a subnet passes through the default gateway

    • iv. a layer 3 switch provides routing using MAC addresses

    • v. computers and/or other devices that are networked in a single physical location are said to form a wide area network.

  • b. With the aid of a table similar to Table 1, indicate at which layer number and layer name of the OSI model the protocols ATM, DNS, IP and UDP would be found.

Table 1

Layer numberLayer nameProtocol












  • c. What is the network ID of the host with an IPv4 address 192.88.77.150 with a subnet mask of 255.255.255.224?

In: Computer Science

1​The Question Barings Bank collapsed about two decades ago as a result of derivative trading. Identify...

1The Question

Barings Bank collapsed about two decades ago as a result of derivative trading. Identify any other high profile corporate bankruptcy attributable to derivative trading and.

I. Describe the events that created the problem outlining the differences and similarities between Barings Bank and your chosen institution
II. What are the lessons that financial institutions, investors and regulators can learn from the occurrence of such events.

2The Write Up

The write up should follow this outline:

i. Title page (University, paper topic, your full name, student number and exams number, Program, Department, Lecturer’s full name, date of submission).
ii. Introduction
iii. Overview (stylized facts) of the specific entity.
iiii. Discussion (address the key elements in the questions).
v. Conclusion and policy recommendations
vi. References.

In: Finance

Describe the various roles of the nurse and the ways in which these roles facilitate change....

Describe the various roles of the nurse and the ways in which these roles facilitate change.

Leading & Management in Nursing 5th Ed. Author: Patricia S. Yoder-Wise

In: Nursing

Summarize and explain and analyze the quotes of author Farran Powell U.S.News World&Report article "What You...

Summarize and explain and analyze the quotes of author Farran Powell U.S.News World&Report article "What You Need to Know About College Tuition Costs"

In: Economics

What about the "Setting" in Harry Potter and the Sorecer's Stone? Consider the wolrd as presented...

What about the "Setting" in Harry Potter and the Sorecer's Stone? Consider the wolrd as presented by the author. Does setting have a significant impact on your response to the book?

In: Psychology

2. What are the effects of technology on empathy? Do you agree with our author? Why/why...

2. What are the effects of technology on empathy? Do you agree with our author? Why/why not? What solutions can you offer/see, if any?

In: Psychology

import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.HashMap; import java.util.TreeSet; /** * MapSetLab - test the...

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.TreeSet;

/**
 * MapSetLab - test the HashMap and TreeSet classes.
 * 
 * @author Michael Norton
 * @version 18 September 2018
 */
public class MapSetLab {
    
    /**
     * Main method.
     * 
     * @param args The command line arguments
     * @throws IOException The IOException
     */
    public static void main( String[] args ) throws IOException {
        
        // declarations & some instantiations
        BufferedReader reader = new BufferedReader( new InputStreamReader( 
                        System.in ) );
        HashMap< String, TreeSet< String > > networkMap = 
                        new HashMap< String, TreeSet< String> >();

        // reusable references
        String network;
        String tvShow;
        TreeSet< String > set;
        
        // get 10 network & tv show pairs
        for ( int i = 0; i < 10; i++ ) {
            
            // get values from user
            System.out.print(  "Enter TV network: " );
            network = reader.readLine();
            System.out.print( "Enter TV show on " + network + ": " );
            tvShow = reader.readLine();
            
            // if key not found, create new entry
            if ( !networkMap.containsKey( network ) ) {
                
                networkMap.put( network, new TreeSet<String>() );
            }
            
            // get the TreeSet from the HashMap and add the show to the network
            set = networkMap.get( network );
            set.add( tvShow );
            
            // print out the mapping
            System.out.println( networkMap );
            System.out.println();
        }
        
    }

}

Use an appropriate loop to ask the user to enter the name of a TV show and then print on a separate line the name of the network that maps to that show. Repeat until the user enters an empty string.

HINT: Iterate over each key (network) in the HashMap, and see if its value (set of shows) contains the desired show. If so, print out the network. If none of the networks have that show, report "UNKNOWN". You don't have to worry about uppercase/lowercase, just match the TV show name exactly.

In: Computer Science

I was wondering if you can tell me if the following code is correct and if...

I was wondering if you can tell me if the following code is correct and if its not can it be fixed so it does not have any syntax errors.

Client one

/**
* Maintains information on an insurance client.
*
* @author Doyt Perry/<add your name here>
* @version Fall 2019
*/
public class Client
{
// instance variables
private String lastName;
private String firstName;
private int age;
private int height;
private int weight;

/**
* First constructor for objects of class Client.
*/
public Client()
{
// initialize all instance variables to placeholder values
this.lastName = "last name";
this.firstName = "first name";
this.age = 0;
this.height = 1;
this.weight = 1;
}

/**
* Second constructor for objects of class Client.
*
*
* Create a client object using explicit parameters to specify
* values for corresponding instance fields.
*
* @param inLastName last Name of client
* @param inFirstName first Name of client
* @param inAge age of client
* @param inHeight height of client
* @param inWeight weight of client
*/
public Client(String inLastName, String inFirstName, int inAge,
int inHeight, int inWeight)
{
// initialize instance variables
// using values passed in as parameters
this.lastName = inLastName;
this.firstName = inFirstName;
this.age = inAge;
this.height = inHeight;
this.weight = inHeight;
}


/**
* Update the last name of the client.
*
* @param inLastName last name of the client.
*/
public void setLastName(String inLastName)
{
// Set the last name instance variable to parameter
this.lastName = inLastName;
}
  
/**
* Return the last name of the client.
*
* @return String last name.
*/
public String getLastName()
{
// return the value of the last name instance variable
return this.lastName;
}

/**
* Update the first name.
*
* @param inFirstName first name of the client.
*/
public void setFirstName(String inFirstName)
{
// Set the first name instance variable to parameter.
// REPLACE this comment with your code
}
  
/**
* Return the first name of the client.
*
* @return String first name.
*/
public String getFirstName;
  

//return "not cor";
  

/**
* Update the age of the client.
*
* @param inAge age of the client.
*/
public void setAge(int inAge)
{
// Set the age instance variable to the parameter
this.age = inAge;
}
  
/**
* Return the age of the client.
*
* @return int first name.
*/
public int getAge()
{
// return the value of the first age instance variable.
return this.age;
}
  
/**
* Update the height of the client.
*
* @param inHeight height of the client.
*/
public void setHeight(int inHeight)
{
// Set the height instance variable to the parameter
this.height = inHeight;
}
  
/**
* Return the height of the client.
*
* @return int height of client.
*/
public int getHeight()
{
// return the value of the height instance variable.
return this.height;
}
  
/**
* Update the weight of the client.
*
* @param inWeight weight of the client.
*/
public void setWeight(int inWeight)
{
// replace this comment with your code
}
  
/**
* Return the weight of the client.
*
* @return int weight of client.
*/
public int getWeight()
{
// replace this comment & return statement with your code
return -1;
}
  
/**
* Calculate the BMI of the client.
*
* @return double BMI of client.
*/
public double calcBMI()
{
// return the result of calculating the BMI.
// Refer to "Common Error 4.1" on page 142 in the textbook for more info
// if WebCat flags the following calculation as an error.
return (704 * this.weight) / this.height * this.height;
}

/**
* Display the client information.
*
* @return String formatted client informatin.
*
* <pre>
* The label should be printed in the format:
*
* last name, first name
* Age: 99
* BMI: 99.999
* </pre>
*/
public String toString()
{
// initialize the variable that will hold the output string
String output = "";
  
// put the name in lastname, firstname format
output = output + this.lastName + this.firstName + "\n";
  
// include the client age
output = output + "Age " + this.age + "\n";
  
// include the email address
output = output + "BMI " + this.calcBMI() + "\n";
  
// return the output string
return output;
}
}

In: Computer Science

6. Let V be the vector space above. Consider the maps T : VV...

6. Let V be the vector space above. Consider the maps T : VV And S : VV

defined by T(a1,a2,a3,...) = (a2,a3,a4,...) and S(a1,a2,a3,...) = (0,a1,a2,...).

(a) [optional] Show that T and S are linear.
(b) Show that T is surjective but not injective.
(c) Show that S is injective but not surjective.

(d) Show that V = im(T) + ker(T) but im(T) ∩ ker(T) ̸= {0}.

(e) Show that im(S) ∩ ker(S) = {0} but V ̸= im(S) + ker(S).

In: Advanced Math