A programmer is developing software for a social media platform. The programmer is planning to use compression when users send attachments to other users. Which of the following is a true statement about the use of compression?

A. Lossy compression of an image file generally provides a greater reduction in transmission time than lossless compression does.
B. Lossless compression of an image file will generally result in a file that is equal in size to the original file.
C. Sound clips compressed with lossy compression for storage on the platform can be restored to their original quality when they are played.
D. Lossless compression of video files will generally save more space than lossy compression of video files.

Answers

Answer 1

A true statement about the use of compression is Lossy compression of an image file generally provides a greater reduction in transmission time than lossless compression does.

What is Compression?

This refers to the process of modifying, encoding or converting the bits structure of data to use less space.

Hence, we can see that A true statement about the use of compression is Lossy compression of an image file generally provides a greater reduction in transmission time than lossless compression does.

Read more about data compression here:

https://brainly.com/question/17266589

#SPJ1


Related Questions

What command can be issued to confirm which directory you are in at a command line prompt?

Answers

A command which can be issued to confirm the directory which you are in at a command line prompt is: pwd.

What is a directory?

A directory is also referred to as a folder and it can be defined as a document that is typically used for storing and organizing a file on a computer system.

What is a Linux command?

A Linux command can be defined as a software program that is designed and developed to run on the command line, in order to enable an administrator (end user) of a Linux network perform both basic and advanced tasks by only entering a line of text.

In Computer technology, pwd is an abbreviation for print working directory and it is typically used on a Linux computer to determine the full path name of the current directory.

In this context, we can reasonably infer and logically deduce that a command which can be issued to confirm the directory which an end user is in at a command line prompt is pwd.

Read more on Linux pwd command here: https://brainly.com/question/11028644

#SPJ1

What is the foreign exploitation of copyrights via a license from the original publisher called?

Answers

The foreign exploitation of copyrights via a license from the original publisher called Sub publishing.

What is Sub Publishing?

The term sub-publisher is  known to be a term that connote when a company is said to be engaged by any rights holder to be able to license as well as administer its works in a given region or a given territory.

A good example, an American publisher can act ot engage the services of a sub-publisher in Britain to handle its works in that country.

Therefore, The foreign exploitation of copyrights via a license from the original publisher called Subpublishing.

Learn more about copyrights  from

https://brainly.com/question/357686

#SPJ1

Why are magnetic devices an effective means of representing the binary values?

Answers

Magnetic storage uses the two types of magnetic polarities to represent the binary information consisting of zeros and ones. 

the task is to ask the user for three numbers and find the average. which pseudocode gives you the comment outline for the task? ask the user for three numbers add the numbers divide by 3 print the average ask the user for three numbers, , add the numbers, , divide by 3, , print the average

Answers

The task is to ask the user for three numbers and find the average.

The pseudocode that gives you the comment outline for the task is ask the user for three numbers, , add the numbers, , divide by 3, , print the average

What is a Pseudocode?

This refers to the plain language that makes a description of the steps in an algorithm

Hence, we can see that The task is to ask the user for three numbers and find the average.

The pseudocode that gives you the comment outline for the task is ask the user for three numbers, , add the numbers, , divide by 3, , print the average

This helps to add the numbers and then find the average and then print the result as given above.

A simple algorithm for this would be:

Step 1: Enter three numbers

Step 2: Add the numbers

Step 3: Divide by 3

Step 4: Find the average

Step 5: End

Read more about pseudocodes here:

https://brainly.com/question/24953880

#SPJ1

which of the following is a limited and non-gui version of windows based on windows 10 technologies that can be used for installing, troubleshooting, and repairing windows 10?

Answers

The option that is limited and non-gui version of windows based on windows 10 technologies that can be used for installing, troubleshooting, and repairing windows 10 is known to be option a. Windows PE/.

What is Windows PE used for?

Windows PE (WinPE) is known to be a term that connote  a little form of an operating system.

