if a worksheet arranges lookup values in rows rather than columns, which function is best for retrieving data from the lookup table?

Answers

Answer 1

If a worksheet arranges lookup values in rows rather than columns, the best function for retrieving data from the lookup table is the HLOOKUP function in Excel.

The HLOOKUP function, short for "horizontal lookup," searches for a specified value in the first row of a table and returns a corresponding value from a specified row within that table.

To use the HLOOKUP function, you need to provide the following arguments:

1. Lookup value: The value you want to find in the first row of the table.

2. Table array: The range of cells that contains the data.

3. Row index number: The row number within the table where the result is located.

4. Range lookup: A logical value that indicates whether you want an exact match or an approximate match.

By using the HLOOKUP function, you can search for values across rows and retrieve data from the corresponding columns. It is particularly useful when you have a table where the lookup values are arranged in rows and you want to retrieve data from a specific row.

In summary, the HLOOKUP function is the most suitable option for retrieving data from a lookup table when the values are arranged in rows rather than columns.

For more such questions function,click on

https://brainly.com/question/179886

#SPJ8


Related Questions

what is the full form for OMR?

Answers

Answer:

The full form of OMR is Optical Mark Recognition

System Requirements are expressions of capabilities that a system should be designed to provide and the need(s) that the system is expected to fulfill.
TRUE OR FALSE
and
Controls can be of different types. Select all the different types of controls discussed in in the module on Information Security Controls.
Administrative controls
Technical controls
Cognitive controls
Physical controls
Affective controls

Answers

The statement "System Requirements are expressions of capabilities that a system should be designed to provide and the need(s) that the system is expected to fulfill" is TRUE.

System requirements are statements that identify attributes, capabilities, characteristics, or qualities of a system. They are specified by the customer or stakeholder for the system to perform a particular function or task. They are part of the planning stage of system development where the requirements are gathered, analyzed, and documented. In addition, the different types of controls discussed in the module on Information Security Controls are: Administrative controls: These are policies and procedures that are put in place to manage, direct, and regulate the behavior of people in an organization.  Technical controls: These are measures that are put in place to protect the hardware, software, and firmware of the system from damage or unauthorized access. Cognitive controls: These are designed to change or influence human behavior, which can be challenging since humans are difficult to control. Physical controls: These are measures that are put in place to protect the physical components of the system from damage, theft, or unauthorized access. Affective controls: These are designed to influence an individual's emotional state, which can impact their behavior.

To know more about System requirements, click here:

https://brainly.com/question/30664333

#SPJ11

what is the minimum amount of ram needed to run windows vista business?

Answers

The minimum amount of RAM needed to run Windows Vista Business is 512 megabytes (MB).

Windows Vista Business requires a minimum of 512 MB of RAM to function properly. However, it is worth noting that this is the bare minimum requirement, and for optimal performance, it is recommended to have at least 1 gigabyte (GB) of RAM or more. Insufficient RAM may result in slower performance and may limit the ability to run multiple applications simultaneously. Additionally, running resource-intensive software or having multiple browser tabs open may require more RAM. Therefore, it is advisable to consider the specific usage requirements and consider having more RAM if possible for a smoother experience with Windows Vista Business.

Learn more about Windows here:

https://brainly.com/question/13502522

#SPJ11

how to convert binary number into decimal number​

Answers

Answer:

Multiplying by 2

Explanation:

The binary num number to decimal conversion is made by making the sum of each binary digits multiplying by 2 with raised to the power of the positional notation of digits .

Hope it is helpful to you

how to convert binary number into decimal number

Answer:

HOW TO CONVERT BINARY INTO DECIMAL SYSTEM.

The decimal number is equal to the sum of binary digits (dn) times their power of 2 (2n):

decimal = d0×20 + d1×21 + d2×22 + ...

Example #1.SEE,

Find the decimal value of 1110012:

binary number: 1 1 1 0 0 1

power of 2: 25 24 23 22 21 20

1110012 = 1⋅25+1⋅24+1⋅23+0⋅22+0⋅21+1⋅20 = 5710

Explanation:

YOU WILL LEARN MORE IN HIGHER CLASSES.

