how data transform into information?​

Answers

Answer 1
Information is when you take the data you have and analyze it or manipulate it by combining it with other data, trending it over time, assessing or analyzing the outliers that need to be dealt with, and, most important, applying your own experience and knowledge to transform that data into something you can use to make

Related Questions

Code tạo cây nhị phân tìm kiếm trong C#

Answers

What language is this

what is SEO and SEM?

Answers

Answer:

SEO stands for “search engine optimization.” In simple terms, it means the process of improving your site to increase its visibility for relevant searches.

SEM, or search engine marketing, is the act of using paid strategies to increase search visibility.

Exercise : Randomizer In this exercise, we are going to create a static class Randomizer that will allow users to get random integer values from the method nextInt() and nextInt(int min, int max). Remember that we can get random integers using the formula int randInteger = (int)(Math.random() * (range + 1) + startingNum). nextInt() should return a random value from 1 - 10, and nextInt(int min, int max) should return a random value from min to max. For instance, if min is 3 and max is 12, then the range of numbers should be from 3 - 12, including 3 and 12.

Answers

Answer:

Here the code is by using java.

Explanation:

//Randomizer.java

public class Randomizer {

public static int nextInt() {

//get random number from 1-10

int randInteger = (int) (Math.random() * (11) + 1);

//if number is greater than 10 or less than 1

while (randInteger > 10 || randInteger < 1) {

randInteger = (int) (Math.random() * (11) + 1);

}

return randInteger;

}

public static int nextInt(int min, int max) {

//formula to get random number from min-max

int randInteger = (int) (Math.random() * (max + 1) + min);

while (randInteger > max || randInteger < min) {

randInteger = (int) (Math.random() * (max + 1) + min);

}

return randInteger;

}

}

//RandomizerTester.java

public class RandomizerTester {

public static void main(String[] args) {

System.out.println("Results of Randommizer.nextInt()");

for (int i = 0; i < 10; i++) {

System.out.println(Randomizer.nextInt());

}

int min = 5;

int max = 10;

System.out.println("\n Results of Randomizer.nextInt(5,10)");

for (int i = 0; i < 10; i++) {

System.out.println(Randomizer.nextInt(min, max));

}

}

}

OUTPUT:

Results of Randommizer.nextInt()

9

2

3

8

5

9

4

1

9

2

Results of Randomizer.nextInt(5,10)

9

8

9

7

5

10

5

10

7

7

Joe has just started the Security Module. He wants to get through it as quickly as possible and take the Quiz. As he clicks through the unit, he sees a bunch of text with some activities sprinkled throughout, and is trying to decide how to proceed.

Required:
Which strategies would likely be most effective and efficient for Joe?

Answers

Answer:

Joe should read the explanatory text and complete the learning activities.

Explanation:

Given

See attachment for options

Required

Best strategy to get through the module

First off, rushing through the activities and taking guess for each question (as suggested by (a)) will not help him;

He may complete the activities but sure, he won't learn from the module.

Also, reading through the units without completing the activities is not an appropriate method because Joe will not be able to test his knowledge at the end of the module.

The best strategy to employ is to read through the units and complete the activities, afterwards (option (b)).

An IT systems engineer creates a new Domain Name System (DNS) zone that contains a pointer (PTR) resource records. Which zone type has been created?

Answers

Answer: Reverse DNS zone

Explo: a reverse DNS zone needs a PTR record since it is in charge of resolving the IP address to a domain or a hostname.

magbigay ng ibang produkto na ginagamitan ng kasanayan ng basic sketching shading at outlining ​

Answers

Answer:

Procreate

Explanation:

Which of the following statements is/are correct? a. At the network layer, entitlement can map identity and/or attributes to functionality.b. At the application layer, entitlement rules can define the protocols allowed to be used.c. At the system layer, identity, and attributes used as part of the entitlement rules can stop or restrict access, or may direct access to a particular interface, for example, a web interface rather than a full-GUI interface.d. At the process layer, entitlement can be used to define the processes or functions run within an application. Entitlement can also specify that enhanced functions require additional verification (which can prompt the user or run in the background).