It is known to be one that is often used to install, deploy, as well as been used to repair Windows desktop editions, Windows Server, and other kinds of Windows operating systems.

Note that with the use of the Windows PE, a person can be able to Set up their hard drive before they can install the  Windows.

Therefore, based on the above, The option that is limited and non-gui version of windows based on windows 10 technologies that can be used for installing, troubleshooting, and repairing windows 10 is known to be option a. Windows PE/.

Learn more about Windows PE from

https://brainly.com/question/14297547

#SPJ1

Which of the following is a limited and non-GUI version of Windows based on Windows 10 technologies that can be used for installing, troubleshooting, and repairing Windows 10?

a. Windows PE

b. WAIK

c. USMT

d. DISM

The early versions of ____ let web page designers create text-based electronic documents with headings, title bar titles, bullets, lines, and ordered lists.

Answers

The early versions of HTML let web page designers create text-based electronic documents with headings, title bar titles, bullets, lines, and ordered lists.

What was the  early versions of  HTML?

The first type  of HTML was said to be written by a man known to be called Tim Berners-Lee and this was done in the year in 1993.

After then, there have been a lot of other different versions of HTML. Therefore, note that The early versions of HTML let web page designers create text-based electronic documents with headings, title bar titles, bullets, lines, and ordered lists.

Learn more about HTML from

https://brainly.com/question/12215194

#SPJ1

__ software provides tools for creating and editing all kinds of text-based documents such as letters, resumes, and reports. word processing spreadsheet dbms presentation

Answers

Word processing software provides tools for creating and editing all kinds of text-based documents such as letters, resumes, and reports.

What is a word processing software?

A word processing software can be defined as a type of software that is primarily designed and developed so as to enable its end users type, format and save text-based documents such as:

.docx files.txt files.doc files

In Computer technology, word processing software are designed and developed to provide end users with tools for creating, typing, and editing all kinds of text-based documents such as:

LettersResumesReports.

Read more on word processing here: brainly.com/question/24043728

#SPJ1

write a program that prompts the user to enter five test scores and then prints the average test score. indicate the average test score by printing it to the terminal using the following format: your average test score is: x (assume that the test scores are decimal numbers.)

Answers

The program that prompts the user to enter five test scores and then prints the average test score is given below:

The Python Program

#include <iostream>

using namespace std;

int main()

{

   double test1, test2, test3, test4, test5;

   

   cout << "Please enter 5 test scores as decimals \n";

   cin >> test1 >> test2 >> test3 >> test4 >> test5;

   double average = (test1 + test2 + test3 + test4 + test5) / 5;

   

   cout << "The average test score is: " << average << endl;

   

   return 0;

}

Read more about python programming here:

https://brainly.com/question/27666303

#SPJ1

a communications, data exchange, and resource-sharing system created by linking two or more computers and establishing standards, or protocols, so that they can work together.

Answers

Network is a system that links two or more computers and establishes standards, or protocols, so that they can cooperate to exchange data and share resources. A group of computers sharing resources that are available on or offered by network nodes is known as a computer network.

Over digital links, the computers communicate with one another using standard communication protocols. These connections are made up of telecommunication network technologies, which are based on physically wired, optical, and wireless radio-frequency means and may be set up in a number of different network topologies. Personal computers, servers, networking equipment, and other specialized or general-purpose hosts can all function as nodes in a computer network.

Learn more about network https://brainly.com/question/24279473

#SPJ4

the em – command is used to repeat the last action and to redo copy none of these​

Answers

redo the right answer..

Which of the following is a responsibility of the hardware? (1 point)
O processing
O runtime prioritization
O memory allocation
O managing hardware

Answers

The option that is a responsibility of the hardware is option a: processing​.

What is a hardware in a computer?

Hardware is known to be a term that is seen as  the computer's tangible parts or its delivery systems.

It is one that helps in processing as well as saves or store and run the written instructions that is known to be given  by the software.

