Did this experiment give accurate results? Why or why not? A plant biologist wants to test the effectiveness of a plant hormone on a certain plant species. She uses 3 seeds from the plant to start her experiment. The seeds are planted the same depth of soil and given the same amount of water and sunlight. She applies 10 mg of hormone to the first plant with 5 mg of hormone grew the fastest and the tallest. She then repeats her experiment 2 more times.

Answers

Answer 1

Answer:

Yes

Explanation:

There was only one independent variable and the experiment was repeated twice for 3 trials total.  If she got the same results each time, the experiment gave accurate results.


Related Questions

A milk carton can hold 3.78 L of milk each morning a dairy farm ships cartons of milk to local grocery store the cost of producing one liter of milk is $0.38 and the profit of each carton of milk is $0.27 Draw a flow chart of the program that does the following:
a) promise to use it to enter the total amount of no produce in the morning
B)Output the number of milk cartons need to hold milk (round answer to the nearest integer)
C)output the cost of producing milk
D)Output the profit of producing milk

Answers

Using knowledge in computational language in C++ it is possible to write code that draw a flow chart of the program that producing one liter of milk is $0.38 and the profit of each carton of milk is $0.27.

Writting the code:

#include <iostream>

#include <iomanip>

using namespace std;

int main(){

   double milkProduced, cartonsRequired;

   

   const double cartonSize = 3.78;

   const double productionCost = 0.38;

   const double cartonProfit = 0.27;

   

   cout << "How much milk did you produce? ";

   cin >> milkProduced;

   

   cartonsRequired = milkProduced / cartonSize;

   

   cout << fixed << showpoint << setprecision(2);

   

   cout << "That is going to require " << static_cast<int>(cartonsRequired) << " cartons" << endl;

   cout << "Total Cost to Produce: $" << cartonsRequired * productionCost << endl;

   cout << "Total Profit: $" << cartonsRequired * cartonProfit << endl;

   

   

   return 0;

}

See more about C++ at brainly.com/question/19705654

#SPJ1

You're setting up a test environment that involves two subnets with three Windows Server 2016 servers on each subnet. The servers are running broadcast-based network services, such as DHCP. The host computer is attached to the production network, so you must prevent any conflicts. You want the two subnets to be able to communicate with each other. The test environment consists of a single Windows Server 2016 machine running Hyper-V. Describe how you plan to configure the virtual network.

Answers

Create a virtual switch in Hyper-V Manager. Launch the Hyper-V Manager, then select the server from the left pane or click "Connect to Server" in the right pane.

What is DHCP?The Dynamic Host Configuration Protocol (DHCP) is a client/server protocol that automatically assigns an IP address and other configuration information to an Internet Protocol (IP) host, such as the subnet mask and default gateway. Jul 29, 2021 DHCP (Dynamic Host Configuration Protocol) is a network management protocol that assigns an Internet Protocol (IP) address to any device or node on a network so that they can communicate via IP. The Dynamic Host Configuration Protocol (DHCP) is a network protocol that allows a server to automatically assign an IP address to a computer from a predefined range of numbers (called a scope) that has been configured for a specific network.

To learn more about DHCP, refer to:

https://brainly.com/question/14234787

#SPJ1

Digitizing Playing Cards
By yourself or with a partner, you will design an encoding system—to encode a deck of playing cards.

Let's think about the different characteristics of playing cards: rank (A-K), suit (Spades, Clubs, Hearts, Diamonds), color (Red, Black), etc.

Printable Playing CardsLinks to an external site.

Given your chosen characteristics, develop a “code” of zeroes and ones that defines each card.

Choose enough defining characteristics of the playing cards so that a combination of them is enough to differentiate each from the other.

Each card in a 52-card deck (no jokers) should be defined in your code.
And no code sequence should refer to more than one card.
It is not necessary for all codes to have a corresponding card.
Test your code alone or with a partner to ensure the guidelines are followed.

Your code. They may use any number of formats, not limited to written rules, a table, or descriptions with examples.
A discussion of whether you chose variable- or fixed-length encoding and what the implications are for robustness and/or efficiency. https://files.projectstem.org/CSP/CSP_Additional_Course_Materials/PlayingCards_Printables.pdf (card deck)

Answers

       Playing cards are described as one of a set of 24 to 78 small rectangular pieces of cardboard or plastic that are imprinted on one side to indicate their rank and suit and are used in a variety of games.

Do designs for playing cards have a copyright?

       The designs on the front of the cards and other graphic artwork may be protected as visual arts. However, playing cards and card games only receive a limited amount of copyright protection, regardless of whether the work contains instructions or a graphic design.

      Any graphic art, including the images on the card faces, may be protected as works of visual art. The level of copyright protection given to playing cards and card games is constrained, regardless of whether the work contains instructions or a graphic design.

    Talcum Powder is used Pasteboard cards should be cleaned by placing them in a plastic bag with a few teaspoons of flour, talc, or cornstarch. Pull the cards out and clean them off with a paper towel after giving the bag a good shake to ensure that all the cards are covered.

     Playing cards may be quickly and precisely printed in large quantities using a web press, a sort of printing machine.

