Miriam is very detail oriented within the first month of her new job as a network support specialist she became very good at diagnosing and fixing problems with the network Miriam’s motivation to improve soon earned her a raise

Answers

Answer 1
Final answer:

Miriam's success as a network support specialist highlights the importance of being detail-oriented and motivated to achieve professional growth and earn rewards. Employers can foster such development through mentorship programs and clear communication, while employees can contribute by setting clear goals and actively engaging in their roles.

Explanation:

Miriam's story exemplifies how professional growth and retention are fostered by being detail-oriented and motivated in a technical role. Through her dedication to diagnosing and fixing problems as a network support specialist, she demonstrated her ability to quickly adapt and excel, which naturally earned her a raise. This aligns with the notion that to maximize your first year on the job, one should set specific and measurable goals, remain flexible, and develop not just technical, but also collaboration and teamwork skills. Miriam's proactive approach and motivation to improve suggest she is setting herself up for a successful long-term career in IT.

Organizations can support such career development by developing workplace mentor programs, offering flexible work options, and maintaining open communication. Moreover, individuals can support their own career progress by remaining open to feedback, being resourceful, and actively participating in their work environment. By understanding where one fits in the organizational chart and establishing clear lines of communication with supervisors, an employee like Miriam can navigate the complexities of a workplace effectively and reach her potential more swiftly.


Related Questions

Write a method called dangerousDescent that determines whether there is a downhill section in the hiking trail with a gradient of more than -5%. The gradient is calculated by the rise in elevation over the run in distance. For example, the last kilometer section has a gradient of -1% because the rise in elevation is 40 - 50 = -10 meters. The distance covered in 1000 meters. -10 / 1000 = -1%.


Your method should return true if there exists a dangerous descent in the given array, false otherwise.

Answers

Answer: the explanation gives you the code used

Explanation:

There are several ways to go about this, here is just one way to carry out this computation.

#include <iostream>

using namespace std;

bool dangerousDescent(int* elevationArray , int sizeOfElevationArray)

{

  //we calculate gradient throughout elevationArray and if any one of them is more than -5%

  //then return true else return false

  //gradientOfSectionX = rise in elevation/Distance covered in merters

  //where rise in elevation is (elevationOfX - elevationOfX_previous)

  bool isDangerousDecent = false;

  float gradient = 0;

  int threshold = -5;

  float riseInElevation = 0;

  for (int i = 0; i < sizeOfElevationArray && isDangerousDecent == false; i++)

  {

      if (i > 0)

      {

          //check to avoid array out of bound error

          riseInElevation = (elevationArray[i] - elevationArray[i - 1]);

          gradient = riseInElevation / 1000; //1000 meters = 1km because every marker is at 1 kilometer distance

          gradient = gradient * 100; //percentage

          if (gradient > threshold)

          {

              isDangerousDecent = true;

              cout << "There is a gradient of " << gradient << "% on section " << elevationArray[i] << " of hiking trail " << endl;

          }

      }

      //first section not included because that was starting point with 0% elevatoin

     

  }

  return isDangerousDecent;

}

int main()

{

  int elevationArray[] = { 100,50,20,30,50,40 };

  int size = sizeof elevationArray / sizeof elevationArray[0];

  if (dangerousDescent(elevationArray, size) == true)

  {

      cout << "There is a dangerous decent of gradient more than -5% in hiking trail " << endl;

  }

  else

  {

      cout << "There is no dangerous decent of gradient more than -5% in hiking trail " << endl;

  }

  system("pause");

}

NEED HELP IN A TEST

what term describes the site-to-site VPN used by Kevin's company?

Kevin's company has offices located in different states. All the offices are connected to the head office through a site-to-site VPN connection. Kevin's company is using a(n) ____ VPN.

Answers

Kevin's company is using a site-to-site VPN to connect its office locations to the head office, securely linking them as part of the same local network. This VPN type allows geographically separate offices to maintain a secure and unified network environment.

The term that describes the site-to-site VPN used by Kevin's company, where all offices are connected to the head office through a VPN connection, is a site-to-site VPN. In essence, this setup allows for the secure linking of multiple office locations as if they were part of the same local network. This differs from a client-to-server (or remote access) VPN, where individual users connect to a network remotely. A site-to-site VPN is especially beneficial for organizations with geographically dispersed offices looking to maintain a cohesive, secure, and unified network infrastructure.

