The average claims to an insurance company is 3 claims per day. a. Find what is the probability that in a week there will be at least 5 days, 2 or 3 or 4 demands. b. Determine the probability that in a month, at least 15 days and at most 22 days, the number of demands this between 3 and 6 demands.
In: Statistics and Probability
Five people, A, B, C, D, and E are equally qualified runners.
They run a one - km sprint,
and the order of finish is recorded.
Number of orders of finish is?
Probability that runners come in order E, D C, B, A is ?
Probability that runners come in order E, D C, B, A is ?
In: Statistics and Probability
Cards are dealt without replacement from a standard deck.
(a) Find the conditional probability that the second card is a club given that the first card
is club.
(b) Find the conditional probability that the second card is a club given that the second-to-
last card is a club.
(c) Find the conditional probability that the first card is a club given that none of the next
five cards are clubs.
(d) Find the expected number of clubs that appear before the king of diamonds.
In: Statistics and Probability
NETWORKING INTRODUCTION QUESTIONS.
1. You are the network administrator for an organization. You boot up a router, log into it, and issue a series of commands that changes the IP address of one of the interfaces. Which of the following statements is true? (Choose 2)
2. What are two characteristics of fiber-optic cable? (Choose two.)
|
3. Which statements are true regarding physical layer standards? (Choose 2)
|
4. How long are the source and destination IP addresses?
|
5. Physical layer standards define all of the following except?
|
|
6. You are receiving a file using a TCP protocol. During the three way handshake the computers agreed to a 10,000 byte window. What will happen if only 5000 bytes are acknowledged?
|
7. You are a network administrator of a small company that is upgrading its existing IP network. Currently the network utilizes UTP to the desktops. You wish to upgrade to fiber multi-mode to the desktops. What changes do you need to make to the IP settings of the devices in the network?
8. You are a network administrator for an organizations. One of the end users complains that her PC cannot access any website. You investigate and find that the PC cannot communicate with any other device. You suspect the problem lies with the TCP/IP protocol stack on the host. What command will test whether this is the problem?
|
9. Why is media access control required for Ethernet?
|
10. Which is true about the HTTP protocol?
|
11. Ethernet uses what access method?
|
12. Which UTP cable is used to connect a switch port to a PC?
|
13. Which is true regarding DHCP services?
|
|
14. Which is not true regarding email protocols?
|
|
15. Bandwidth is measured in all of the following except___________?
|
|
16. You are receiving a VOIP call. What transport layer feature allows the receiving data to stay live?
|
|
17. You open multiple browsers on a single PC to access a website. The web server sends a reply to the request from one of the web browsers. Which information is used by the TCP/IP protocol stack in the PC to identify which of the web browsers should receive the reply?
|
18. What is encapsulated around a packet at layer 2? (Choose 2)
You could answer with the letters or type it out per question. I appreciate it.
In: Computer Science
HWAWEI produceces 6 smartphones every 30 seconds Assume that the
probability of production is the same for periods of equal length
and that production of one period are indepened of the production
in another. (Show all your work)
a) What is the expected number of smartphones that can be produced
in 2 min?
[5]
b) What is the probability that 15 smartphones will be produced in
2 min?
[5]
c) What is the probability that 2000 smartphones will be produced
in 2 hours?
[7.5]
d) What is the probability that at least 6 will be produced in 1
min?
[5]
e) What is the probability that at most 5 will be produced in 1
min?
[5]
f) What is the probability that more 10 will be produced in
20min?
NB!!!! PLEASE ANSWER E&F ONLY
In: Statistics and Probability
In a region, there is a 0.9 probability chance that a randomly selected person of the population has brown eyes. Assume 11 people are randomly selected. Complete parts (a) through (d) below.
a. Find the probability that all of the selected people have brown eyes.
The probability that all of the 11 selected people have brown eyes is:
(Round to three decimal places as needed.)
b. Find the probability that exactly 10 of the selected people have brown eyes.
The probability that exactly 10 of the selected people have brown eyes is:
c. Find the probability that the number of selected people that have brown eyes is 9 or more:
d. If 11 people are randomly selected, is it unusual for 9 or more to have brown eyes?
In: Statistics and Probability
package SOLUTION;
import java.util.Collection;
import java.util.Set;
public interface MapInterface<K, V> {
/**
* If the given key is not already in the map, adds
the
* key-value pair to the map. Otherwise, updates the
old
* value of the existing key to the specified
value.
* @param key the key
* @param value the value to be stored in the map with
the key
* @return null if the key was not already in the map,
or
* the old value associated with the key if the key was
already in the map
*/
public V put(K key, V value);
/**
* Gets the value from the map that is associated with
the given key
* @param key the key
* @return the value associated with the key, or null
if the key is
* not in the map
*/
public V get(K key);
/**
* Removes from the key-value pair associated with the
specified key
* @param key the key
* @return the value associated with the key, or null
if the key is
* not in the map
*/
public V remove(K key);
/**
* Returns whether the map contains the key-value pair
associated with
* the specified key
* @param key the key
* @return true if the map contains a key-value pair
with the specified
* key, and false otherwise
*/
public boolean containsKey(K key);
/**
* Returns whether the map contains no elements
* @return true if the map contains no key-value pairs,
and false otherwise
*/
public boolean isEmpty();
/**
* Removes all elements from the map
*/
public void clear();
/**
* Gets the number of key-value pairs in the map
* @return the number of key-value pairs in the
map
*/
public int size();
/**
* Gets a set of all keys in the map
* @return
*/
public Set<K> keySet();
/**
* Gets a set of all values in the map
* @return
*/
public Collection<V> values();
}
package SOLUTION;
public class Tester {
public static void main(String[] args) {
ArrayListMap<String, Integer>
alm = new ArrayListMap<String, Integer>();
System.out.println(alm.put("Cindy",
1));
System.out.println(alm.put("Nina",
2));
System.out.println(alm.put("Morgan", 3));
System.out.println(alm.put("Michael", 4));
System.out.println(alm.size());
System.out.println(alm.containsKey("Morgan"));
System.out.println(alm.containsKey("Jack"));
System.out.println(alm.get("Michael"));
System.out.println(alm.values());
System.out.println(alm.keySet());
System.out.println(alm.put("Michael", 6));
System.out.println(alm.get("Michael"));
System.out.println(alm.remove("Michael"));
System.out.println(alm.remove("Morgan"));
System.out.println(alm.remove("Nina"));
System.out.println(alm.remove("Cindy"));
System.out.println(alm.size());
}
}
In: Computer Science
For this problem, you must use Excel to perform the necessary calculations. Below are the formulas and equations you will need to use. Click on the image below to download a power point version if the text is blurry or too small.
If it is appropirate to use the binomial distribution, use the formula=binom.dist(number_s,trails,probability,cumulative) to calculate the probability. In this formula, number_s is the number of successful trails, trails is the total number of trails, probability is the probability for a single trail expressed as a decimal, and cumulative should be set as false. This will report the binominal distribution probability for a single outcome. You are tasked with reporting a cumulative probability.
If it is appropriate to use the normal approcimation of the binomial distribution, calculate Z using the correct equation from the option below and then use either the formula = (1-(norm.dist(Z,0,1,TRUE))) when calculating a right-tailed probability or the formula =(norm.dist(Z,0,1,TRUE)) for a left-tailed probability
Right-tailed tests find probabilities for X>_ observed while left-tailed tests find probabiliteis for X =< observed
Question
In Europe, 53% of the flowers of the Rewardless Orchid, Dactylorhiza sambucina, are yellow, whereas the remaining flowers are purple. For this problem, only use the normal approximation where it is appropriate. Use the binomial distribution where the normal approximation is inappropriate.
If we took a random sample of a single individual from this population, what is the probability, reported as a percent, that it would be purple?
Determine the probability, reported as a decimal rounded to two decimal places, that if we took a random sample of 6 flowers, at least 3 would be purple.
If we took a random sample of 260 individuals, what is the probability, reported as a decimal rounded to four decimal places, that 150 or fewer of the orchids are purple?
In: Statistics and Probability
A WNba player makes 75% of her free throws. Assume that the player takes 6 free throws during the game. The distribution for the number of made free throws in 6 attempts is.
x || 0 || 1 || 2 || 3 || 4 || 5 || 6 ||
P(X) || 0.0002 || 0.0044 || 0.0330 || 0.1318 || 0.2966 || 0.3560 || 0.1780 ||
1. What is the probability of making at making fewer than 3 free throws.
2. What is the probability of making at least 4 of the free throws?
3. What is the mean number of free throws you expect the player to make?
4. What is the standard deviation for the number of free throws made by this player?
In: Statistics and Probability
11. Protonephridia, metanephridia, and the kidneys of vertebrates A. each rely on cilia or flagella to move fluid into the excretory ducts B. have specific secretory mechanisms which allow only wastes to reach the excretory ducts C. remove wastes but do not control salts D. begin excretion by discarding food, water, salts and waste |
12. Animals with protonephridia, metanephridia, or kidneys need them because A. these animals are sessile B. they have mesoderm C. these animals have no other mechanisms for removing wastes D. only these animals produce ammonia |
13. Nitrogenous wastes have increasing toxicity in the following order A. [lowest] uric acid, ammonia, urea [highest] B. [lowest] urea, uric acid, ammonia [highest] C. [lowest] uric acid, urea, ammonia [highest] D. [lowest] ammonia, urea, uric acid [highest] |
14. Nitrogenous wastes have increasing solubility in the following order A. [lowest] ammonia, uric acid, urea [highest] B. [lowest] urea, uric acid, ammonia [highest] C. [lowest] uric acid, urea, ammonia [highest] D. [lowest] ammonia, urea, uric acid [highest] |
15. Lymphatic fluid
A. is an ultrafiltrate of the blood
B. bathes tissues of vertebrates
C. is similar to the fluid in Bowman's capsule
D. all of the above
In: Biology