Implement the frame replacement algorithm for virtual memory
For this task, you need to perform the simulation of page replacement algorithms. Create a Java program which allows the user to specify:
the total of frames currently exist in memory (F),
the total of page requests (N) to be processed,
the list or sequence of N page requests involved,
For example, if N is 10, user must input a list of 10 values (ranging between 0 to TP-1) as the request sequence.
Optionally you may also get additional input,
the total of pages (TP)
This input is optional for your program/work. It only be used to verify that each of the page number given in the request list is valid or invalid. Valid page number should be within the range 0, .. , TP-1. Page number outside the range is invalid.
Then use the input data to calculate the number of page faults produced by each of the following page replacement algorithms:
First-in-first-out (FIFO) – the candidate that is the first one that entered a frame
Least-recently-used (LRU) –the candidate that is the least referred / demanded
Optimal – the candidate is based on future reference where the page will be the least immediately referred / demanded.

Answers

To implement the frame replacement algorithm for virtual memory, you can create a Java program that allows the user to specify the total number of frames in memory (F), the total number of page requests (N), and the sequence of page requests.

Optionally, you can also ask for the total number of pages (TP) to validate the page numbers in the request list. Using this input data, you can calculate the number of page faults for each of the three page replacement algorithms: First-in-first-out (FIFO), Least-recently-used (LRU), and Optimal.

To implement the frame replacement algorithm, you can start by taking input from the user for the total number of frames (F), the total number of page requests (N), and the sequence of page requests. Optionally, you can also ask for the total number of pages (TP) to validate the page numbers in the request list.

Next, you can implement the FIFO algorithm by maintaining a queue to track the order in which the pages are loaded into the frames. Whenever a page fault occurs, i.e., a requested page is not present in any frame, you can remove the page at the front of the queue and load the new page at the rear.

For the LRU algorithm, you can use a data structure, such as a linked list or a priority queue, to keep track of the most recently used pages. Whenever a page fault occurs, you can remove the least recently used page from the data structure and load the new page.

For the Optimal algorithm, you need to predict the future references of the pages. This can be done by analyzing the remaining page requests in the sequence. Whenever a page fault occurs, you can replace the page that will be referenced farthest in the future.

After processing all the page requests, you can calculate and display the number of page faults for each algorithm. The page fault occurs when a requested page is not present in any of the frames and needs to be loaded from the disk into memory.

By implementing these steps, you can simulate the frame replacement algorithm for virtual memory using the FIFO, LRU, and Optimal page replacement algorithms in your Java program.

To learn more about virtual memory click here:

brainly.com/question/30756270

#SPJ11

In Python, a function is _____.

a group of instructions that can be used to organize a program or perform a repeated task

a value that can be passed back to the calling part of a program

a formula that pairs each x-value with a unique y-value

a value that can be passed

Answers

Answer:

a group of instructions that can be used to organize a program or perform a repeated task

Explanation:

A function is a group of commands that can be called upon with extra parameters if needed.

Example:

def foo():                          #defining this function and naming it foo

    return True                 #what is performed when foo is called on

if foo() == True:               #foo() is calling on a function named foo

   print('yes')