A VPN operates by channeling internet traffic through a VPN server, acts as an intermediary. This server conceals the originating IP address and encrypts data, making it difficult for external parties to monitor or intercept communications. The VPN thus serves as a secure 'tunnel' through the public internet, connecting different intranets and providing the security and functionality of a private network.

A ___ is a node (or a device) that connects two different networks together and allows them to communicate.

Answers

Answer:

The answer is Hub

Explanation:

A hub, also called a network hub, is a common connection point for devices in a network. Hubs are devices commonly used to connect segments of a LAN. The hub contains multiple ports. When a packet arrives at one port, it is copied to the other ports so that all segments of the LAN can see all packets.

Which visual aid would help a group of veterinary students study a dog's anatomy?
a group of pictures of dogs in various poses
a diagram that labels different bones in a dog's body
a line graph that shows how a dog's bones grow over time
a bar graph comparing the sizes of bones of different dog breeds

Answers

Final answer:

A diagram labeling the bones in a dog's body is the best visual aid for veterinary students learning about a dog's anatomy, whereas other visual aids like graphs are for comparing quantities and not suited for detailed anatomical studies.

Explanation:

To assist a group of veterinary students with studying a dog's anatomy, the most effective visual aid would be a diagram that labels different bones in a dog's body. This type of aid allows students to clearly identify and learn the names and locations of the bones. It's an essential part of comparative anatomy, which involves the study of the similarities and differences in the structures of different species. On the other hand, a group of pictures of dogs in various poses might provide context but not necessarily detailed anatomical information. A line graph that shows how a dog's bones grow over time could be useful for understanding development but not for the anatomy itself, and a bar graph comparing the sizes of bones of different dog breeds is useful in showing comparisons but not in detailing the specific anatomy of a single dog.

Final answer:

The correct answer is "a diagram that labels different bones in a dog's body" The most suitable visual aid for veterinary students studying a dog's anatomy is a diagram that labels different bones in a dog's body.

Explanation:

For a group of veterinary students studying a dog's anatomy, the most suitable visual aid would be a diagram that labels different bones in a dog's body. This type of visual aid would provide a detailed and structured understanding of the skeletal system, which is vital in veterinary studies. While other visual aids like pictures of dogs in various poses or graphs depicting bone growth or size comparisons across breeds can be informative, they do not offer the comprehensive representation of the anatomy needed for detailed anatomical study. Comparative anatomy is also a helpful approach to understanding the differences and similarities across species.

1. Why is it important for IT technicians to keep documentation on computers for which they are
responsible?​

Answers

It important for IT technicians to keep documentation on computers for which they are responsible because they should know what exactly they have done to specific computers.

What is the main function of IT technicians?

The main function of IT technician is to install, test, maintain and update the equipment of its customers as well as talking about both the software along with the hardware. They could work in the situ, that is the move to the company or do it is remotely just accessing the equipment from where they have their office.

Offer advice on everything which is related to the configuration and the use of the computers. They can do it just over the phone if they are simple questions or in the person if a more thorough analysis has been needed.

Install software in case when an update or the new tools are needed, than they can help you to get everything up and running so you can use it as soon as possible and measure its effectiveness.

Therefore, It important for IT technicians to keep documentation on computers for which they are responsible because they should know what exactly they have done to specific computers.

Learn more about software on:

https://brainly.com/question/1022352

#SPJ2

Final answer:

For IT technicians, maintaining documentation is critical for record-keeping, compliance with regulations, defending against lawsuits, and patent claims. It ensures knowledge is transferable and that information is accessible during audits or inspections. Documentation is a vital part of IT governance and risk management strategies.

Explanation:

It is important for IT technicians to keep documentation on computers for which they are responsible for several critical reasons. Firstly, documentation serves to record all actions and maintenance performed on a computer system, which is crucial when diagnosing future problems or understanding past interventions.

Moreover, maintaining detailed records can prove instrumental when defending against a lawsuit, claiming a patent, or demonstrating the completion and correctness of a procedure. Proper documentation also facilitates knowledge transfer between IT personnel, ensuring that any member of the team can understand and manage the systems effectively, without dependency on the individual who originally performed the work.