Therefore, based on the above, The option that is a responsibility of the hardware is option a: processing​.

Learn more about hardware  from

https://brainly.com/question/24370161

#SPJ1

freddy wants to take up a few platform-specific courses for his new job. which courses can he take? to be able to perform for programming languages specific to a certain platform, freddy can take courses such as and .

Answers

Freddy can enrol in classes in HTML5 and CSS3 to learn how to function for programming languages particular to a particular platform.

The term "CSS 3" refers to Cascading Style Sheets revision 3, which is a style sheet programming language created for describing and enhancing the presentation of a webpage (document) expressed in a markup language like:

XMLHTML

What is it HTML 5?

The term HTML 5, which stands for hypertext markup language revision 5, can be referred to as a standard computer language used for creating and presenting websites or webpages.

Freddy can attend classes in HTML5 and CSS3 to learn how to use platform-specific programming languages to do a number of things.

Learn more about programming languages:

https://brainly.com/question/27905377

#SPJ4

Indirect attacks originate from a compromised system or resource that is malfunctioning or working under the control of a threat. _________________________

Answers

Indirect attacks originate from a compromised system or resource that is malfunctioning or working under the control of a threat is a true statement.

What is compromised system in networking?

A network or system that is known to be compromised is one when  there has been a breach in regards to confidentiality, as well as integrity or presence of its infrastructure or components in any type.

Therefore, based on the above, one can say that Indirect attacks originate from a compromised system or resource that is malfunctioning or working under the control of a threat is a true statement.

Learn more about compromised system from

https://brainly.com/question/28482553

#SPJ1

Indirect attacks originate from a compromised system or resource that is malfunctioning or working under the control of a threat. true or false.

kate decides to download an extension to her favorite browser to quickly store links on her spreadsheet software. while downloading the software, she ignores the opt-out check box that allows the extension to download a search toolbar.

Answers

By ignoring the opt-out check box that allows the extension to download a search toolbar, the error which has occurred here is that: d. Kate has installed a potentially unwanted program (PUP).

What is a software?

A software can be defined as a set of executable instructions that is typically used to instruct a computer system on how to perform a specific task (function) and proffer solutions to a particular problem.

What is a potentially unwanted program (PUP)?

A potentially unwanted program (PUP) can be defined as a piece of software that's bundled into download packages and may be unwanted by the end user because it offers no benefits or may pose high risk.

In this scenario, we can reasonably infer and logically deduce that the error which has occurred here is that Kate has installed a potentially unwanted program (PUP) because she ignored the opt-out check box which then allowed the extension to download a search toolbar.

Read more on potentially unwanted program here: https://brainly.com/question/25091456

#SPJ1

Complete Question:

Kate decides to download an extension to her favorite browser to quickly store links on her spreadsheet software. While downloading the software, she ignores the opt-out check box that allows the extension to download a search toolbar.

What has occurred here?

a. Kate has installed an injection.

b. Kate has installed a backdoor.

c. Kate has installed a Trojan.

d. Kate has installed a potentially unwanted program (PUP).

the name of the windows utility (part of the operating system that works as a tool to help you complete tasks) that allows you locate and see the contents of folders on your computer

Answers

Answer:

FILE EXPORER

Explanation:

What will be stored in the variable age after this code snippet executes? public static void main(string[] args) { int age = 16; age ; age--; age ; }

Answers

The age that will be stored in the variable age after this code snippet executes is 17.

What is code snippet?

Code snippets are known to be little blocks of codes that are known to be reusable and they are also said to be codes that can be placed inside of a code file through the use of a right-click menu (context menu) command or  one can be able to make use of a combination of hotkeys.

Note that they are the ones that has the commonly used code blocks and in the case above, the age is push forward by one.

Therefore, The age that will be stored in the variable age after this code snippet executes is 17.

Learn more about code snippet from

https://brainly.com/question/24080680

#SPJ1

What will be stored in the variable age after this code snippet executes?

public static void main(String[] args)