7) Program: (pointer usage)(5') void mysteryl( char *sl, const char *s2); /* prototype */ int main(void) ( char string1 [80]; /* create char array */ char string2 [80]; /* create char array */ printf

Answers

This program is about a mystery function which takes in two strings as input, and the purpose of this function is to take string1 and insert string2 in the middle of it.

The code will look like this:

void mysteryl(char *s1, const char *s2){  int i, j;

 int len;  int len2;  len = strlen(s1);

 len2 = strlen(s2);  i = len / 2;  j = 0;

 while (j < len2) {    s1[i] = s2[j];    i++;    j++;  }}

int main() {  char string1[80];  char string2[80];  

printf("Enter a string less than 80 characters: ");  

gets(string1);  

printf("Enter another string less than 80 characters: ");  

gets(string2);  

mysteryl(string1, string2);  

printf("The modified string is: %s", string1);  return 0; }

This program prompts the user to input two strings, with a maximum of 80 characters per string, using the gets() function. The mysteryl function is then called to take the two strings as input and combine them.

The program prints the final result after the mysteryl function has been executed. If the program is executed with the strings "hello" and "world", the output will be "helloworld".

To know more about function visit :

https://brainly.com/question/30721594

#SPJ11

Which of the following options best matches the definition 'Variables or conditions which are essential for an organisation's success'?
a. Key performance indicators
b. Strategic objectives
c. Critical success factors
d. Mission statements

Answers

The option that best matches the definition "Variables or conditions which are essential for an organization's success" is the third option, which is Critical success factors.

This is option C.

Key performance indicators (KPIs) are sets of quantifiable measurements used to measure the success of a business in achieving its strategic and operational objectives. Strategic objectives, on the other hand, are long-term goals that help an organization achieve its mission and vision.

Mission statements are brief statements that define an organization's purpose and core values. Critical success factors (CSFs), on the other hand, are specific variables or conditions that are required for an organization to achieve its strategic objectives and, as a result, be successful.

CSFs are frequently used in project management, where they assist project managers in determining the most critical components of a project. They can also be used in business strategy to help businesses recognize what is required to succeed in their markets.

Learn more about mission statement at

https://brainly.com/question/13408087

#SPJ11

Once a business determines that change needs to occur, what ahould the
business create?
A. Business operation
B. Business analysis
C. Business model
D. Business strategy

Answers

Answer:

D. Business strategy

Explanation:

Kono Dio Da!!

open systems are less sensitive to environmental resources and possibilities, and closed systems are more responsive and adaptive to environmental changes.T/F

Answers

The statement "open systems are less sensitive to environmental resources and possibilities, and closed systems are more responsive and adaptive to environmental changes." is false because open systems are more sensitive to environmental resources and possibilities, and they are more responsive and adaptive to environmental changes.

An open system refers to a system that interacts and exchanges information, energy, or resources with its external environment. Open systems have the ability to take inputs from the environment, process them, and produce outputs. They are characterized by their flexibility, adaptability, and capacity to respond to changes in the environment. Open systems actively seek feedback from the environment and adjust their behaviors accordingly.

On the other hand, closed systems are self-contained and do not interact extensively with their environment. They have limited or no interaction with external factors, and their operations are mostly self-regulated. Closed systems tend to have fixed structures, processes, and limited capacity to adapt to environmental changes.

In summary, open systems are more sensitive to environmental resources and possibilities because they actively engage with the external environment and incorporate feedback. They have the ability to adapt, learn, and evolve based on the inputs they receive. Closed systems, being self-contained and less interactive with the environment, have limited responsiveness and adaptability to changes in the external context.

Learn more about open systems:

https://brainly.com/question/28891854

#SPJ11

(25 POINTS)Which statement best reflects the importance of following safety guidelines?

Workplace injuries can result in losses to an organization’s profits.

OSHA responds to complaints of unsafe work environments, and can fine or take negligent employers to court.

Every year, thousands of people die as a result of workplace injuries.

Using equipment safely is faster and makes work more efficient.

Answers

Answer:

I think, Every year, thousands of people die as a result of workplace injuries.

Answer:

B

Explanation:

how does the accenture mynav green cloud advisor integrate sustainability when transitioning client data centers to the cloud?

Answers

The accenture mynav green cloud advisor integrates sustainability when transitioning client data centers to the cloud by estimating carbon emissions reduction and sustainability index improvement.

Cloud computing refers to the availability of computer system resources without the user directly managing them. In this case, the network of remote servers that are hosted on the internet helps in the storage and the management of the data.

Mynav Green Cloud Advisor is vital as it helps companies design cloud solutions that can be used in the reduction of carbon emissions.

In conclusion, accenture mynav green cloud advisor integrate sustainability as cloud solutions are vital to businesses.

Read related link on:

https://brainly.com/question/2662575

Which will cause the longest execution of a sequential search looking for a value in an array of integers

Answers

Sequential search is an algorithm used in searching for an item in an unordered list of items. The algorithm works by starting at the beginning of the list and comparing each item with the target value until a match is found or the end of the list is reached. In a worst-case scenario, the longest execution of a sequential search for a value in an array of integers would occur if the value is not in the array.

If the value is not in the array, the sequential search algorithm will have to compare the target value with each element in the array until it reaches the end of the array. This means that the algorithm will have to perform n comparisons, where n is the number of elements in the array. Therefore, the longest execution of a sequential search for a value in an array of integers occurs when the target value is not in the array, and the algorithm has to compare the target value with each element in the array.

In conclusion, the longest execution of a sequential search for a value in an array of integers would occur if the value is not in the array. The algorithm would have to perform n comparisons, where n is the number of elements in the array, to reach the end of the array. Therefore, if the target value is not in the array, the sequential search algorithm's longest execution time is proportional to the size of the array.

To know more about array visit:
https://brainly.com/question/13261246
#SPJ11

refer to the exhibit. a network administrator needs to configure router-on-a-stick for the networks that are shown. how many subinterfaces will have to be created on the router if each vlan that is shown is to be routed and each vlan has its own subinterface?

Answers

The PC, printer, IP phone, and switch control VLAN are all on different VLANs based on the IP addresses and masks provided.

Four sub interfaces on the router are necessary in this circumstance. Finally, we set sub-interfaces to begin our router configuration. We set up sub-interfaces for each VLAN on the port that connects the router and the switch. Additionally, we configured 802.1Q encapsulation using the sub-VLAN interface's number. This suggests that switching between different VLANs can be accomplished using a router and switch with a single physical interface. Multi-vendor VLAN support is provided by the IEEE 802.1Q (Dot1q) protocol, which establishes a system of VLAN tagging for Ethernet frames.

Learn more about Ethernet here-

https://brainly.com/question/13441312

#SPJ4

what is the most popular web server application? group of answer choices microsoft internet information services nginx lighttpd apache

Answers

Option D is correct. Apache is the most popular web server application.

A web server is software and hardware that responds to client requests sent over the World Wide Web using Hypertext Transfer Protocol (HTTP) and other protocols. A web server's main task is to display the content of a website by storing, processing, and sending web pages to users. A free and open-source web server called Apache HTTP Server delivers web information over the Internet. Often referred to as Apache, shortly after its creation it surpassed all other HTTP clients as the most used HTTP client on the Internet.

Learn more about Server here-

https://brainly.com/question/7007432

#SPJ4

a system uses simple/pure paging and tlb each memory access requires 100ns tlb access requires 5ns tlb hit rate is 90%. work out the actual speedup because of the tlb? speedup

Answers

Each process in the operating system will have its own page table, which will contain Page Table Entry (Memory Management Technique: Paging) (PTE).

What is Translation Lookaside Buffer (TLB) in Paging?The frame number (the address in main memory to which we want to refer) and a few other essential bits (such as the valid/invalid bit, dirty bit, protection bit, etc.) will be included in this PTE. This page table entry (PTE) will indicate where the actual page is located in main memory.The issue now is where to put the page table such that overall access time (or reference time) will be less.Fast main memory content access using a CPU-generated address (i.e., a logical or virtual address) presented a challenge at first. Since registers are high-speed memory, some people at first considered utilizing them to store page tables since access times would be shorter.The concept employed here is to store the page table entries in registers, so that when a request is created from the CPU (virtual address), it will be matched to the correct page number of the page table, which will then reveal where in the main memory the corresponding page is located.Everything appears to be in order, but the issue is that the register size is small (in practice, it can only hold a maximum of 0.5k to 1k page table entries) and the process size may be large, so the required page table will also likely be large (let's say this page table contains 1M entries). As a result, the registers might not be able to hold all of the PTEs of the page table. Therefore, this strategy is not workable.

The Complete Question is Page Table Entry.

To Learn more About Page Table Entry refer to:

https://brainly.com/question/15409133

#SPJ4

Who is known as the "father of computing"?
Mention his contributions?​

Answers

Answer: Charles Babbage

Explanation:

He was named father of computing because of the invention of the Analytical Engine in 1837. This machine contained an integrated memory, a ALU (arithmetic logic unit) and a basic flow control. This machine gave birth to the notion of computer. Unfortunately, the machine wasn't built when Babbage was alive due to some funding issues.

Who is known as the "father of computing"?Mention his contributions?

Answer:

Charles Babbage is known as the father of computer...

Who is known as the "father of computing"?Mention his contributions?

Pulse width modulation technique for controlling servos. Actual pulse to control the limited rotation movement and position of servo. Pulse width and repeating frequencies used. Give detailed brief and draw regulating pulse diagram to illustrate the controlling servos.

Answers

Pulse width modulation (PWM) is a technique used to control servos by varying the width of electrical pulses. The duration of the pulses determines the position and limited rotation movement of the servo. The pulse width and repeating frequencies are key parameters in this control method.

PWM is a commonly used technique in servo control systems. It involves generating a series of electrical pulses, where the duration of each pulse corresponds to a specific position or movement of the servo. The width of the pulses determines the angle at which the servo shaft rotates or maintains its position. By adjusting the pulse width, the servo can be controlled to move to a desired position or follow a specific trajectory.

The pulse width is typically defined by the duty cycle, which represents the ratio of pulse duration to the total period of the pulse. A higher duty cycle corresponds to a wider pulse and a larger movement or angle of the servo, while a lower duty cycle results in a narrower pulse and a smaller movement or angle. The repeating frequency of the pulses determines the speed at which the servo responds to the control signals.

To illustrate the controlling of servos using PWM, a regulating pulse diagram can be created. This diagram shows a series of pulses with varying widths and repeating frequencies. Each pulse represents a specific control signal sent to the servo, indicating the desired position or limited rotation movement. By analyzing the pulse diagram, it becomes easier to understand how the pulse width and repeating frequencies affect the servo's behavior and response.

Learn more about Pulse width modulation

brainly.com/question/29358007

#SPJ11

Name two sensors which would be used in a burglar alarm system

Answers

kind of sensors used in a burglar alarm system:-Passive Infrared SensorsTomographic Motion Detector.Microwave Detectors.Ultrasonic Detectors.Photoelectric Beams.Glass Break Detectors.

1. Passive Infrared Sensor

This sensors type is passive in a way that it doesn't radiate its own energy. Instead, it detects the infrared light radiating from objects. This way, it can detect whenever there's a human or another living being in its field of view.

2. Photoelectric Beams

This is also another type of motion detector, but it doesn't work similarly to the others. For one, it doesn't have a coverage area. It only forms a fence, which triggers the alarm if broken.

It consists of two separate parts that form a sort of a fence made of IR beams. When someone steps into the beams, between the two parts, they trigger the alarm.

How would you write out the Python code to PRINT the answer to 5 times 2?

Answers

I dont this this is the place to ask

where would a water regulating valve that is controlling head pressure be installed?

Answers

A water regulating valve that is controlling head pressure would typically be installed on the discharge side of a pump or within the piping system.

In a water distribution system, the regulating valve is usually placed downstream of the pump or within the piping network where it can control the flow and pressure of the water. By installing the valve on the discharge side of the pump, it can regulate the pressure of the water leaving the pump and entering the distribution system. This allows for maintaining a consistent and desired level of head pressure throughout the system.

The specific location for installing the water regulating valve may vary depending on the design and requirements of the particular system. It is important to consult with a professional or follow the guidelines and specifications provided by the manufacturer to ensure proper installation and effective control of head pressure

To know more about discharge visit:

brainly.com/question/32236747

#SPJ11

the dbmst/f serves as an interface between an application program and the database.

Answers

True. The DBMS serves as an interface between an application program and the database.

The Database Management System (DBMS) acts as a crucial intermediary between an application program and the underlying database. It provides a layer of abstraction that allows application programs to interact with the database without needing to directly access the data storage or manage low-level details of data retrieval and storage.

The DBMS provides a set of programming interfaces, known as Application Programming Interfaces (APIs), which enable application programs to communicate with the database. These APIs provide methods and functions that allow applications to perform various operations such as querying, inserting, updating, and deleting data from the database.

Learn more about DBMS here;

https://brainly.com/question/29756218

#SPJ11

the awk program does not require the programmer to explicitly set up looping structures as does perl. a. true b. false

Answers

a. true

Unlike Perl, awk has built-in looping capabilities that do not require the programmer to explicitly set up looping structures. The main looping mechanism in awk is its pattern-action model, where actions are performed on each input line that matches a specified pattern.

In awk, you can write patterns and associated actions to define what should be done for each input line that matches the pattern. The awk program automatically loops through the input data, applies the patterns, and executes the associated actions for each matching line.

This implicit looping behavior in awk allows programmers to focus on defining patterns and actions without the need for explicit loop constructs. It simplifies the code and makes it more concise, especially for tasks that involve processing text or data line by line.

#SPJ11

Learn more about "awk" : https://brainly.com/question/15074706

In the address http://www.company.com/clients.html, which of the following is the top-level domain?
A) .com
B) company.com
C) www
D) http