Which button should be utilized if a user is unsure whether or not they are the right person to reply to an email?
Forward
Reply
Delete
Reply All

Answers

Answer:

its either a or c

Explanation:

The answer is Delete because they aren’t the right person to respond, so you don’t forward it, reply to it.

Prompt
What are hackers?

Answers

Answer:

hackers are people who get into other people's data and destroy/steal it

Answer:

hope this helps

Explanation:

a person who uses computers to gain unauthorized access to data.

Which elements are in the Sort dialog box? Check all that apply.
Categories
Date
From
Message Preview
Show in Groups
Type

Answers

Categories Date From Show in Groups Type

What type of camera is a cell phone camera

Answers

Answer:

A camera phone is a mobile phone which is able to capture photographs and often record video using one or more built-in digital cameras. It can also send the resulting image over the telephone function. The first commercial camera phone was the Kyocera Visual Phone VP-210, released in Japan in May 1999.

Explanation:

Hope this kinda helps you :)

Answer:The first camera phone was the Kyocera Visual Phone VP-210, released in Japan in May 1999. The camera had a 110,000-pixel front-facing camera.

Explanation:

what notation system supports presenting the largest numbers using fewest digits; Binary, decimal or hexadecimal?

Answers

The notation system supports presenting the largest numbers using fewest digits is

Hexadecimal.

Explanation:

The hexadecimal numeral system, often shortened to "hex", is a numeral system made up of 16 symbols (base 16). Each Hex digit can store 16 bits of information. A single decimal digit stores 4 bits while binary obviously stores 1 bit.Each hexadecimal digit represents four binary digits, also known as a nibble, which is half a byte.The main reason why we use hexadecimal numbers is because it is much easier to express binary number representations in hex than it is in any other base number system.The standard numeral system is called decimal (base 10) and uses ten symbols: 0,1,2,3,4,5,6,7,8,9. Hexadecimal uses the decimal numbers and six extra symbols.

Final answer:

Hexadecimal notation allows for the representation of large numbers using the fewest digits compared to binary or decimal notation. It uses 16 unique symbols and is more space-efficient for this purpose. For extremely large numbers, scientific notation is often used to simplify representation.

Explanation:

When comparing notation systems to see which one can represent the largest numbers using the fewest digits, hexadecimal comes out on top. Hexadecimal notation uses 16 unique symbols (0-9 and A-F) to encode numbers. Each digit in hexadecimal represents a power of 16. For example, the single hexadecimal digit 'F' represents the decimal number 15, so it is a more compact way to show large numbers compared to binary, which uses only two unique digits (0 and 1) or decimal notation that relies on 10 unique digits (0-9).

By contrast, binary notation, although essential for computers, is not as space-efficient for human-readable numbers. The decimal number 1837, for instance, requires eleven binary digits to represent it (11100101101), showing that binary notation typically uses more digits than decimal or hexadecimal for the same number.

Lastly, decimal notation, familiar and widely used by humans, falls in the middle in terms of digit usage. Nevertheless, for extremely large numbers where even hexadecimal can become unwieldy, scientists and engineers often use scientific notation to express such numbers in a much more manageable form, regardless of the base notation.

what elements are generally included on a fax cover sheet

Answers

Answer:

Hope this helps ya out

Explanation:

You should include your name, your fax number and your regular phone number. You should add the same information for your recipient. It is also common to put the date and the number of pages of the fax transmission. Most businesses also specify if the fax is urgent and if they expect a reply.

What day Coronavirus will be over?

Answers

Answer:

w dont know

Explanation:

I don’t know but can you please give me brainliest :)) btw hope your safe!

Which of the following are valid values for a boolean value in programming? (Select all that apply)

'f'
false
+
-
't'
true
0
1

Answers

Answer:

false, true

Explanation:

Boolean values can be represented by just 1 bit in a computer. These can be stored as 1 or 0. In Python you use the True and False keywords to refer to these.

What is FireWire?

a type of connector often used for real-time applications
a type of connector used for fiber optic cable
a type of connector used to connect devices to the serial port on a computer
a type of connector used for coaxial cable