To Learn more About  Playing cards, Refer:

https://brainly.com/question/28388405

#SPJ1

How did tribes profit most from cattle drives that passed through their land?
A.
by successfully collecting taxes from every drover who used their lands
B.
by buying cattle from ranchers to keep for themselves
C.
by selling cattle that would be taken to Texas ranches
D.
by leasing grazing land to ranchers and drovers from Texas

Answers

The way that the tribes profit most from cattle drives that passed through their land is option D. By leasing grazing land to ranchers and drovers from Texas.

How did Native Americans gain from the long cattle drives?

When Oklahoma became a state in 1907, the reservation system there was essentially abolished. In Indian Territory, cattle were and are the dominant economic driver.

Tolls on moving livestock, exporting their own animals, and leasing their territory for grazing were all sources of income for the tribes.

There were several cattle drives between 1867 and 1893. Cattle drives were conducted to supply the demand for beef in the east and to provide the cattlemen with a means of livelihood after the Civil War when the great cities in the northeast lacked livestock.

Lastly, Abolishing Cattle Drives: Soon after the Civil War, it began, and after the railroads reached Texas, it came to an end.

Learn more about cattle drives from

https://brainly.com/question/16118067
#SPJ1

You have two Windows Server 2016 computers with the Hyper-V role installed. Both computers have two hard drives, one for the system volume and the other for data. One server, HyperVTest, is going to be used mainly for testing and what-if scenarios, and its data drive is 250 GB. You estimate that you might have 8 or 10 VMs configured on HyperVTest with two or three running at the same time. Each test VM has disk requirements ranging from about 30 GB to 50 GB. The other server, HyperVApp, runs in the data center with production VMs installed. Its data drive is 500 GB. You expect two VMs to run on HyperVApp, each needing about 150 GB to 200 GB of disk space. Both are expected to run fairly disk-intensive applications. Given this environment, describe how you would configure the virtual disks for the VMs on both servers.

Answers

The virtual disk configuration for the VMs on both servers in this environment is shown below.

In the Hyper V Test,

Since there will be two or three virtual machines running at once, each of which needs between 30 and 50 GB of the total 250 GB of disk space available,

What is virtual disks?

Setting up 5 virtual disks, each 50 GB in size.

2 VMs each have a 50 GB virtual drive assigned to them.

The above setup was chosen because running three VMs with various virtual disks assigned to them will not pose an issue when two or three VMs are running concurrently and sharing the same virtual disk. This is because the applications are disk-intensive.

To learn more about virtual disks refer to:

https://brainly.com/question/28851994

#SPJ1

Given this environment, the virtual disk configuration for the VMs on both servers is shown below. Because two or three VMs will be running at the same time, and each VM has disk requirements ranging from 30 to 50 GB of total disk space of 250 GB.

What is Hyper V Test?While there are several methods for testing new virtual machine updates, Hyper-V allows desktop administrators to add multiple virtual machines to a single desktop and run tests. The Hyper-V virtualization technology is included in many versions of Windows 10. Hyper-V allows virtualized computer systems to run on top of a physical host. These virtualized systems can be used and managed in the same way that physical computer systems can, despite the fact that they exist in a virtualized and isolated environment. To monitor the utilization of a processor, memory, interface, physical disk, and other hardware, use Performance Monitor (perfmon) on a Hyper-V host and the appropriate counters. On Windows systems, the perfmon utility is widely used for performance troubleshooting.

Therefore,

Configuration:

Creating 5 Virtual disks of 50 GB each.

1 virtual disk of 50 GB is assigned to 2 VM.

The above configuration is because since two or three VM will be running at the same time and using the same virtual disk will cause a problem since the applications are disk intensive, running three VMs with different virtual disks assigned to them, will not cause a problem.

For Hyper V App,

Two VM will run at the same time, and the disk requirement is 150 - 200 GB of 500 GB total disk space.

Configuration:

Creating 2 virtual disks of 200 GB each with dynamic Extension and assigning each one to a single VM will do the trick.

Since only two VMs are run here, the disk space can be separated.

To learn more about Hyper V Test, refer to:

https://brainly.com/question/14005847

#SPJ1

Give three examples of the following types of data?
Give three examples for each category in the software domain ?

CCDI :)??

Answers

An example of transactional data are:

Sales ordersPurchase ordersShipping documents

Its software domain are: Personal  meeting, a telephone call, and a Video call

An example of  financial data are: assets, liabilities, and equity. The software are: CORE Banking, Retail Banking, and Private banking

An example of intellectual property data are: books, music, inventions. The software domain are Patents, trademarks, and copyrights

What types of software are used in the financial industry?

Through sales and marketing tools, data-driven contact management, and workflow automation, customer relationship management (CRM) software assists financial services organizations in fostering new relationships and maximizing the value of existing customers.

You can see how your consumers are utilizing your website to complete a transaction by using transaction management software. It may demonstrate both how each website element functions on its own and as a part of the overall technological infrastructure.

