HELP ASAP PLEASEEEE I NEED HELP!!!!!!!!!

HELP ASAP PLEASEEEE I NEED HELP!!!!!!!!!
HELP ASAP PLEASEEEE I NEED HELP!!!!!!!!!
HELP ASAP PLEASEEEE I NEED HELP!!!!!!!!!

Answers

Answer 1

Answer:

I think the question 26 on the first page is C sorry if I'm wrong

Step-by-step explanation:

Answer 2

Answer:

26 is c, 20 is b, 30 is c

Step-by-step explanation:

26:

The relationship between 2,560 and 256 is that 2,560 is 10 times 256, and the only options that include "10 x" is b and c and b has (2+5+6) which doesn't equal 256, whereas c does.

20:

The bottom layer is 15 blocks, so then add the two more on top of the bottom layer and it's 17, so b.

30:

The width of the prism is 2, the length is 8, and the height is 4, so 2x8x4 is 64. They want a prism that's 1/4 the volume, so 64/4 is 16. (You could also just take 4 out of the 2x9x4 equation and get 2x8 which is 16).


Related Questions

I need help pleaseee!!

Answers


answer:



x=-4/7 and the slope is 7

Answer:

3

Step-by-step explanation:

The slope of a line is the rate of change

The equation of a line in slope- intercept form is

y = mx + c ( m is the slope and c the y- intercept )

Calculate m using the slope formula

m = [tex]\frac{y_{2}-y_{1} }{x_{2}-x_{1} }[/tex]

with (x₁, y₁ ) = (2, 12 ) and (x₂, y₂ ) = (0, 4) ← 2 ordered pairs from the table

m = [tex]\frac{4-12}{0-2}[/tex] = [tex]\frac{-8}{-2}[/tex] = 4

y = 7x + 4 ← is in slope- intercept form

with slope m = 7

Difference between rates of change = 7 - 4 = 3

In each diagram, x represents a different value.

A. What is something that is definitely true about the value of x?

B. What is something that could be true about the value of x?

Answers

a. not a whole number (fraction or decimal)

b. it could be a fraction or decimal

Here, all the x values are decimals or fractions.

What is number line?

A number line is a visual representation of numbers on a straight line. This line is used to compare numbers that are placed at equal intervals on an infinite line that extends on both sides, horizontally or vertically.

From the number line A, x=-0.3

From the number line B, x=0.3

From the number line C, x=-1.4

From the number line D, x=0.7

A) Here, all the x values are decimals or fractions

B) All the x value are greater than -2 and less than 1.

Therefore, here all the x values are decimals or fractions.

Learn more about the number line here:

https://brainly.com/question/13425491.

#SPJ2

Using the same information above, what percentage of flea collars would not be acceptable to ship according to this sample?

A.32 out of 36 collars, or 89%
B.4 out of 36 collars, or 11%

Answers