Answers

In the address http://www.company.com/clients.html, which of the following is the top-level domain is .com.

Which top level domain among the following is the most popular?

Dot-coms swiftly took over as the top-level domain that people most frequently used as the internet's use and popularity continued to rise. net – Dot-nets, which stand for "network," were created for organizations that engage with network technologies, such as infrastructure providers or internet service providers (ISPs).

Which TLD is the ideal one?

Commercial is the meaning of the dot com. People consider it reputable, trustworthy, and more memorable than other obscure domain extensions, making it one of the greatest TLD domains to utilize. According to a Growth Badger analysis, the.com TLD is the most reliable.

To know more about domain visit:-

https://brainly.com/question/14466182

#SPJ4

In one to three sentences, describe how a digital ink pen could make a task more efficient.

Answers

Answer:

First, digital ink pens will never run out of ink as they do not use ink at all for writing, making it more efficient for the writer to right for longer periods of time. Second, digital ink pens can be used to take notes on any device such as cell phones, tablets, etc.

Explanation:

high-speed internet connection to a dedicated remote storage facility; these facilities contain banks of file servers to offer enormous amounts of storage.

Answers

High-speed internet connections are used to establish a reliable and fast link between local systems and dedicated remote storage facilities. These facilities house banks of file servers that provide extensive storage capacity for data.