{

int age = 16;

age++;

age--;

age++;

}

in a rack setup, a device called a kvm allows multiple consoles to connect to a single device on the rack.

Answers

in a rack setup, a device called a kvm allows multiple consoles to connect to a single device on the rack is a False statement.

What is a rack and what is its purpose?

A rack is known to be a term that is used in computing as well as in an IT (information technology).

The term is known to be one that connote the act that is acting as a supporting framework that tends to holds hardware modules.

In the above context, racks are seen as a kind of  contain servers, hard disk drives as well as  other forms of computing equipment.

The Racks are known to be tools that make it possible to place in a lot of equipment in a little physical footprint without  the need for shelving.

Therefore, in a rack setup, a device called a kvm allows multiple consoles to connect to a single device on the rack is a False statement.

Learn more about consoles  from

https://brainly.com/question/27031409

#SPJ1

in a rack setup, a device called a kvm allows multiple consoles to connect to a single device on the rack. True or False. .

which statement, executed once at the start of the program, enables a program to generate pseudo-random numbers with variable newseed as the seed?

Answers

Srand(time(0)) executed once at the start of the program, enables a program to generate pseudo-random numbers with variable newseed as the seed.

We evaluate each choice separately to do this.

(a) srand()

The use of srand() in the example above is improper because it needs an argument to be used (2)

(b) srand(time(0))

Because time(0) allows srand() to seed to the current time, the sentence above is acceptable and will always produce unique pseudo random numbers.

(c) Srand (100)

The aforementioned is a legitimate use of srand(), however because srand() has a seed size of only 100, rand() will produce the same set random integers.

(d) time(srand())

Additionally, the aforementioned use of srand is improper ().

Learn more about pseudo-random:

https://brainly.com/question/13854906

#SPJ4

an application is running with a multiple level queue and a variable time quantum per queue. the current incoming job needs 80 ms to run to completion.

Answers

Based on the above, the answers are:

a. Number of times Job interrupted = 4

b. Job Finish at Which Queue = 5th

c. Time Spends on each Queue

Queue 1 = 5ms

Queue 2 = 10ms

Queue 3 = 20ms

Queue 4  = 40ms

Queue 5  = 80ms

What is the Queue about?

Based on the Data given:

Total Time Required to complete the job = 80ms

Time Quantum of First Queue = 5ms

We need to Find

a. No. of times Job interrupted ?

b. Job Finish at Which Queue ?

c. Time Spends on each Queue?

Therefore,

Since Queue 1 = 5ms

all of the Queue has double time Quantum than former one so thatl

Queue 2 = 2x 5ms = 10ms

Queue 3 = 2x 10ms = 20ms

Queue 4 = 2x 20ms = 40ms

Queue 5 = 2x 40ms = 80ms

a. The System will interrupt 4 times as there are five queue in the system.

b. As mentioned in Question that 80ms will it take to complete the job so, This task will be completed in 5th Queue.

Therefore, Based on the above, the answers are:

a. Number of times Job interrupted = 4

b. Job Finish at Which Queue = 5th

c. Time Spends on each Queue

Queue 1 = 5ms

Queue 2 = 10ms

Queue 3 = 20ms

Queue 4  = 40ms

Queue 5  = 80ms

Learn more about Queue from

https://brainly.com/question/14975970

#SPJ1

See full question below

Assume that the system has a multiple level queue with a variable time quantum per queue, and that the incoming job needs 80 ms to run to completion. If the first queue has a time quantum of 5 ms and each queue thereafter has a time quantum that is twice as large as the previous one, how many times will the job be interrupted and on which queue will it finish its execution? Calculate how much time in ms that it spends in each queue.

write the header file (.h file) of a class acc2 containing: a data member named sum of type int. a constructor accepting no parameters. a function named getsum that accepts no parameters and returns an int.

Answers

// acc2.h