Answers

Answer:

Option D

Explanation:

An Entitlement is an option to utilize, get to or devour an application or asset, commonly for a charge. For instance, a client may buy an Entitlement to utilize an application in ceaselessness (a "unending" permit), or they may buy a period restricted option to utilize an application, (for example, a one-year membership permit).

Write three uses and applications of computer, people that use it,and use of computer in those areas.​

Answers

Answer:

Medical Field.

Entertainment.

Industry.

Education.

Government.

Banking.

Business.

Help please! Really need to find this out rn

Answers

I believe it’s the “body” answer, because the term P refers to a paragraph, and paragraph code terms don’t change the entire webpage.

What sequence is used to create a brochure document from a template?

New, File, Brochures
File, New, Brochures
Brochures, File, New
Brochures, New, File

Answers

The answer would be :
File, New, Brochures

Answer:B. File, New, Brochures

Explanation: Just took the test

Write a complete program that asks the user to input the height and radius of a cone (both of type double) and calls two individual functions to calculate the total area of the cone and the volume of the cone. The main function then prints these values with appropriate messages.

Answers

Answer:

The program in C++ is as follows:

#include <iostream>

#include <math.h>

using namespace std;

double area(double r, double h){

   double A = 3.14 * r * (r + sqrt(h*h + r*r));

   return A;}

double volume(double r, double h){

   double V = (1.0/3) * 3.14 * r*r * h;

   return V;}

int main(){

   double radius, height;

   cout<<"Radius: "; cin>>radius;

   cout<<"Height: "; cin>>height;

   cout<<"Area: "<<area(radius,height)<<endl;

   cout<<"Volume: "<<volume(radius,height);

   return 0;

}

Explanation:

This declares the area function

double area(double r, double h){

Calculate area

   double A = 3.14 * r * (r + sqrt(h*h + r*r));

Return the calculated area

   return A;}

This declares the volume method

double volume(double r, double h){

Calculate volume

   double V = (1.0/3) * 3.14 * r*r * h;

Return the calculated volume

   return V;}

The main begins here

int main(){

Declare radius and height

   double radius, height;

Get input for radius

   cout<<"Radius: "; cin>>radius;

Get input for height

   cout<<"Height: "; cin>>height;

Call the area function and print the returned value for area

   cout<<"Area: "<<area(radius,height)<<endl;

Call the volume function and print the returned value for volume

   cout<<"Volume: "<<volume(radius,height);

   return 0;

}

In python
Write a program that takes a date as input and outputs the date's season. The input is a string to represent the month and an int to represent the day.
Ex: If the input is:
April
11
Then the output is:
spring
In addition, check if the string and int are valid (an actual month and day).
Ex: If the input is invalid, the output is:
invalid
The dates for each season are:
spring: March 20 - June 20
summer: June 21 - September 21
autumn: September 22 - December 20
winter: December 21 - March 19

Answers

Answer:

The program in Python is as follows:

mnths = ["january","february","march","april","may","june","july","august","september","october","november","december"]

days = int(input("Day: "))

month = input("Month: ")

if not(month.lower() in mnths):

   print("Invalid")