Answers

Answer:

i believe its a type of connector used to connect devices to the serial port on a computer

Explanation:

Match each word to its correct meaning.

1. administrator
set of information for an individual user of a computer, with details about access and appearance
2. control panel
person responsible for running the computer and operating system
3. user
window in Windows operating system that provides shortcuts to settings and functions of the computer
4. user account
the person using a computer

Answers

Answer:

user -a person using a computer

user account- set of information for an individual of a computer, with details about access and appearance

administrator- A person responsible for running the computer and operating system

A business wants to centralize its administrative tasks. At the same time, it wants the existing systems to manage and sustain the growing amount of work in a capable manner. Which technology will help the business meet its goals?


blank will help the business meet its goals.

Answers

Answer:

real-time analytics

Explanation:

Real time analytics is a type of data analysis that is done immediately the data for analysis is available. This can allow users to draw conclusion or acquire new insights swiftly and immediately the data enters their system. Businesses use real time analytics when there is a need to make and execute new decisions without hesitation.

A business that wants to centralize its administrative tasks and simultaneously wants the existing system to manage and sustain the growing amount of work in a capable manner would use real-time analytics.

Answer:

Not Real Time Analytics. I don't know which one it is, but it's not that one.

Explanation:

Where are all of your documents saved?
Computing Processing Unit (CPU)
Hard Drive (HDD)
Monitor
Hardware

Answers

Answer:

Hard Drive (HDD)

Explanation:

Answer:

Hard Drive

Explanation:

The Hard Drive is where most if not all storage is compiled, the Computing Processing Unit is how the PC functions.

Atlases may contain which type of maps?
a Road
b. Country
C. Camp sites
d. All of these

Answers

Answer:

d all of these I think is it

B. countries, they dont have roads or campsites.

Hope types this list in her report about the composition of Earth’s atmosphere.


She wants to sort the list based on the names of the first four gases in ascending order.

Which command group does she navigate to in the ribbon?

Clipboard

Paragraph

Styles

Editing
I have been waiting for 1 hour can someone please help me

Answers

Answer:

B - paragraph

Explanation:

b on ed        

Explanation:

Which uses the most energy in American homes each year?

Answers

Final answer:

The largest share of energy usage in American homes annually is electricity consumption for various purposes, including cooling and appliances. While water heating consumes a significant portion, it does not surpass the energy used for electricity, which accounts for around 69 percent of residential energy use.

Explanation:

In American homes, the annual energy usage is substantial and diverse across various applications. The average American home uses about 100 million BTU of energy per year. Out of this, water heating is a significant component, accounting for approximately 17 percent of residential energy use which translates to 17 million BTU per year for each household. This, however, does not represent the largest share of energy usage.

Residential energy use makes up around 21 percent of total American energy consumption. A specific area that demands attention is electricity consumption. Approximately two-thirds(69 percent) of the primary energy produced for residential usage is allocated for electricity. Considering energy losses in production and delivery, a massive amount of energy is involved in getting electricity to homes. The average household's electricity consumption is around 30 kilowatt-hours (kWh) per day. Moreover, with changes in climate, the energy consumption patterns are shifting, with regions such as the North and West using less energy for heating and more for air conditioning.

Therefore, while water heating is a significant energy consumer in American homes, it is the electricity consumption for various purposes, including cooling and appliances, that uses the most energy on an annual basis. This pattern of energy usage is affected by factors such as consumerism, diet, and living standards.

Nathan wants to make the quotation stand out further. Which order of steps does he need to follow to do this task?
Go to the Borders and Shading option, click the Style tab, and click the color under the Fill option.
Go to the Borders and Shading option, click the Shading tab, and click the color under the Fill option.
Go to the Borders and Shading option, click the Style tab, and click the color under the Color option.
Go to the Borders and Shading option, click the Shading tab, and click the color under the Color option.

Answers

Answer:

B. Go to the Borders and Shading option, click the Shading tab, and click the color under the Fill option.

Explanation:

hope this helps :)

The statement "Go to the Borders and Shading option, click the Shading tab, and click the color under the Fill option" is a correct option (B) that would be the best choice.

What is computer programs?