B because your allow to ship according to the sample
B because you are all own to ship according to the sample
Other Questions
2/3 - 3/2y + 1/3y + 4 = 0 those in agriculture industry need to be particularly mindful of safety because why? Write a paragraph explaining where DNA is located in the cell and what makes up DNA (there are multiple parts)Ill give brainiest pls I just need a paragraph about it pls How are imperialized people viewed by the writer? Implement the above in c++, you will write a test program named create_and_test_hash.cc . Your programs should run from the terminal like so:./create_and_test_hash should be "quadratic" for quadratic probing, "linear" for linear probing, and "double" for double hashing. For example, you can write on the terminal:./create_and_test_hash words.txt query_words.txt quadratic You can use the provided makefile in order to compile and test your code. Resources have been posted on how to use makefiles. For double hashing, the format will be slightly different, namely as follows:./create_and_test_hash words.txt query_words.txt double The R value should be used in your implementation of the double hashing technique discussed in class and described in the textbook: hash2 (x) = R (x mod R). Q1. Part 1 (15 points) Modify the code provided, for quadratic and linear probing and test create_and_test_hash. Do NOT write any functionality inside the main() function within create_and_test_hash.cc. Write all functionality inside the testWrapperFunction() within that file. We will be using our own main, directly calling testWrapperFunction().This wrapper function is passed all the command line arguments as you would normally have in a main. You will print the values mentioned in part A above, followed by queried words, whether they are found, and how many probes it took to determine so. Exact deliverables and output format are described at the end of the file. Q1. Part 2 (20 points) Write code to implement double_hashing.h, and test using create_and_test_hash. This will be a variation on quadratic probing. The difference will lie in the function FindPos(), that has to now provide probes using a different strategy. As the second hash function, use the one discussed in class and found in the textbook hash2 (x) = R (x mod R). We will test your code with our own R values. Further, please specify which R values you used for testing your program inside your README. Remember to NOT have any functionality inside the main() of create_and_test_hash.ccYou will print the current R value, the values mentioned in part A above, followed by queried words, whether they are found, and how many probes it took to determine so. Exact deliverables and output format are described at the end of the file. Q1. Part 3 (35 points) Now you are ready to implement a spell checker by using a linear or quadratic or double hashing algorithm. Given a document, your program should output all of the correctly spelled words, labeled as such, and all of the misspelled words. For each misspelled word you should provide a list of candidate corrections from the dictionary, that can be formed by applying one of the following rules to the misspelled word: a) Adding one character in any possible position b) Removing one character from the word c) Swapping adjacent characters in the word Your program should run as follows: ./spell_check You will be provided with a small document named document1_short.txt, document_1.txt, and a dictionary file with approximately 100k words named wordsEN.txt. As an example, your spell checker should correct the following mistakes. comlete -> complete (case a) deciasion -> decision (case b) lwa -> law (case c)Correct any word that does not exist in the dictionary file provided, (even if it is correct in the English language). Some hints: 1. Note that the dictionary we provide is a subset of the actual English dictionary, as long as your spell check is logical you will get the grade. For instance, the letter "i" is not in the dictionary and the correction could be "in", "if" or even "hi". This is an acceptable output. 2. Also, if "Editors" is corrected to "editors" that is ok. (case B, remove character) 3. We suggest all punctuation at the beginning and end be removed and for all words convert the letters to lower case (for e.g. Hello! is replaced with hello, before the spell checking itself).Do NOT write any functionality inside the main() function within spell_check.cc. Write all functionality inside the testSpellingWrapper() within that file. We will be using our own main, directly calling testSpellingWrapper(). This wrapper function is passed all the command line arguments as you would normally have in a main squares and rectangles both have four angles that measure 45 each true or false What term is used by chemists to quantitatively describe a solution in which a relatively small amount of solute is dissolved? Ordena los trminos del 1 al 5, de tal manera quecada trmino se construya del trmino (s) anterioExplica por qu cada figura est en el lugar queeliges. Los trminos son: cuadriltero, cuadradorombo, rectngulo y paralelogramo 1. The energy stored in glucose is converted into a usable form, the energy source of all cells, ___________________ _________________ triphosphate, or ____________.2. The equation for respiration is:______________ + O2 -----> CO2 + H2O + ____________3. Because oxygen is used to produce ATP, this is referred to as an _______________ process.4. The release of energy cannot occur all at once. Too much ______ would be released inside the cells. Instead, the release of energy occurs in a series of ________________________________ small steps.5. Plants do photosynthesis only when there is light, during the day. So, they take in _________ only during the day. But, they do respiration all the time, 24 hours a day. All living things do cellular respiration all the time or they are not alive. So, all organisms use _________, all the time. im timed pls hurry. What is the highest court in the state? the juvenile court the appeals court the supreme court the district court Which One Doesn't Belong?Choose the shape that does NOT belong with theothers.Explain your thinking . who was the last greatgreat roman emperor The area of the state of Nevada can be estimated using a trapezoid. Estimate the area of the state of Nevada.A. 31,672 mi2B. 78,980 mi2C. 110,622 mi2D. 131,327 mi2 7. Qu __ nosotros en la clase hoy? (hacer, present progressive) 8. Sandra __ ir al cine esta noche. (querer, present) 9. No __ tan alto. (hablar, t negative command) 10. No __ en la biblioteca. (hablar, Uds. negative command) 11. Este verano mi familia y yo __ por Europa. (viajar, future tense) 12. Yo no __ esta noche porque tengo que estudiar. (salir, future tense) Name this Molecule HELP ASAP PLEASE I WILL GIVE BRAINLIEST Identify the three parts of a process paragraph.A. The process, the cause-and-effect relationship, and the clincherB. The topic sentence, the process, and the cause-and-effectrelationshipC. The process, the cause, and the effectD. The topic sentence, the body with supporting sentences, and theclincher sentence Identify the sections of the mid-oceanic ridge that have reversed polarity on the right side of the ridge.Normal magneticpolarityReversed magneticpolarityMid-ocean ridgeLithosphereMagma Simplify the expression 4(3b)(+a) +8ab 2a 4a.please ans briefly I cant do this please help me i will give brainliest Describe how each of Newtons laws may be observable during a car trip.