else:

   month_index = mnths.index(month.lower())

   if month_index == 0:

       if days<1 or days>31:            print("Invalid")

       else:            print("Winter")

   elif month_index == 1:

       if days<1 or days>28:            print("Invalid")

       else:            print("Winter")

   elif month_index == 2:

       if days<1 or days>31:            print("Invalid")

       elif days<= 19:            print("Winter")

       else:            print("Spring")

   elif month_index == 3:

       if days<1 or days>30:            print("Invalid")

       else:            print("Spring")

   elif month_index == 4:

       if days<1 or days>31:            print("Invalid")

       else:            print("Spring")

   elif month_index == 5:

       if days<1 or days>30:            print("Invalid")

       elif days<= 20:            print("Spring")

       else:            print("Summer")

   elif month_index == 6:

       if days<1 or days>31:            print("Invalid")

       else:            print("Summer")

   elif month_index == 7:

       if days<1 or days>31:            print("Invalid")

       else:            print("Summer")

   elif month_index == 8:

       if days<1 or days>31:            print("Invalid")

       elif days<= 21:            print("Summer")

       else:            print("Autumn")

   elif month_index == 9:

       if days<1 or days>31:            print("Invalid")

       else:            print("Autumn")

   elif month_index == 10:

       if days<1 or days>30:            print("Invalid")

       else:            print("Autumn")

   elif month_index == 11:

       if days<1 or days>31:            print("Invalid")

       elif days<21:            print("Autumn")

       else:            print("Winter")

Explanation:

See attachment for complete source file, where comments are used to explain difficult lines

Select the true statement about a scanner.

a. It is a device that outputs digital images and text onto a screen.
b. It is a device that enables users to output digital images or text as hard copies.
c. It is an input device that enables users to convert hard copies to digital images or text.
d. It is a device that enables users to input photographs as digital images.

Answers

Answer:

c. It is an input device that enables users to convert hard copies to digital images or text.

Explanation:

An input device can be defined as any device that is typically used for sending data to a computer system.

A scanner can be defined as an input device designed for transferring informations and images from hardcopy (physical) documents to digital computer files. Thus, it's simply an electronic input device that is used to digitally scan or copy data (informations) from a hardcopy document such as photographs, paper files, printed texts etc and then converted to a digital computer file in formats such as png, or jpeg. The scanner is a device which avail users the ability and opportunity to view, edit and transfer hardcopy document on a computer system in soft-copy.

Majority of the scanners used around the world are flatbed scanners and as such have a flat glass surface for scanning documents.

Basically, all scanners are to be used with a device driver software pre-installed on the computer before the configuration of the scanner.

Other types of scanners are drum scanners, contact image sensor (CIS) scanner, CCD scanner, planetary scanner, 3D scanner, Roller scanner etc.

Which of the following is true of horror films like Insidious and The Conjuring?

Answers

Answer:

Those movies have inapropirate parts and it is really scary. Also, those movies are not meant for little kids.

Explanation:

They rely on the suggestion of horror rather than explicitly depicting it.

Explain the steps that are needed to remove the data items from linked list

Answers

Explanation:

Iterative Method:

To delete a node from the linked list, we need to do the following steps.

1) Find the previous node of the node to be deleted.

2) Change the next of the previous node.

3) Free memory for the node to be deleted.

Write a program whose input is two integers, and whose output is the first integer and subsequent increments of 5 as long as the value is less than or equal to the second integer. Ex: If the input is: "-15" 10 the output is: "-15" "-10" "-5" 0 5 10 Ex: If the second integer is less than the first as in: 20 5 the output is: Second integer can't be less than the first.

Answers

Answer:

The program in Python is as follows:

num1 = int(input())

num2 = int(input())

if num2 < num1:

   print("Second integer can't be less than the first.")

else:

   for i in range(num1,num2+1,5):

       print(i,end=" ")

Explanation:

This gets the first integer from the user

num1 = int(input())

This gets the second integer from the user

num2 = int(input())

If the second is less than the first, the following prompt is printed

if num2 < num1:

   print("Second integer can't be less than the first.")

If otherwise, the number between the intervals is printed with an increment of 5

else:

   for i in range(num1,num2+1,5):

       print(i,end=" ")

Adding Web pages helps Web designers ___. Choose all answers that are correct.
A) Create multiple websites
B) Organize information
C) Make their websites more user-friendly
D) Return to their designs over time to make edits

Answers

Answer:

B

Explanation:

Adding Web pages helps Web designers Organize information. The correct option is B)