Note that Information that is gathered from transactions is referred to as transactional data. It keeps track of the date and location of the transaction, the time it took place, the price ranges of the goods purchased, the mode of payment used, any discounts applied, and other quantities and characteristics related to the transaction.

Learn more about transactional data  from

https://brainly.com/question/28081430
#SPJ1

Take one action in the next two days to build your network. You can join a club, talk to new people, or serve someone. Write about this action and submit this as your work for the lesson. icon Assignment

Answers

Making connections is crucial since it increases your versatility.You have a support system of people you can turn to when things get tough so they can help you find solutions or in any other way.

What are the advantages of joining a new club?

Support Network - Joining a club or organization can help you develop a support network in addition to helping you make new acquaintances and meet people.Your teammates and friends will be there for you not only during practice but also amid personal difficulties. Working collaboratively inside a group, between groups, between communities, or between villages is known as network building.One method of creating a network is by forming a group. Attending events and conferences and developing connections with other attendees and industry speakers is one of the finest methods to build a strong network.In fact, the framework of many networking events and conferences encourages networking and connection opportunities. Personal networking is the process of establishing connections with organizations or individuals that share our interests.Relationship growth often takes place at one of the three levels listed below:Networks for professionals.Neighborhood networks.Personal networks. Reaching out is part of an active communication process that will help you learn more about the other person's interests, needs, viewpoints, and contacts.It is a life skill that needs to be actively handled in order to preserve or, more importantly, to advance a prosperous profession. various network types.PAN (personal area network), LAN (local area network), MAN (metropolitan area network), and WAN (wide area network) are the different types of networks.

To learn more about network refer

https://brainly.com/question/28041042

#SPJ1    

plsssssss helpppppp meeee with thissssss

Answers

Answer:

1-- b

2--c

3--b

Hope It Helps !!

Write a code in python that guesses a hardcoded answer and keeps on asking the user until the user gets the answer correct. The cmputer should be telling the user if the number they are guessing is too low or too high.

Answers

import random

#You can change the range.

answer = random.randint(1,1000)

counter = 0

while(True):

   guess = int(input("Make a guess: "))

   message = "Too high!" if guess>answer else "Too low!" if guess<answer else "You won!"

   print(message)

   if(message=="You won!"):

       print("It took",counter,"times.")

       break

   else:

       counter+=1

Other Questions
1 ) At a local department store, jeans have been reduced to $5. This price is at 20% of theoriginal price for jeans. Given this, what was the original price of the jeans? Roundyour answer to the nearest whole number if necessary. If a1 =5 and an = 2a n-1 + 5 then find the value of a4 Tom's Bakery recently spent a total of $800 on new equipment, and their average hourlyoperating costs are $10. Their average hourly receipts are $90. The bakery will soon makeback the amount it invested in equipment. What would the total expenses and receipts bothequal?Write a system of equations, graph them, and type the solutionTimelapsedPAUD1.000Smarts.com0300600Dollars (9)400200.103040HoursCESreceiptdollars Complete the explanation to identify the set of numbers that best describes each situation.The change will be whole dollar amount which can be negative, zero, or positive. Thus the change willbe (an) ____[(a)rational, (b)integer, (c)real, (d)irrational] number. Questionis undefined. If there's more than one value, list them9a - 11Determine the value(s) for which the rational expression-a - 9separated by a comma, e.g. a = 2,3.h A regular hexagon has a radius of 20cm. Find the lengths of the apothem and a side of the hexagon. PLEASE I NEED IT SOON The point (5, 3) has an image of (2, -1) under a translation of left 3 and down 4 units. Which sequence of transformations produces the same image? the question is really 3(x-8) Tanisha and her friends were playing a card game where the smallest number wins. Below is their scorecard.Tanisha 15Tyrell 18Carlos 12Samantha 9Who won the game?TanishaSamanthaCarlosTyrell For each pair of statements choose the one that is true ABC or D Which historical event most directly contributed to the development of the cell theory?A The discovery and classification of thousands of species of organismsB The development of microscopes and higher powered lensesC The discovery that DNA is the genetic materialDThe development of theories of natural selection on evolution of organisms Como se calcula la hipotenusa de un tringulo You are a city event planner and the annual Harvest Festival will be next monthYou are in charge of picking a venue and you estimate that each personattending will need 15 square feet of space to stand. The space you are hopingto use has measures of 400 feet wide and 300 feet long Will this space be ableto fit 7,000 people? solve the system using the subsition method if there is no solution put no solution if there is infinite solutions put infiniteB= 5c + 9B= -4c -9 Solve the problem as fast as you can its not a timed assessment or test what is 3x + (4y - 6y) PLEASE SOMEONE HELP ME O NEED THIS AS SOON AS POSSIBLE ITS FOR MY HOMEWORK AND ITS DUE TOMORROW The function h is defined by Find h(x + 4) . h(x) = (3 + 2x)/(- 2 + x) 4. If JKLM is a rhombus, MK = 30, NL = 13, and m_MKL = 41, find each measure below. For a particular event, 828 tickets were sold for a total of $6279. If students paid $6 per ticket and non-students paid $9 per ticket, how many student tickets were sold?