// c++ class header for acc2
class acc2
{
public:

// getsum()
int getsum()
{
return sum_;
}

// Default constructor
acc2()
{
sum_ = 0;
}

private:
int sum_;
}

the countries with the highest software piracy rate in the world include luxembourg, japan, and new zealand.

Answers

The given statement: The countries with the highest software piracy rate in the world includes Luxembourg, Japan, and New Zealand is FALSE.

This is because the countries with the highest software piracy rate in the world are Vietnam and China and they both have piracy rates of 94% and 92% respectively

What is Piracy?

This refers to the

Hence, we can see that The given statement: The countries with the highest software piracy rate in the world include Luxembourg, Japan, and New Zealand is FALSE.

This is because the countries with the highest software piracy rate in the world are Vietnam and China and they both have piracy rates of 94% and 92% respectively

Read more about software piracy here:

https://brainly.com/question/1329368

#SPJ1

Make Your Own Flowchart

Answers

Answer:

https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS5V59B3u23rfG-bXj8jNoV7rXfV62cyPnkcg&usqp=CAU

an example of a flow chart

Explanation:

you work at a computer repair store. you are in the process of building a new computer system. the customer wants a motherboard with the following features: 16x pci express slot for video card support m.2 storage support support for 64-bit processors dual-channel memory support support for up to 64 gb of memory in this lab, your task is to: select and install the motherboard that meets the scenario requirements. connect the following computer case cables: power switch power led 3-1 pin hdd led speaker fan front fan rear usb (black cable- 2.0) front panel audio usb 3.0 connect the following connectors from the power supply: cpu power main motherboard power

Answers

A motherboard featuring a dual-core, 64-bit processor, 8 GB of dual-channel RAM, a 16x PCI Express slot for a video card, and support for firewire.

Choose the motherboard, then install it as follows:

Expand Motherboards in the Shelf.

-Click Details for a motherboard.

The Specifications tab should be chosen.

-To find the features that are supported, consult the motherboard documentation.

To determine the features for each motherboard, repeat steps 2-4.

-Once you've located a motherboard that satisfies the scenario's requirements, click Motherboard in the computer's top-right corner to move to the motherboard view.

From the shelf, move the motherboard with Socket 1151 to the motherboard plate inside the computer case.

Connect the connectors on the system casing as shown:

-Click Details next to Selected Components for the motherboard.

The Specifications tab should be chosen.

Learn more about motherboard:

https://brainly.com/question/15058737

#SPJ4

the is a collection of classes and other code that can be used along with a programming language such as c

Answers

.Net framework is a collection of classes and other code that can be used along with a programming language such as c

Microsoft's Net Framework is a software development platform for creating and running Windows applications. The .Net framework is made up of libraries, programming languages and developer tools that can be used to create web and desktop applications. It is also used in the development of games, web services and websites.

.Net framework also supports a number of programming languages, including Visual Basic, C and C#. As a result, developers can select and choose the languages to create the required application.

To learn more about .Net Framework: brainly.com/question/14501179

#SPJ4

which of the following is a limited and non-gui version of windows based on windows 10 technologies that can be used for installing, troubleshooting, and repairing windows 10?

Answers

The option that is limited and non-gui version of windows based on windows 10 technologies that can be used for installing, troubleshooting, and repairing windows 10 is known to be option a. Windows PE/.

What is Windows PE used for?

Windows PE (WinPE) is known to be a term that connote  a little form of an operating system.

It is known to be one that is often used to install, deploy, as well as been used to repair Windows desktop editions, Windows Server, and other kinds of Windows operating systems.

Note that with the use of the Windows PE, a person can be able to Set up their hard drive before they can install the  Windows.

Therefore, based on the above, The option that is limited and non-gui version of windows based on windows 10 technologies that can be used for installing, troubleshooting, and repairing windows 10 is known to be option a. Windows PE/.

Learn more about Windows PE from

https://brainly.com/question/14297547

#SPJ1