What is a web page?

A website should be made such that anyone using it can quickly find what they're searching for and understand what each feature on the page performs without having to ask for assistance or go through a lengthy tutorial.

When users access the website for the first time, they should be able to do so right away and do so as frequently as they have in the past. Additionally, the website needs to be responsively constructed. Web design is crucial because it affects how potential customers see your company.

The first impression you provide them will determine whether they stay on your page to learn more about your company, or whether they click on a competitor's page instead.

Therefore, the correct option is B) Organize information.

To learn more about a web page, refer to the link:

https://brainly.com/question/22775095

#SPJ2

A pedometer treats walking 2,000 steps as walking 1 mile. Write a program whose input is the number of steps, and whose output is the miles walked. Output each floating-point value with two digits after the decimal point, which can be achieved as follows: print('{:.2f}'.format(your_value)) Ex: If the input is: 5345 the output is: 2.67 Your program must define and call the following function. The function should return the amount of miles walked. def steps_to_miles(user_steps)

Answers

Answer:

Follows are the code to the given question:

def steps_to_miles(user_steps):#defining a method steps_to_miles that takes a variable user_steps

   return user_steps/2000#use return to calculate the steps

user_steps = int(input())#defining a variable user_steps that holds value from the user-end

print('%0.2f' % steps_to_miles(user_steps))#defining print that calls the steps_to_miles method

Output:

5345

2.67

Explanation:

In this code a method "steps_to_miles" that takes "user_steps" in the parameter inside the method a return keyword is used that calculates the user steps and return its values.

Outside the method, a "user_steps" variable is declared that inputs the value from the user-end pass into the method and prints its value.

Write a Java application that allows a user to enter student data that consists of a Student number, First name, Surname, and average assignment mark. Depending on whether the students average assignment mark is at least 40, output each record either to a file of students who passed (call it pass.txt) or students qualifying for supplementary (call it supp.txt).​

Answers

Answer:

Following are the given code to the given question:

import java.io.*;//import package

import java.util.*;//import package

public class Main //defining a class Main

{

public static void main(String[] args) throws IOException//defining main method

{

Scanner obx = new Scanner(System.in);//creating Scanner class object

System.out.println("Enter Student Number: ");//print message

long studentNumber = obx.nextLong();//defining a studentNumber that input value

obx.nextLine();//use  for next line

System.out.println("Enter Your First Name:");//print message

String name = obx.nextLine();//input value

System.out.println("Enter Your Surname:");//print message

String surName = obx.nextLine();//input value

System.out.println("Enter Your Average Assisgnment Marks:");//print message

int avgAssignMarks = obx.nextInt();//input value

if(avgAssignMarks>=50)//use if to check Average value greater than equal to 50  

{

FileWriter fw = new FileWriter("pass.txt", true);//creating FileWriter object

PrintWriter out = new PrintWriter(fw);//creating PrintWriter object

out.println("Student Number: "+studentNumber);//print message with value

out.println("Student Name: "+name);//print message with value

out.println("Student Surname: "+surName);//print message with value

out.println("Student Average Assignmet Marks: "+avgAssignMarks);//print message with value

out.println("=================================================");

out.close();

}

else//else block  

{

FileWriter fw = new FileWriter("supp.txt", true);//creating FileWriter object

PrintWriter out = new PrintWriter(fw);//creating PrintWriter object

out.println("Student Number: "+studentNumber);//print message with value

out.println("Student Name: "+name);//print message with value

out.println("Student Surname: "+surName);//print message with value

out.println("Student Average Assignmet Marks: "+avgAssignMarks);//print message with value

out.println("=================================================");

out.close();

}

}

}

Output:

Please find the attached file.

Explanation:

In this code, a class "Main" is declared inside the class main method is declared inside the main method a scanner class, FileWriter, and PrintWriter object is creating that defines the string and long variable which is used to input value from the user-end, and store the value into the pass.txt file.