The process of carrying out a specific computation through the design and construction of an executable computer program is known as computer programming.

As we know,

Microsoft Word, Adobe Photoshop, Adobe Reader, Powerpoint, and many more comparable computer applications that we frequently use in everyday life are some typical instances of software.

If Nathan wants to make the quotation stand out further:

The order step he needs to follow to do this task:

Go to the Borders and Shading option, click the Shading tab, and click the color under the Fill option.

Thus, the statement "Go to the Borders and Shading option, click the Shading tab, and click the color under the Fill option" is a correct option (B) that would be the best choice.

Learn more about computer programs here:

https://brainly.com/question/14618533

#SPJ2

How are logical operators used?
To determine a problem
To create a plan
To identify and correct errors
To make decisions

Answers

To identify and correct errors
Final answer:

Logical operators in programming are used to make decisions by comparing two statements. They include AND, OR, and NOT operators. They are used to control the flow of a program by evaluating certain conditions.

Explanation:

Logical operators are used in computer science, specifically in programming and coding assignments, to make decisions within a program. They work by comparing two statements and then making a decision based on the comparison. The main types of logical operators are AND, OR, and NOT. For instance, let's consider a program that outputs whether a student has passed a class, it might have a logical operator that checks if their attendance is above a certain rate AND if their grades are also above a certain level. Only if both conditions are true, then the program decides the student has passed.

Learn more about Logical operators here:

https://brainly.com/question/36193462

#SPJ3

Alex and Ben both use their credit cards for purchases each month. They both have a grace period and make sure to pay their bills in full every
month before the due date. In August, Ben also uses his card for a cash advance. Which of the following is true?
Select the best answer from the choices provided.
A Only Ben will pay interest in August.
B. Only Alex will play interest in August.
C. Both Ben and Alex will pay Interest in August
D. Neither Ben nor Alex will pay interest in August.

Answers

Answer:

C. Both Ben and Alex will pay Interest in August

Explanation:

both of them would have to pay it or else it wouldn't be fair for the one who had to pay

mark me as brainliest when you can please

When Alyssa imports data from one database to another database, she notices some of the field names are different. She will need to _____ them.

map
merge
link
export

Answers

Answer:

Hope this helps ya   Answer: Export

Explanation:

CIST 1122 Project 2 Instructions

Background:
Special Administrative for Counter-intelligence, Terrorism, Revenge, and Extortion, Incorporated (or SPACTRE, Inc. for short), is enthusiastic about positioning the firm as the full service industry leader for the liquidation of the World’s top agent, James Bond 007. SPACTRE’s mission is to ensure: (1) all current “00” agents are removed and (2) swiftly terminate their replacements.

SPACTRE needs to desperately replace its current database system. The system has not been revised since 2007 and no maintenance patches have been installed by management. The IT department has received numerous RFPs (Request For Proposals) on several database solutions and has settled on an Oracle platform. The Oracle database will be a fully-integrated system that provides functionality for all major departments (Marketing, Finance, HR, and Operations, etc.).

The current server is a Dell Poweredge T605 Tower with 32GB DDR3 Ram, 2 CPUs, and two 750GB SAS (serial attached SCSI) drives configured for RAID 1. The operating system is Microsoft Windows Server 2008 R2 standard. The CIO, Auric Goldfinger, has budgeted resources to upgrade the system. He has asked the Director of IT, Max Zorn, and the Tech Support Manager, Nick Nack, to provide the necessary specs for a replacement.

Instructions
Nick Nack has given you (Senior Field Engineer) the task of researching, designing, and outlining a replacement for the old Dell server. Below are the hardware\software requirements:

form factor Tower or Rackmount
CPU at least two (preferably four)
RAM at least 200GB
storage at least 18TB
power supply redundant
redundancy RAID 5 (you can consider an external storage system or NAS)
operating system Windows server version (enterprise)
technical support minimum 12 hour onsite support; unlimited 24/7 phone support

NOTE: The chosen vendor (i.e. Dell, HP, etc.) must be one that can satisfy the requirements (that is, no build-it-yourself system!)