Which of the following is a limited and non-GUI version of Windows based on Windows 10 technologies that can be used for installing, troubleshooting, and repairing Windows 10?

a. Windows PE

b. WAIK

c. USMT

d. DISM

the university of kingston has hired you to install a private area network for its campus so that students and teachers from various departments can exchange data among themselves. which of the following network models would be best suited for such an institution?

Answers

The network models that would be best suited for such an institution is known as CAN.

How does a CAN network work?

The CAN  is known to be a kind of a peer-to-peer network. This is a term that connote that there is not any master that act to controls when the all the nodes have access to read as well as write data on the CAN bus.

Note that if a CAN node is said to be ready to transmit data, it looks to see if the bus is said to be busy and then it is one that often writes a CAN frame onto the network.

Note that  network model is seen as a kind of database model that is set up as a flexible method to showing objects and their relationships

Therefore, The network models that would be best suited for such an institution is known as CAN.

Learn more about  network models from

https://brainly.com/question/23369075

#SPJ1

Define the three overarching domains that contain application software, system software and hardware layers along with the
layers of abstraction in each, and explain in detail how each of these layers, whether software or hardware, interacts with the
others Explain your answer in 3-5 sentences (4 points)
BIVE

Answers

The three overarching domains that contain application software, system software, and hardware layers along with the layers of abstraction in each are as follows:

An abstract model theory is utilized in order to recognize and control a complex computing system.A layered model theory permits you to acknowledge how one layer significantly works with only some basic information. There are three distinct standards of abstraction that include system-level concrete architecture, processor-level abstract, and concrete architecture.

What are overarching domains?

Overarching domains may be characterized as those domains in the computer and technology which are forming the cover or arch over the numerous sets of software and hardware.

Therefore, the three overarching domains that contain application software, system software, and hardware layers along with the layers of abstraction in each are well described above.

To learn more about Hardware and software, refer to the link:

https://brainly.com/question/23004660

#SPJ1

the most reliable way to store important files without having to worry about backups or media failure is

Answers

The most reliable way to store important files without having to worry about backups or media failure is the cloud backup.

What is Cloud backup?

Cloud backup may be defined as a type of service that significantly involves the restoration of the data and applications on private servers which are backed up and stored on a remote server.

At present, there are various types of cloud backup solutions exist. But the principle of all remains the same which is to restore all sorts of data to the private server. Through this strategy, your backups are created automatically as well and everything is synced.

Therefore, the most reliable way to store important files without having to worry about backups or media failure is the cloud backup.

To learn more about Cloud backup, refer to the link:

https://brainly.com/question/24225080

#SPJ1

Answer: cloud storage

Explanation:

Which statement best describes how the information systems discipline is
different from the information technology discipline?
A. Information systems incorporates physical computer systems,
network connections, and circuit boards.
B. Information systems focuses on connecting computer systems
and users together.
C. Information systems incorporates all facets of how computers
and computer systems work.
D. Information systems focuses on organizing and maintaining
computer networks.

Answers

A statement which best describes how the information systems discipline is different from the information technology discipline is: B. Information systems focuses on connecting computer systems and users together.

What is an information system?

An information system (IS) can be defined as a collection of computer systems and Human Resources (HR) that is used by a business organization or manager to obtain, store, compute, and process data, as well as the dissemination of information, knowledge, and the distribution of digital products from one location to another.

In this context, we can reasonably infer and logically deduce that a statement which best describes how the information systems discipline is different from the information technology discipline is that information systems is typically focused on connecting computer systems and users together.

Read more on information systems here: https://brainly.com/question/25226643

#SPJ1

Answer

B. Information systems focuses on connecting computer systems

and users together.

Explanation:

your colleague has 15 years of log files full of performance data. the data needs to be sorted, but the file siz

Answers

Given that your colleague has 15 years of log files full of performance data. the data needs to be sorted, using a merge sort to divide the data into smaller chunks, sort them recursively, then merge results to produce the final sorted file with all data is given below:

The Merge Sort