One tool of Lean that is a container, card, or visual limit that signals when work needs to be done or replenishment needs to be initiated is called a:

Answers

Answer:

Kanban System

Explanation:

Kanban can be regarded as one of Lean tools which is been designed to carry out reduction of the idle time in a production process. The idea or concept behind this Kanban system, is to make delivery of needs of the process needs at exactly the it needs it. Kanban can be reffered to as visual cards. Kanban can as well be explained as scheduling system that is used for lean manufacturing as well as just-in-time manufacturing. Taiichi Ohno, who was an industrial engineer at Toyota carried out development of kanban so that there could be an improved manufacturing efficiency. Kanban is considered as one method used to achieve JIT.

It should be noted that Kanban System is One tool of Lean that is a container, card, or visual limit that signals when work needs to be done or replenishment needs to be initiated .

A container, card, or visual limit that signals when work needs to be done or replenishment needs to be initiated is called a Kanban system.

Kanban is gotten from a Japanese word meaning 'signboard' but it has been used recently as a means of scheduling.

The Kanban system is a method of using cards or visual signals for triggering or controlling the flow of materials when work needs to be done. It is useful because it makes work processes more efficient.

A container, card, or visual limit that signals when work needs to be done or replenishment needs to be initiated is called a Kanban system.

Find out more at: https://brainly.com/question/22616012

You are configuring NIC teaming on a server with two network adapters. You chose Switch Independent Mode. You now must choose between the two modes determining if one adapter is left offline or both adapters are functional. You require a mode for the highest throughput. What mode do you choose?

Answers

Answer:

The appropriate answer is "Active/Active mode".

Explanation:

Now just after the customers or clients respond to the traditional standards, the board is comprised the information rapport with the cloud service, which would be considered as Active mode.The car glides primarily somewhere at a specified constantly controlled rate of the conductor. Currently entering the grounding connection boosts the flow of electrons further into the receiver as well as the transmitter.

Thus the above is the correct solution.

pleassssseee help
what is High Level programming
Language ​

Answers

Answer:

High level programming language is a language that simplifies computer programming.

Examples are python, visual basic,java,JavaScript .It is a language with abstraction from details of the computer.



1. What is document formatting? Give significance of speller and thesaurus of word processing package.​

Answers

Answer:

hope it is helpful to you

stay safe, happy and healthy

Formatted the text in a document can draw the reader's attention to specific parts of a document and it also emphasize important information. In the word file, a person may have several options for adjusting the text, including font, size, and color.

What is Document formatting?

Document formatting can be referred to as the way in which a document is laid out on the page, it is the way in which it looks and is visually organized and it addresses all the things such as font selection, font size and presentation like bold or italics font, spacing, margins, alignment, columns, indentation, and lists.

Document formatting is the mechanics of how the words appear on the page or the document. A well formatting document is consistent, and it is correct in terms of meeting any stated requirements, and easy to be read by anyone.

Learn more about Document formatting here:

https://brainly.com/question/21934838


#SPJ2

Write a Prolog predicate makeset(L1, L2) that takes list L1 of integers and removes the repeating elements. The result is returned in list L2. For example, makeset([1,3,4,1,3,9],Set). would return [1,3,4,9].

Answers

Answer and Explanation:

Using Javascript:

We could just use ES6 syntax and quickly get our result with no long coding. ECMA script 2015, the sixth version of javascript programming language has an array method that returns the unique values of an array in a new array.

var allValues = [ 1,3,4,1,3,9 ];

let uniqueValues = [...new Set(allValues)];

console.log(uniqueValues);

This will output only the unique values 1,3,4,9

List the invoice number and invoice date for each invoice that was created for James Gonzalez but that does not contain an invoice line for Wild Bird Food (25lb).

Answers

Answer:

Derive FROM invoice_transaction, invoice_details, item_details