Research:
When researching a solution for an IT project, start the search using general terms. Here, the Tech Support Manager requires a major vendor solution. Browse hardware manufacturers (like Dell, Hewlett-Packard (HP), IBM, and Intel) for server solutions that meet the major components of a computer (form factor, processor, memory, power supply, and storage). Once you find a model that meets the minimum requirements, search on the manufacturer’s website for the other features (RAID, Operating System, technical support contract). For example, in the search bar of Dell’s website, type in “RAID 5.” Both Dell and HP websites will assist in “building” a system. With some server models, the researcher can add additional features.

Once the research is complete, write a memo to the requester stating who the vendor of choice is and why you chose that vendor. Use the chart above. Replace the requirements in red with the vendor’s description(s) that satisfy that requirement and then place the revised chart in your memo. Add link(s) to the hardware\software specifications.

Memorandum samples:
https://www.wikihow.com/Sample/Memo-to-Boss
https://www.wikihow.com/Write-a-Business-Memo




Answers

Answer:

it is suppost ro be at

least 20 tb

Explanation:

Pat creates a table in a spread sheet

Answers

Answer:

Explanation:

Details?

explain how a computer screen and the eye interact to produce the variety of colors that we see from the 3 colors that are actually displayed on the screen ?

Answers

Answer:

Each pixel of light coming from your computer is made up of a combination of Red, Blue and Green light of different intensities. As this pixel of light is so small your eye only "sees" the combination of those 3 pixels as the intended colour. (as opposed to just red, green and blue light) (This is also known as additive colour mixing)

100 POINTS + BRAINLYEST FOR FIRST PERSON THAT GETS IT RIGHT!!!! While writing a formula, what are some ways to insert a cell reference into the formula? CHECK ALL THAT APPLY

hovering the mouse pointer over the cell to reference


typing the cell name, such as "B4"


clicking the cell to reference


zooming in on the cell to reference

Answers

Answer:

Line second and third i.e, "typing the cell name, like "B4"  and clicking the cell to reference " the correct answer.

Explanation:

It relates to some kind of set of cells on the worksheet, which could be used to calculates the formula. It also helps to locate the information, which you want to analyze in the calculation. It can also provide the cell reference in  more than one formula in the same worksheet, that relates to Information on many other workbooks, and wrong choices can be described as follows:

Hovering provides the basic details, in which we hover, that's why it is wrong .Zooming is used in projection, it can't be used in the cell reference, that's why it is wrong.

Answer:

typing the cell name such as b4 and clicking the cell to reference or band c

Explanation:

Lee is a great public speaker and leader. He has studied the nation’s laws and court cases extensively and can debate about them easily. Lee was born in the United States and is 53 years old.

Answers

Answer:

its C regulation

Explanation:

im taking the unit test

The Common Law and Civil Law are the two primary categories of legal systems in the globe, and most nations adapt elements of one or both into their own legal systems. Thus, option C is correct.

What nation’s laws and court cases extensively?

To regulate the status of aliens and their interactions with Roman citizens. The Romans believed that the jus gentium applied to everyone, in line with the Greek notion of natural law that they borrowed.

Find out more about our charter. The United States of America's Constitution is the country's highest law.

The fundamental law of the United States is the Constitution. It formalizes the people's fundamental principles. The interpretation of any laws approved by Congress, as well as the meaning of the Constitution, must be determined by the courts.

Therefore, in its regulation, he has studied the nation’s laws and court cases extensively.

Learn more about cases here:

https://brainly.com/question/4564773

#SPJ5

How would you add the double 75.6 to the end of an ArrayList of Doubles named myDoubles?


(This is Java Programming btw)

Answers

Answer:

myDoubles.add(75.6);

Explanation:

ArrayList<Double> myDoubles = new ArrayList<Double>();

myDoubles.add(10.8);

myDoubles.add(92.46);

myDoubles.add(75.6);

The above code creates a double ArrayList called myDoubles. We add 10.8 and 92.46 initially. After these numbers, 75.6 is added to the myDoubles using add method (You need to type the list name, ".", and the method name to add the number)