import java.util.*;

public class Main {

public static void merge(String data)

{

String arr[]=data.split(";");

if(arr[0]==null||arr[1]==null) {

System.out.println(data);

return ;

}

String sorted_result=""; // to store the sorted alhanumeric character separated by comma

String pair=""; // to store the comparision pair

int i=0,j=0;

while(i<arr[0].length()&&j<arr[1].length())

{

char a=arr[0].charAt(i);

char b=arr[1].charAt(j);

if(a<b) // if the character of first array is smaller than second

{

sorted_result+=a+",";

pair+="("+a+","+b+") ";

i=i+2;

}

else

{

sorted_result+=b+",";

pair+="("+b+","+a+") ";

j=j+2;

}

}

while(i<arr[0].length())

{

char a=arr[0].charAt(i);

sorted_result+=a+",";

i+=2;

}

while(j<arr[0].length())

{

char b=arr[0].charAt(j);

sorted_result+=b+",";

j=j+2;

}

sorted_result=sorted_result.substring(0, sorted_result.length()-1);

System.out.println(sorted_result);

System.out.println(pair);

}

public static void main(String[] args) {

String input1="1,4,7,8;2,3,5,6";

merge(input1);

System.out.println();

String input2="H,L,M,P,P,R,S,b,d,i,n,o,o,p,s;1,5,5,6,7,8,C,U,V,V,W,f,h,r,s";

merge(input2);

System.out.println();

String input3="B,E,E,F,J,N,O,P,U,W,D;G,J,L,N,R,S,V,X,Y";

merge(input3);

}

}

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

Other Questions
___is the belief in a single supreme god.___ is the belief in multiple deitiesA. Polytheism, MonotheismB. Monotheism, PolytheismOC. Monotheism, HinduismO D. Hinduism, Polytheism Which state of category of elements has the greatest number of elements? Least? A significant reason that labor unions like the american federation of labor represented only a small minority of industrial workers was their failure to ______. write a hypothesis for this experimentif........then......because.... Graphing Periodic Properties-somebody please help me out with this please If Amazons CEO Jeff Bezos put you in charge of human resources, what would you do? important please answer this only one i need 50 POINTS 2( 7w-1)+5w=w+ 3(4w+3)+2 (3w-9) the amount of hydrogen that would be produced by dropping 2.5 grams of zinc in 100 mL of sulfuric acid solution with the same concentration Use the data to make a frequency table.7. wing spans (cm): 150 126 139 144 125 149 133 140 142 149 150 127 1308. marathon times (min): 135 211 220 180 175 161 246 201 192 167 235 2089. top speeds (mi/h): 108 90 96 150 120 115 135 126 165 155 130 125 100 in crafting a strategic management plan, leaders must first determine the company's long-term objective. this means leaders must first define the organization's . According to loewen and myrdal (1944), racism and integration is? A cube has an edge length that is a rational number of centimeters. Identify which measurement will require the use of irrational numbers? (1 point)O the diagonal of one of the cube's facesO the volume of the cubeO the surface area of the cubeO the area of one of the cube's faces The collection of sequences sampled from a particular environmental sample is called? What's the difference between a diffused point event and a displaced point event? The weight of a school bus is about 10,000 kg, or 1 x 104 kg.The weight of a small car is about 1000 kg, or 1 x 103 kg.The school bus is about how many times heavier than the small car?O A. 2 timesB. 1.1 timesC. 1 x 10 times D. 1 x 10-1 times Match the following words with their meaning.1. Methuselah2. rainbow3. seventh day4. God's Creation5. God's Word6. living soulManBibleRestGoodSign of covenantThe oldest man recorded in the Old Testament HURRY PLEASE What challenges does elder oaks say come when a person relies too much on the personal line of communication at the expense of the priesthood line of divine communication?. What about Zaroff makes Rainsford uncomfortable? Circ the text that tells you. What is the frequency of radiation whose wavelength is 0.81 nm?