To ensure efficient data storage and retrieval, organizations often rely on dedicated remote storage facilities. These facilities are equipped with banks of file servers, which are specialized computers designed for storing and managing large amounts of data.

High-speed internet connections are essential to establish a robust and reliable link between the local systems and the remote storage facility. These connections allow for fast and seamless data transfer between the two locations. The high bandwidth provided by such connections enables quick access to stored files and facilitates efficient backup, synchronization, and data replication processes.

By utilizing high-speed internet connections and the storage capacity of remote facilities, organizations can effectively manage and safeguard their data without the limitations of local storage constraints. This setup is particularly beneficial for businesses and institutions that deal with enormous amounts of data, such as cloud service providers, research organizations, and large-scale enterprises.

Learn more about high-speed internet connections here: brainly.com/question/8152317

#SPJ11

Claire wants to use a conditional statement in JavaScript that provides a block of statement to be executed if the condition is false. Which conditional statement should she use?
A.
while statement
B.
do …..while statement
C.
for statement
D.
if else statement

Answers

C because what she saying doesn’t add up
D.

- If, implies a condition. If ___, then ___ will happen.

Which of the following can still be made if the transistor was never invented?

a) Digital Watch

b) Power Rectifier

Answers

Both a) Digital Watch and b) Power Rectifier can still be made even if the transistor was never invented.While the invention of the transistor revolutionized electronics.

