what do you understand by statistic​

Answers

Answer 1

Statistics is the study and manipulation of data, including methods for data collection, evaluation, analysis, and interpretation.

Describe statistics using an example.

Finding out how many people in a town watch TV relative to the overall population of the town is an example of statistical analysis. Here, the small group of individuals drawn from the population is referred to as the sample.

What are types and statistics?

Statistics is a technique for interpreting, analyzing, and summarizing data in mathematics. In light of these characteristics, the various statistical types are divided into: Statistics that are descriptive and inferential. We analyze and understand data based on how it is presented, such as using pie charts, bar graphs, or tables.

To know more about statistics visit:-

https://brainly.com/question/29093686

#SPJ1


Related Questions

In the flag, the RGB values next to each band indicate the band's colour.
RGB: 11111101 10111001 00010011
RlGB: 00000000 01101010 01000100
RGB: 11000001 00100111 00101101
First, convert the binary values to decimal. Then, to find out what colours these values correspond to, use the Colour names' handout (ncce.io/rep2-2-hw) or look up the RGB values online. Which European country does this flag belong to?​

Answers

Answer:

To convert the binary values to decimal, you can use the following steps:

Start with the rightmost digit and assign it the value of 0.

For each subsequent digit moving from right to left, double the value of the previous digit and add the current digit.

For example, to convert the first binary value, 11111101, to decimal:

10 + 02 + 04 + 08 + 016 + 132 + 164 + 1128 = 253

So the first binary value, 11111101, corresponds to the decimal value 253.

Using this method, you can convert the other binary values to decimal as well. To find out what colours these values correspond to, you can use the Colour names' handout or look up the RGB values online.

To determine which European country this flag belongs to, you can try looking up the colours and seeing if they match any known flags. Alternatively, you could try searching for flags of European countries and see if any of them match the colours you have identified.

Code to be written in python:

Correct answer will automatically be awarded the brainliest.

One of the senior wizards Yee Sian was trapped in a maze during a mission. The maze has n * m cells, labelled from (0, 0) to (n-1, m-1). Starting at cell (0, 0), each time Yee Sian can only take one step, either to the right or down. We wish to find out the number of possible paths to the destination (n - 1, m - 1). A sample path is shown in the figure below.

Having learnt the technique of speeding up the pascal function through memoization, you decide to apply it here. If Yee Sian can walk out by himself (number of paths > 0), tell him how many ways there are. Otherwise, report to Grandwizard and send a rescue team.

Write a function num_of_paths that takes in two integers representing the number of rows (n) and columns (m) in a maze and returns an integer value of number of paths from cell (0, 0) to cell (n - 1, m - 1). The table and skeleton code are given to you. Your table is essentially a dictionary that stores (i, j): val pairs which indicate the number of paths from cell (0, 0) to cell (i, j).

Note: You may assume that all inputs n and m are valid. i.e. n > 0, m > 0.

Incomplete Code:
table = {} # table to memoize computed values

def num_of_paths(n, m):
# your code here
pass


Test Cases:

num_of_paths(1, 100) 1
num_of_paths(123, 1) 1
num_of_paths(3, 3) 6
num_of_paths(10, 10) 48620
num_of_paths(28, 56) 3438452994457305131328

Answers

Here is the implementation of the num_of_paths function using memoization:


table = {}

def num_of_paths(n, m):
# base cases
if n == 0 or m == 0:
return 1
if (n, m) in table:
return table[(n, m)]
# number of paths is the sum of paths from top and left cells
paths = num_of_paths(n - 1, m) + num_of_paths(n, m - 1)
table[(n, m)] = paths
return paths

print(num_of_paths(1, 100)) # 1
print(num_of_paths(123, 1)) # 1
print(num_of_paths(3, 3)) # 6
print(num_of_paths(10, 10)) # 48620
print(num_of_paths(28, 56)) # 3438452994457305131328


This function uses the fact that the number of paths to a cell is the sum of the number of paths from its top and left cells. The base cases are when either n or m is 0, in which case there is only 1 path (by definition). The function also uses a table dictionary to store the computed values to avoid recalculating them.

Which of the following devices can store large amounts of electricity, even when unplugged?
LCD monitor
DVD optical drive
CRT monitor
Hard disk drive

Answers

Even when unplugged, a CRT (Cathode Ray Tube) monitor can store a lot of electricity. The capacitors within CRT monitors can store enough power to be fatal, thus you should never open one.

What does CRT stand for?

An electron beam striking a phosphorescent surface creates images in a cathode-ray tube (CRT), a specialized vacuum tube. CRTs are typically used for desktop computer displays. The "picture tube" in a television receiver is comparable to the CRT in a computer display.

What characteristics does CRT have?

Flat screen, touch screen, anti-reflective coating, non-interlaced, industrial metal cabinet, and digital video input signal are typical features of CRT monitors. As opposed to the typically curved screen found in most CRT displays, the monitor's screen can be (almost) flat.

To learn more about CRT monitors visit:

brainly.com/question/29525173

#SPJ1

Answer:

CRT monitor

Explanation:

A cathode ray tube (CRT) monitor can store large amounts of electricity, even when unplugged. You should never open a CRT monitor, as the capacitors within the CRT can store enough electricity to be lethal.

LCD monitors do not use large capacitors and are much safer to work on than CRT monitors (although the CCFL backlight has mercury vapor in it, which could be harmful if the tube is broken).

DVD optical drives and hard disk drives do not store electricity in sufficient quantity to be harmful.