and JOIN customer_details  ON (invoice_transaction.CUST_ID = customer_details.CUST_ID  AND customer_details.FIRST_NAME = 'James'   AND customer_details.LAST_NAME  = 'Gonzalez')

Explanation:

The following details will be there in the invoice

item_details rep_details invoice_details customer_details invoice_transaction

 Derive FROM invoice_transaction, invoice_details, item_details

and JOIN customer_details  ON (invoice_transaction.CUST_ID = customer_details.CUST_ID  AND customer_details.FIRST_NAME = 'James'   AND customer_details.LAST_NAME  = 'Gonzalez')

Write an application that inputs a five digit integer (The number must be entered only as ONE input) and separates the number into its individual digits using MOD, and prints the digits separated from one another. Your code will do INPUT VALIDATION and warn the user to enter the correct number of digits and let the user run your code as many times as they want (LOOP). Submit two different versions

Answers

Answer:

The programs are written in python:

Version 1:

n = int(input("Numbers: "))

for i in range(n):

   num = int(input("Input integer: "))

   mylist = []

   while num>0:

       mylist.append(num%10)

       num= int(num/10)

   mylist.reverse()

   for i in mylist:

       print(i,end=" ")

   print()

Version 2:

num = int(input("Input integer: "))

while num > 0:

   mylist = []

   while num>0:

       mylist.append(num%10)

       num= int(num/10)

   mylist.reverse()

   for i in mylist:

       print(i,end=" ")

   print()

   num = int(input("Input integer: "))

Explanation:

Version 1:

This gets the number of inputs from the user, n

n = int(input("Numbers: "))

This iterates through n

for i in range(n):

For each iteration, this gets the integer input from the user, num

   num = int(input("Input integer: "))

This initializes a list

   mylist = []

This loop is repeated until num is 0

   while num>0:

This gets the individual digit and appends it to a list

       mylist.append(num%10)

This gets the other numbers

       num= int(num/10)

This reverses the list

   mylist.reverse()

This prints the individual digits from the list

   for i in mylist:

       print(i,end=" ")

Print a new line for the next integer input

   print()

Version 2:

The difference in both versions are the following lines

This gets the integer input from the user

num = int(input("Input integer: "))

This loop enables the user to input as many numbers as possible. But once the user inputs 0, the program will stop

while num > 0:

Unlike version 1 where the number of inputs in known at the initial stage of the program

what are the different types of biometric method used in artificial intelligence?​

Answers

Answer:

Different types of biometric method used in AI are

Explanation:

Face Recognition.

Speaker (Voice) Recognition.

Fingerprint Recognition.

Behavioral Biometrics.

Crossmatch – 'Composite' Biometric Authentication.

Tygart Technology – Facial Recognition from Videos.

Onfido – Facial Biometrics.

EyeLock – Iris Recognition.

Match the elements of a web page with their descriptions.
graphics
audio
video
animation

includes file formats AVI and WMV

includes maps and photographs

includes rapid display of a sequence of static images

includes file formats WAV and MPEG 3

Answers

Answer:

video - includes file formats AVI and WMV

graphics - includes maps and photographs  

animation - includes a rapid display of a sequence of static images

audio - includes file formats WAV and MPEG 3

Explanation:

The given elements of a web page have correctly been matched with their descriptions in order to define them adequately. The element that characterizes video data involves a common format of files like AVI(in Microsoft) and WMV(windows media video). While Graphics are described as the pictorial representation and manipulation of data and hence, it involves pictures, along with, photos. Animation involves the process of giving inanimate objects or drawings a motion form and hence, it includes a series of static images to show the movement. While audio lays focus on audible sound with formats like MPEG 3(audio file).

Answer:

video - includes file formats AVI and WMV

graphics - includes maps and photographs  

animation - includes a rapid display of a sequence of static images

audio - includes file formats WAV and MPEG 3

Explanation

Edmentum.