it is important to note that its absence does not render the creation of digital watches or power rectifiers impossible. a) Digital Watch: Digital watches can still be made using alternative electronic components such as vacuum tubes or integrated circuits (ICs) that existed prior to the invention of the transistor. These components can perform the necessary functions of timekeeping, display, and signal processing. b) Power Rectifier: Power rectifiers are devices used to convert alternating current (AC) into direct current (DC). Prior to the transistor era, power rectifiers were commonly built using vacuum tubes and other electronic components like diodes and transformers. These components can still be employed to create power rectifiers, enabling the conversion of AC to DC for various applications.

learn more about Rectifier here :

https://brainly.com/question/25075033

#SPJ11

Which type of section break would you enter if you want to start a new section on the same page?.

Answers

After a continuous section break on the same page, the following section starts. This type of section split is frequently used to change the number of columns without turning to a new page. A new section is introduced on the even-numbered page that follows the section break.

Which four types of section breaks are there?

Result for an image If you wanted to begin a new section on the same page, what kind of section break would you use?

Next page, continuous, even page, and odd page breaks are a few of the numerous types of section breaks. See their respective headings below, which cover each type of page and section break in more detail, for additional information.

To learn more about 'Section break' refer to

https://brainly.com/question/16119258

#SPJ4

do you think it is important for the teacher and your peers to know things about you? why or why not

