Which describes the outlining method of taking notes?

It is easy to use in fast-paced lectures to record information.
It is the least common note-taking method.
It includes levels and sublevels of information.
It uses columns and rows to organize information.

Answers

Answer 1

Answer:

It includes levels and sublevels of information

Explanation:

The Outlining method of taking notes helps the writer to organize his ideas into levels and sublevels of information which gives the piece of writing an added structure.

This can be achieved by the use of the Arabic numbering system, Roman numerals or use of bullets.

Answer 2

Answer:

C : It includes levels and sublevels of information

Explanation:


Related Questions

what are the steps to troubleshoot a frozen computer ​

Answers

You could hold the power button down 5-10 seconds.

Adding a rock or stone looking characteristic to a background is which element of design?

Answers

Answer:

Explanation:

ejhdkl;xs

'

Can someone tell me why this code in Java won't run?

if (s.toLowerCase().equals(s.toUpperCase()))
{
System.out.println("*");
}

Answers

Answer:

try typing the following:

String lc = s.toLowerCase();

String uc = s.toUpperCase();

if(lc == uc){

System.out.println("*")

}

Choose the terms that best complete the sentence.

For users to be able to communicate with a large number of other people around the world, their
___needs to be connected to a_____
which has
an almost unlimited geographical distance.

Answers

WiFi needs to be connected to a router

Answer: For users to be able to communicate with a large number of other people around the world, their LAN needs to be connected to a WAN, which has an almost unlimited geographical distance.

Explanation: Correct on Edg 2020/2021.

Why are floppy disks obsolete ?

Answers

Answer:

they don't have enough space on them to carry useful information, and because most computers no longer have a drive for them. This is true for most legacy items

The Beaufort Wind Scale is used to characterize the strength of winds. The scale uses integer values and goes from a force of 0, which is no wind, up to 12, which is a hurricane. The following script first generates a random force value. Then, it prints a message regarding what type of wind that force represents, using a switch statement. You are to rewrite this switch statement as one nested 150 CHAPTER 4: Selection Statements if-else statement that accomplishes exactly the same thing. You may use else and/or elseif clauses.

ranforce = randi([0, 12]); switch ranforce case 0 disp('There is no wind') case {1,2,3,4,5,6} disp('There is a breeze') case {7,8,9} disp('This is a gale') case {10,11} disp('It is a storm') case 12 disp('Hello, Hurricane!') end

Answers

Answer:

ranforce = randi([0, 12]);

if (ranforce == 0)

     disp('There is no wind')

else  if(ranforce>0 && ranforce <7)

     disp('There is a breeze')

else  if(ranforce>6 && ranforce <10)

     disp('This is a gale')

else  if(ranforce>9 && ranforce <12)

     disp('It is a storm')

else  if(ranforce==12)

     disp('Hello, Hurricane!')

end

Explanation:

Replace all switch case statements with if and else if statements.

An instance is:

case {7,8,9}

is replaced with

else  if(ranforce>9 && ranforce <12)

All other disp statements remain unchanged

Assume a 64KB cache with four-word block size (a word is 4 bytes) and a 32-bit address. If a block has 28 tag bits, what is the type of this cache

Answers

Answer:

Fully associative

Explanation:

Fully associative cache is a type of cache in which after retrieving the data from memory, it subsequently allows data to be deposited in the available but unused cache block. This is to ensure that the storage of cache is done without forcing each memory address into one specific block.

Given the following

address = 32 bits,

tag = 28 bits, as a block is 4 words that are, 4x4 bytes,

offset = 4 bits, which equates to index = 0 bits.

Hence, it can be concluded that the type of cache is FULLY ASSOCIATIVE.

The trigonometry book says: sin^2(t) + cos^2(t) = 1 Write a Python program that verifies the formula with the help of the Python Math module. Note that the trigonometric functions in the module act on the angles in radians. Your program should perform the following steps 3 times: 1. Pick a random number between 0 and 180 degrees representing an angle in degrees, say Dangle 2. Convert the angle from degrees to radians, say Rangle 3. Use the Math module to find and print the values of sin(Rangle) and cos(Rangle), and 4. Compute and print the value of the above expression: sin^2(Rangle) + cos^2(Rangle). You can then visually verify if the result printed is 1 (or close to it).

Answers

Answer:

If you open your python-3 console and execute the following .py code you will have the following output. (Inputing 20 e.g)

Write the angles in degrees: 20

radian angles is:  0.3490658503988659

cosene( 0.3490658503988659 ) =  0.9396926207859084

sine( 0.3490658503988659 ) =  0.3420201433256687

sin^2( 0.3490658503988659 ) + cos^2( 0.3490658503988659 ) =  1.0

Explanation:

Code

import math

for i in range(1,4):

   angle = int(input('Write the angles in degrees: '))

   #mat library better works with radians

   angle_radians = (angle*math.pi)/180

   #print output

   print('radian angles is: ',angle_radians)

   print('cosene(',angle_radians,') = ',math.cos(angle_radians))

   print('sine(',angle_radians,') = ',math.sin(angle_radians))

   res = (math.sin(angle_radians))**2 + (math.cos(angle_radians))**2

   print('sin^2(',angle_radians,') + cos^2(',angle_radians,') = ',res)