Among the following protocols, terminology or considerations, indicate those that are associated with routing within a single network (typically owned and operated by one organization

a. BGP
b. OSPF
c. inter-AS routing
d. intra-AS routing
e. inter-domain routing
f. intra-domain routing
g. Driven more by performance than by routing policy
h. Driven more by routing policy than end-end routing performance

Answers

I believe your answer will be F. Intra domain routing

The protocol is indeed a set of rules and principles for data transmission and the further discussion can be defined as follows:

OSPF (Open Shortest Path First) is indeed a routing system that aids in data routing by calculating the best shortest path inside a single network.Intra-AS (Autonomous System) networking establishes links and routes packets within automated driving. No one in it has access to it.Intra-domain routing employs IGP (Interior Gateway Protocol), which directs packets inside one specific domain or between domains.A few more organizations will not seriously evaluate routing policies. It is also influenced by performance.

Therefore, the answer is Option "b,d,f, and g".

Learn more protocol operating:

brainly.com/question/14681103

#include <stdio.h>
void foo(int n, int sum)
{
int k = 0, j = 0;
if (n == 0) return;
k= n % 10;
j = n/10;
k = sum *k;
sum = sum *k + 1;
foo (j, sum);
printf ("%d", k%10);
}
int main()
{
int a = 5179, sum = 2;
foo (j, sum);
printf("%d",k%10);
}
int main()
{
int a =5179,sum=2;
foo(a,sum);
printf("%d",sum);
getchar();
}​

Answers

what’s ur questions tho
Other Questions
Help please! 15 points! (Kind of easy)1. If you are motivated by failure avoidance it meansI think it's CA. You try a lot of things because you believe youll succeed at all of them. You wont fail.B. You are doing something because you feel you have to in order not to fail and youre excited to work on it.C. You dont begin to try something because youre afraid youll fail.D. You are doing something because you feel you have to in order not to fail but you dont really want to do it. find the total surface are of a cone having a diameter of base 8cm and a slant height of 12cmPlease help i have 5 mins!! jose 25 kg is father is 5 kg less than 3 times jose's weight what is the weight of jose father PLEASE HELP!!! An investment earns 3% a year compounded monthly. Find the value of an initial investment of $5,000 after 6 years. Which of the following is not true of creatine?A. Creatine is naturally found in meatB. Research has shown mixed results on the effectiveness and safety of creatineC. Creatine is not found in food and can only be consumed in a supplementD. Creatine increases the need for a lot of water within a muscle Was was considered the "first Cold War Event" that put the USA and theSoviet Union in a position where military action almost occurred. Help Please!!!!!!!!!! please solve fast please fast All my efforts to convince her for the tour were............A.irritationB.feebly C.GratingD.futile the radius of a wheel is 21m.how much distance will it covers when it rotates 5 times? Me need help with this humanism means that christian themes were never depicted. The Farmers' Alliance was originally formed to a break the economic grip of the railroads through farmers' cooperatives. b join poor black and white farmers in a political alliance to advance their similar economic interests. c drive up farm prices by reducing crop production. d undermine eastern bankers by providing low-cost loans to farmers. e advance agriculturally useful education in state land-grant colleges What are questions that biologists might ask about the living things they study The total cost c a roof technician charges to fix a sink in a house depends on the number h of hours it takes to assess the damages to the roof and repair the roof. This situation can be represented by the function rule 32h + 145. What is the total cost the roofer will charge if he works for 19.25 hours? Develop an argument as to whether or not the structures and functions of the nervous system work to help prevent injuries. Use evidence and real-world knowledge to support your argument. Its biology someone help me please its 4:04 am rn and am literally crying Solve the equation on theinterval [0,2pi)3 sin x = sin x + 1 please help me on this. What are the steps involved in making paper? Arrange the steps in the correct order. a. Cooking and stirring the fibres. b. Selecting and Separating and then washing the raw materials. c. Pounding, separating and drying the paper fibres in a mould.Single choice. c,b,a a,c,b b,a,c None of these