Answers

Answer:

yes only certain thing lile how old are u where your from and ECT. just don't go in to detail so yes I agree they should

Answer:

Yes for sure.

Explanation:

When you walk into a classroom or join a class online people should know who you are. You will be with them all year most likely and they might seem like strangers now but soon they wont and it is very important for them to know about you. That does not mean that you have to tell them everything but just the most interesting or special things you are willing to share with them.

Other Questions
is 0.121122111222 a repeating or terminating decimal? If so, why? Archie co. purchased a framing machine for $45,000 on january 1, 2018. the machine is expected to have a four-year life, with a residual value of $5,000 at the end of four years. using the sum-of-the-years-digits method, depreciation for 2018 and book value at december 31, 2018, would be:_________. a) $18,000 and $27.000. b) $16,000 and $29,000. c) $16,000 and $24,000 d) $18,000 and $22,000 WHAT IS THE TRUE STATMENTS A scientist set up an experiment in which she planted bean seeds in two groups, A and B. Group A was fed a balanced application of fertilizer as recommended by plant growers. Group B was grown under identical conditions, except additional nitrogen was added. After one month, the group A plants displayed sparse, small leaves whereas Group B produced numerous, large leaves. What was the hypothesis for this experiment? WOUND CARE MAINTENANCE Scenario A: A cross country runner was on his way back from his daily run and he slipped on a rock. The rock ended up slicing the lateral aspect of his RIGHT lower leg from the ankle to the knee causing a deep cut in the middle of the leg. He finishes running to the athletic training room with a lot of blood dripping down his leg and onto the floor. 1. What type of injury is described In continuous type of series, for finding mean, which amongst the following is considered as x variable value?. which of a comprehensive plan elements must include standards for control of population densities? quizlet A CD player and a Nike sneaker together cost $ 444. The price of the CD player is double the price of the sneaker. How much do they each cost ? Find A. Measure of angle AB. Measure arc CEC. Measure of angle CD. Measure of angle DE. Measure of angle ABE the maximum value of the electric field in an electromagnetic wave is 1.5 v/m. what is the maximum value of the magnetic field associated with this wave? Do in 10 minutes Please Help! HELP ASAP! Please & Thanks Ill Thank Your Comment. During the segregation of the duplicated bacterial chromosome, which part of the chromosome moves towards opposite ends of the cell first?. Sales commissions paid to the company's salespeople. a. Direct labor cost b. Direct materials cost c. Manufacturing overhead cost d. Selling cost e. Administrative cost In a snail race, the winning snail traveled 5.85 cm in 3/4 of a minute. How fast was the snail traveling per second? Which word describes a noisy, chaotic situation? omnipotent scandal pandemonium inception Summarize the issues faced by both hispanic americans and native americans during the 1960s. based on your findings, which group had the most to benefit by fighting for what they wanted? A circle has a diameter whose end points are at (-3, -1) and (7, 7). What is the equation of the circle? An abundant type of coal is formed almost entirely from plant material buried during the Carboniferous period. Which plant group was most likely a major contributor to these coal deposits? Write six contributions of Nepal to SAARC. A town has three roads that form an obtuse triangle. James wants to set up a refreshment stand so that the shortest distance from his stand to each road is the same for all three roads. Where should he set up the refreshment stand?A. on the centroidB. on the circimcenterC. on the incenterD. on the median