Write a program with a car's miles/gallon and gas dollars/gallon (both floats) as input, and output the gas cost for 10 miles, 50 miles, and 400 miles. Ex: If the input is 20.0 3.1599, the output is: 1.57995 7.89975 63.198 Note: Small expression differences can yield small floating-point output differences due to computer rounding. Ex: (a + b)/3.0 is the same as a/3.0 + b/3.0 but output may differ slightly. Because our system tests programs by comparing output, please obey the following when writing your expression for this problem. First use the dollars/gallon and miles/gallon values to calculate the dollars/mile. Then use the dollars/mile value to determine the cost per 10, 50, and 400 miles. Note: Real per-mile cost would also include maintenance and depreciation.

Answers

Answer:

The Following are the code to this question:

def cost(miles, milesPerGallon, dollarsPerGallon):##defining a method cost that accepts three parameter

   return miles / milesPerGallon * dollarsPerGallon# calculate cost and return it value  

milesPerGallon = float(input('Enter miles/Gallon value: '))#defining variable milesPerGallon for user input  

dollarsPerGallon = float(input('Enter dollars/ Gallon value: '))#defining variable dollarsPerGallon for user input

print('{:.5f}'.format(cost(10, milesPerGallon, dollarsPerGallon)))#call method and print its value

print('{:.5f}'.format(cost(50, milesPerGallon, dollarsPerGallon)))#call method and print its value

print('{:.3f}'.format(cost(400, milesPerGallon, dollarsPerGallon)))#call method and print its value

Output:

Enter miles/Gallon value: 20.0

Enter dollars/ Gallon value: 3.1599

1.57995

7.89975

63.198

Explanation:

In the above-given code, a method "cost" is defined, that accepts three value "miles, milesPerGallon, and dollarsPerGallon" in its parameter, and use the return keyword for calculating and return its value.

In the next step, two variable "milesPerGallon, and dollarsPerGallon" is declared, that use the input method with float keyword for input floating-point value.

After input value, it uses a print method with different miles values, which are "10,50, and 400", and input value to pass in cost method to call and print its return value.

Other Questions
What is the average speed of a baseball that is thrown 90 feet in 2 seconds? A. 180 feet/secondB. 45 feet/secondC. 92 feet/secondD. A variable most often found on the y-axis we loved the 4th of July because it meant spending time with Dad and lighting fireworks. This year would be no different, except we were old enough to light the sparklers ourselves! Mom could not even watch fireworks because they scared her so much. She made Dad promise to be careful. So when he came home with a bag full of fireworks we listened to the same thing we had heard since we were five years old.Brandon is writing a story about a fun family memory. Which sentence is MOST LIKELY the next one he adds to this section?A) Dad began his list of rules about keeping our room clean if we want to buy our own sparklers. B) My brother Deon took our dog, Sassy for a long walk so she would be tired and sleep through the noise of the fireworks. C) Dad said, "Boys, get the bucket and fill it with water, then come help me set up our fireworks display." D) Dad said, " Boys, wait inside with your mother and Sassy. You should be able to see the fireworks from the window." A customer told the restaurant manager that the salad tastes too sour, so he asked the chef to examine the recipe. The quantities of whichIngredient should the chef adjust?The label of the dressing reads "Chef's Special Salad DressingIngredients:Olive oilMinced garlicSalt & pepperCider vinegarFinely chopped onion Jenny has 3 guitars. Steve has 4 guitars. If theratio of guitars is 4:3, who is first in the ratio? Identify the set of numbers that best describes the situation. Explain your choice. The weight of a person in pounds. Question 6 of 16Unlike the Middle colonies, the Southern colonies:A. gave settlers freedom of religion.B. were first founded by the Dutch.C. had large slave populations.D. could not farm because of poor soil.SUBMIT . WILL GIIVE 100 POINTS AFTER YOU ANSWER How was Islamic education during the Middle Ages different from a Christian education at that time?1.Christian education was used to only education future political and religious leaders; 2.Islamic education was offered to people of all classes and occupations3.Islamic education was only for males while Christian education was open the men and women4.Islamic education integrated the study of science with the study of religion; Christian education did notChristian education encouraged students to learn about all religions; Islamic education taught only Islam Which of the following is the best example of a system of equations that should be solved by the elimination method? Question 2 options:8x + 3y = 25x + 8y = -112x - 4y = -16y = 5x + 13-8x - 9y = -1716x - 4y = 1212x + 7y = -179x + 11y = -7 2x+ 8y = -33x+ 6y = -4Choose all answers that apply please help me with these A cylinder has a height of 5.3cm and a diameter of 3.0cm. What is its volume HELP ASAP!!! Taking a world cultures unit test 2 test does anyone know the answers im from campbell middle school btw (6 grade) What is Litmus Paper? find the value of x so that f(x)=7. Tuesday siesta think question 3 Maggie bought a pound of bananas and 4 boxes of cereal for $10.11. If each box of cereal cost $2.40, what was the price of a pound of bananas?$0.51$0.61$1.51$2.91 What is an equation in point slope form of the line that passes through (7, 1) and (-3,9) What is the name of the small lake of fluid that keeps osteocytes and chondrocytes from drying out? Refer to the Newsela article "Climate Change in Hawaii and U.S. Tropical Islands."How does the word stressed affect the meaning in this sentence?Reef ecosystems on many islands are already stressed by coastal development and pollution.It implies that there is too much construction along coastlines.O It implies that laws regulating pollution on waterways needs to be improved.O It suggests that animals on reefs are in danger from human interference.O It suggests that there are other factors affecting reefs. When Tran finished the next level of her video games, she gained 40 points for each of the two targets she hit and lost 125 points for taking too long. Write the total change to her score as an integer.