Other Questions
Scientists have discovered by looking at fossil records that the ancestors of flying squirrels did not have flight membranes and are very similar to tree squirrels today. Make a hypothesis about how flight membranes evolved in flying squirrels through the process of natural selection. Select the answer that correctly completes the sentence.The way I see it (?) is that you and I deserve a reward for all our hard work.A) , JoseB) Jose,C) JoseD) , Jose, Juan used to be a fairly generous individual, but it seemed that whenever he loaned things to people, they were never returned, or they were returned broken. Consequently, Juan is no longer generous. Based on principles of operant conditioning, Juan's lack of generosity is MOST likely a result of:a. punishment.b. positive reinforcement.c. negative reinforcement.d. extinction. Find the angle between u = (8,-2) and v = (19,3). Round to the nearest tenth of a degree.A. 32.5B. 6.3C. 42.5D. 16.3 HELP I NEED HELP ASAP!!WHAT IS THE VOLUME OF THE CUBE SHOWN? I WILL GIVE LOTS OF POINT TO THE ONE WHO GIVES THE CORRECT ANSWER!! Which of these choices is a goal of the National Park ServiceOrganic Act?A. To establish air-quality standards and regulateemissions of air pollutantsB. To limit the carbon emissions of fossil fuel powerplantsC. To preserve the natural ecology and history ofcertain scenic placesD. To assess the conservation of soil and waterresources on private lands What development helped contribute to the field of astronomy Find the quotient4 / 9/10 Frank & Sons, a 100% equity financed firm, has a beta equal to 1.3. The firms stock is currently trading at $25 per share, and pays a $1.50 per share dividend. Treasury securities are trading at prices that result in a 7% yield, while current projections claim a 15% return from the stock market. What is Frank & Sons required rate of return on average risk projects? A bookstore had 45 copies of a magazine. Yesterday, it sold 23 of them. Today, it sold 15 of what remained. How many copies does the bookstore have left? A large fraction of the ultraviolet (UV) radiation coming from the sun is absorbed by the atmosphere. The main UV absorber in our atmosphere is ozone, O3O3. In particular, ozone absorbs radiation with frequencies around 9.381014 HzHz . What is the wavelength lambda of the radiation absorbed by ozone? Express your answer in nanometers. = ___. At the end of the current year, using the aging of receivable method, management estimated that $15,750 of the accounts receivable balance would be uncollectible. Prior to any year-end adjustments, the Allowance for Doubtful Accounts had a debit balance of $375. What adjusting entry should the company make at the end of the current year to record its estimated bad debts expense? Multiple Choice Accounts Receivable 15,750 Bad Debts Expense 375 Sales 16,125 Bad Debts Expense 15,750 Allowance for Doubtful Accounts 15,750 Bad Debts Expense 16,125 Allowance for Doubtful Accounts 16,125 Accounts Receivable 16,125 Allowance for Doubtful Accounts 16,125 Bad Debts Expense 15,375 Allowance for Doubtful Accounts 15,375 Trace needs a new carpet for her house the living are is an open floor plan of a dining room 6 feet c 4 feet sitting area 10 feet x 15 feet and a breakfasg nook 5 feet x 5 feet how many square feet of carpet does she need Which sentence from the section shows how the greek city-states planned to defeat king darius What is the relationship between a level of education and career options within a cluster Dado dos ngulos complementarios, uno mide (2x + 10) y el otro (x + 20),calcula el valor de x Which of these statements explains the difference between nuclear binding energy and the strong nuclear force? Check all that apply.A) Nuclear binding energy holds the nuclear particles togetherB) Nuclear binding energy is the energy needed to separate nuclear particles.C) The strong nuclear force holds an atoms protons and neutrons together.D) The strong nuclear force is the energy released during radioactive decay processes.E) The strong nuclear force is directly responsible for radioactive decay.F) Nuclear binding energy can be calculated using E = mc^2. George and Susan open a dry-cleaning business together, but do not execute any documents or perform any formalities other than obtaining a "d/b/a" certificate for their business name: "G & S Clean." One day, when George is out for lunch, Susan burns a large hole in a customer's fur coat while cleaning it. Who is liable for the cost of the coat? All of the following are examples of surface water except...A) aquifersB) streamsC) lakesD) rivers Raj has a full deck of 52 cards. Sydney chooses the queen of clubs and holds onto it. Then Yolanda chooses a card. What is the total number of possible outcomes for Yolandas card?