Which of the following IPv4 addresses is a public IP address?

Answers

An example of Pv4 addresses that is a public IP address is

An example of a public IPv4 address is "8.8.8.8". This is a public IP address that is assigned to one of Go ogle's DNS servers. Any device connected to the Internet can use this IP address to resolve domain names and access websites.

What is the IP address about?

A public IP address is a globally unique IP address that is assigned to a device or computer that is connected to the Internet. Public IP addresses are used to identify devices on the Internet and are reachable from any device connected to the Internet.

On the other hand, private IP addresses are used within a local area network (LAN) or within a private network, and are not reachable from the Internet.

They are used to identify devices within a local network, such as a home or office network. Private IP addresses are not unique and can be used by multiple devices within a LAN.

Learn more about IP addresses from

https://brainly.com/question/30018838

#SPJ1

Explain how abstraction makes your computer easier to use. Give at least one example.

Answers

Abstraction removes all specific details, and any problems that will help you solve the problem. Thus makes your computer easier to use.

What is abstraction?

An abstraction is a generic thought as opposed to one that pertains to a specific thing, person, or circumstance. The concept of abstraction is one that applies to both the actual world and OOP languages.

The typical details of an idea are left out. Code that uses abstractions is simpler to comprehend since it focuses on the main functions and operations rather than the minute details. Don't program to implementations; program to interfaces.

Therefore, abstraction eliminates all specific information and any issues that could aid in problem-solving.

To learn more about abstraction, visit here:

https://brainly.com/question/23774067

#SPJ1

Other Questions
What type of energy is a ball rolling down a ramp? Please Help!!!chapter 71. What generalizations can you make about where your food comes from? Describe the major patterns in your data and provide examples of specific foods that illustrate these patterns.2. Discuss how globalization has affected your diet. In a less globalized world, what do you think your diet would look like? In other words, what would your diet look like if you ate mostly locally available foods?3. Critically evaluate your globalized diet. What are the pros and cons of such a diet for you, the people who produce and transport the foods you eat, and the environments in which the foods are produced?chapter 94. how would you describe the sexual norms of your country as a whole, and how do they compare to the sexual norms in your own family or community?5. Describe the types of relationships you have observed, and try to rank them based on how accepted or prohibited they are in society. Which are considered most mainstream? Which are considered most taboo? Among the taboo relationships, which come with the most serious social or legal ramifications? Finally, what does this hierarchy tell you about the value system in your community?6. Describe the social reasons and moral justifications used in your community to accept some types of sexual relationships and prohibit or condemn others. Critically evaluate these justifications and explain how they are linked to other aspects of society (gender, power, etc.). A baker places 4 muffins in each box. Which is the total number of muffins in 8 boxes? Help please radicals Professors Harry Markowitz and William Sharpe received their Nobel Prize in Economics for their contributions to the Multiple Choice A school administrator asks each student if they participate in a sport and if they participate in a club. The results are shown below. Participates in a Sport Yes No TotalParticipates in a Club Yes 620 450 1070No 325 535 860 Total 945 985 1930What percentage of students do not participate in a sport?27.7%44.6%51.0%62.2%. answer is 51.1 I need help with this PLEASE!!! Benzene is a liquid with molecular formula C6H6Ethene is a gas with molecular formula C2H4Which statement is correct?A 1 mole of benzene and 1 mole of ethene contain the same number of atoms.B 1 mole of benzene and 1 mole of ethene both have a volume of 24 dm at room temperature and pressure.C Both benzene and ethene have the same empirical formula.D The number of carbon atoms in 0.5 moles of ethene is equal to the Avogadro constant.And why is it that way? A zero-coupon bond is a security that pays no interest, and is therefore bought at a substantial discount from its face value. If stated interest rates are 12% annually (with semi-annual compounding) how much would you pay today for a zero-coupon bond with a face value of $1,600 that matures in 11 years John B. Watson illustrated how nature influences behavior by conditioning an infant to fear a white rat. T/F 1000(9x-10)=50(976+100x) What is the importance of audio or sound in media forms such as film and television? write the missing digits to make this addition correct _2_+_2=200 Salma's Coffee Shop makes a blend that is a mixture of two types of coffee. Type A coffee costs Salma $5.60 per pound, and type B coffee costs $4.40 per pound. This month's blend used three times as many pounds of type B coffee as type A, for a total cost of $451.20. How many pounds of type A coffee were used? which situation is an example of internal conflict 5 realizations , thoughts or ideas you can get from the graph What is the best description of the roaring 1920s? Television journalist barbara walters died on december 30. What was her first job in broadcasting? Aisha bought 15 apples and oranges for $9.00. each orange costs $0.50, and each apple costs $0.65. let x represent the number of oranges and y represent the number of apples. which system can be used to find the number of apples and oranges aisha bought? x y = 15. 0.5 x 0.65 y = 9.00 x = y. 0.5 x 0.65 y = 9.00 x y = 9. 0.5 x 0.65 y = 15.00 x = y. 0.5 x 0.65 y = 15.00 People at a local festival were asked if their favorite dessert was cake or pie. The probability of each result are as follows: Probability of 0.42 that people liked pie Probability of 0.90 that people liked cake or pie Probability of 0.12 that people liked both cake and pie Use a Venn Diagram to support your calculations for the following questions:a) Determine the probability that a person will like cake.B) Determine the probability that a person at the festival does not like either of these two desserts.C) Are the event liking cake and liking pie mutually exclusive or non-mutually exclusive? Justify your answer.