when a plant responds to changes in the length of day by flowering during certain seasons,it is called​

Answers

Answer 1

Answer:

It occurs in plants and animals. Photoperiodism can also be defined as the developmental responses of plants to the relative lengths of light and dark periods. They are classified under three groups according to the photoperiods: short-day plants, long-day plants, and day-neutral plants.


Related Questions

20 points: What is the sound mix?

the addition of any

A sound that does not

originate on screen but is added for
effect
B. the gradual and smooth transition from one shape or expression to another
the type of computer editing that allows dragging and dropping clips of video or
audio, with changes and effects being easy to apply
C.the process of adding all the sound elements into one piece with the right
volume and balance

2. With the changing of mouth shapes, no other parts of the face will move or show
expression during speech.
True
False

3. The W & Q phoneme causes the most pursed mouth shape, almost closed, with
sometimes just a tad of the lower teeth visible.
True
False

What type of artist records sounds in sync with the activity on the screen using
props in a studio?

creative artist
Foley artist
destructive artist
phoneme artist

What type of mic has a very directional pickup pattern that records just what it is
pointed at, filtering out all background noise and is sometimes known as a shotgun
mic?

preferential mic
super- or hyper-cardioid mic
front-end mic
omnidirectional mic

Answers

B because it just right

The material (text, pictures) to be put into a document is called________________

Please help me

ME ARMY HALPPP!

Answers

Answer:

Inline (my guess)

Hope this may help u

Brendan needs to edit all the slides in a presentation by adding a company logo and a header and footer. Which is
the easiest method for doing this?
Edit the Slide Master.
Edit the Notes Master.
Use the Format Painter option.
Creating an additional slide layout.

ITS C

Answers

Answer:

should be slide master

Explanation:

computers

Rebbeca has finished with the research and outline portion of her slide presentation. Now, the next logical step is to begin working on what part of her slide?

Answers

Answer:

The next step is creating the layout and template style

Explanation:

As we know that the power point presentation is used for preparing the slides  i.e. easy for the company to describe them by adding the images, videos with sounds.

As in the situation it is given that the Rebbeca completed with the portion of the research and outline now the next and logical step would be that she could create the layout and the style of the template so that it looks attractive to the audience

Therefore the above represents the answer  

You wrote a list of steps the user will take to perform a task. You have created a

Answers

Answer:

You created an algorithm

Explanation:

The question would be better answered if there are options. Since there is none, I'll answer on a general term.

One answer that fits the description in the question is an algorithm. When you write an algorithm, you have written a guide or a step to achieve/complete a task.

Take for instance, you wrote step by step on how to use a microwave or for a user to operate a computer or for whatever instruction it might be; what you have done is that you have written an algorithm.

This is then further divided into two;

The instructions could be in form of (1) a flowchart or (2) a pseudocode

Irrespective of (1) & (2), what you've created is an algorithm.

Write a program that takes a single integer input from the user and stores it in a variable. Your program should increase the value of this variable by one three times, printing "number is now " followed by its value each time, then decrease it by one three times, again printing "number is now " and the value each time

Answers

Answer:

Question is answered using python:

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

for i in range(3):

    num = num+1

    print("Number is now "+str(num))

for i in range(3):

    num = num-1

    print("Number is now "+str(num))

Explanation:

This line prompts user for input

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

The following iterates from 1 to 3

for i in range(3):

This increments user input each time

    num = num+1

This prints the value of num after increment

    print("Number is now "+str(num))

The following iterates from 1 to 3

for i in range(3):

This decrements the value of num

    num = num-1

This prints the value of num after decrement

    print("Number is now "+str(num))

HELLLLLLLLLLLLLLLLLLLLP PLSSSSSSSSSSS HELLLLLLLLLP
Which of the following is an example of a Boolean Operator?
A. HTML
B. SEO
C.
D. BUT

Answers

Answer:

i think it is c. whatever that is.

Explanation:

because its not any of those. D. is exceptional tho

hope this helps!  :)

According to Albert Einstein, our very existence is inextricably linked to bees - he is reputed to have said: "If the bee disappears off the surface of the globe, then man would only have four years of life left."
a.
Humans only have 4 years left to live.
c.
Human existence is dependent on bees.
b.
Bees are dependent on human existence
d.
None of the above

Answers

i’m pretty sure it’s c because they r the most important pollinator of crops
C (useless words here)

Why won't my Brainly let me make an account? I have shut my computer down, closed the tab, and opened it, I have tried EVERYTHING!!!HELP PLZ!!

Answers

Explanation:

You may try opening the Brainly website using your browser's incognito mode. In other words,

Go to the Brainly website on Incognito mode > click Join and then follow the process to create an account.

However, if the issue persists you may then click the Contact Us button on the Homepage of the website and fill the accompanying form to send in your complaints.

What command activates the Analyze contextual tab to appear?
O inserting a table
inserting a Pivot Table
altering a chart
inserting a chart

Edgunuity?

Answers

Answer: inserting a PivotTable

Explanation:

Answer:

inserting a pivot table

Explanation:

which task should happen during the planning stage of a project

A. reflect on the project outcome
B. prevent set backs
C. determine budget
D. reschedule to account for project update ​

Answers

Answer:

c

Explanation:

the planning stages is one of the first stages of a project. this means that you would be determining parts of the project not revising or recounting. You also reflect on projects after they are completed

Answer:

prevent set-backs

Explanation:

some others can be project initiation, project planning,  project execution, project monitoring and control, and project closure.  Hope it helps you! If it does it would be appreciated to be marked brainliest

Can somebody help me and make a code for this in PYTHON, please? I would be very thankful!
It is estimated that China on July 1, 2019. had 1,420,062,022 inhabitants, and India 1,368,737,513. The population in China increases by 0.35% every year, and in India by 1.08%. After how many years will India surpass China in terms of population, assuming that the annual population growth in neither of these two countries will change?
I think it should be used command FOR...

Answers

Code:

population_china = 1420062022

population_india = 1368737513

years = 0

while population_china >= population_india:

   population_china *= 1.0035

   population_india *= 1.0108

   years += 1

print(years)

Output:

6

Explanation:

Using a while loop would probably be of greater use than a for loop since we are increasing the population growth of both countries until India's population surpasses China's population (so a condition needs to be set).

Looking at the code, we first set the original population of both countries in their own variables (population_china, population_india). We also set the 'years' variable at 0, which will increase with respect to the yearly population growths of both countries. In the while loop, the condition population_china >= population_india will allow for the variable 'years' to increase until population_india surpasses population_china. Once India's population is larger than China's population, we are left with the number of years it takes for India's population to surpass China's population, which is 6 years.

Hope this helps :)

Does anyone know where i could watch the move
“little house: look back to yesterday” i cant find it ANYWHERE!!!!

Answers

Answer:

AMC Rosemary Square 12 and Apple The Gardens Mall and Muvico Theaters Automatic Ticketing and Rosemary Square and Apple Wellington Green and Walmart Supercenter

Explanation:

Why it is not recommended to add sound effect on slide transition? Write at least two reasons.​

Answers

Answer:

It could make the viewers of the slide confus.

It could make the viewers not think your dont carde.

Explanation:

What does the acronym PDF stand for? per deal form payment demanded frequently present daily form portable document format

Answers

Answer:

Portable document format

Explanation:

I use it a lot to download files, it's a good safe way to download. It's used to display documents in an electronic form independent of the software, hardware or operating system they are viewed on.

Answer:

portable document format

Explanation:

Using the Caesar cipher, "HELLO" is encrypted to "OLSSV" by applying a shift of 7. The number 7 is considered the __________

Answers

Answer:

The offset

Explanation:

In the question, we understand that the original text is HELLO and the encrypted text is OLSSV.

It should be noted that O replaced H, L replaced E, S replaced L and V replacement O.

This is made possible by a term refered to as offset.

The offset is used to determine the character that will replace another when it is encrypted.

7 characters after H is O; this is same for every other characters in the text.

The example given represents a simple shift cipher encryption with each letter in the original text shifted by a fixed value. Hence, the shift value of 7 used in the cipher given is called the key.

Each alphabet on the original text, HELLO is shifted by the key 7 to produce :

H + 7 alphabets gives OE + 7 alphabets gives LL + 7 alphabets gives SL + 7 alphabets gives SO + 7 alphabets gives V

This produces the encryption OLSSV, hence, with the shift of 7 known the encryption letters are each reversed by 7 to obtain the actual phrase 'HELLO'.

LEARN more :https://brainly.com/question/20504501

8.
A customer wants to use the computer only to send emails to family members. Is a fast processor
required? Why or why not?

Answers

Answer:

yes

Explanation:

the faster the processor the better the computer loads things and works faster, there's little to no latency depending on the wifi

A customer wants to use the computer only to send emails to family members. Is the required the fast processor as well as fast internet connection was to send the easily.

What is customer?

The term customer refers to the purchased the goods and the services, The customer are to fulfill the needs and the wants as the exchange of the money. The customer is the receiving the information of the product with the help of customer.

The term email refers to the part of the communication. The email are the medium of the communication as the mostly used to the marketing and the information purposes. The email are the official purposes are the used. A person was to send the email to the family was the need to the fast processor as well as the need of the internet to share the email are quickly delivered.

As a result, the email was to share the quickly with the help of the internet and the fast processor.

Learn more about on email, here:

https://brainly.com/question/14666241

#SPJ2

Match the component to its function. resistor inductor capacitor battery transistor This component stores a temporary charge. arrowRight This component stores electric energy in the form of a magnetic field. arrowRight This component prevents components from overheating. arrowRight This component produces electricity by converting chemical energy into electric energy. arrowRight The voltage applied to the base can control the current that flows across the emitter and collector. arrowRight

Answers

Answer:

1. Capacitor.

2. Inductor.

3. Resistor.

4. Battery.

5. Transistor.

Explanation:

1. Capacitor: this component stores a temporary charge.  

2. Inductor: this component stores electric energy in the form of a magnetic field.

3. Resistor: this component prevents components from overheating.

4. Battery: this component produces electricity by converting chemical energy into electric energy.

5. Transistor: the voltage applied to the base can control the current that flows across the emitter and collector.

Answer:

He's right you know the person above me.

Explanation:


How can you refer to additional information while giving a presentation?

Answers

The most common way I've seen is to have a slide where you have the additional information. It can be phone numbers, email address, websites, books, anything you want to refer to.
People tend to photograph these slides so make sure the information is error free and that you add you own marketing info to the slide as well.

You have a network that occupies the top floor of a three-story building. The WAN service provider has installed the line for the WAN service in a wiring closet on the main floor. What would you use to relocate the WAN line into a wiring closet on your floor

Answers

Answer:

Demarc Extension.

Explanation:

In this scenario, you have a network that occupies the top floor of a three-story building. The wide area network (WAN) service provider has installed the line for the WAN service in a wiring closet on the main floor.

Hence, you would use the Demarc Extension to relocate the WAN line into a wiring closet on your floor.

A Demarc Extension refers to a cabling channel or transmission path which typically originates from the interface of an internet service provider known as demarcation point to the termination point present at the premises of the end users, usually far from the minimum point of entry (MPOE).

A proprietary software license allows users to install and use the software on any number of computers. install and use the software after agreeing to the terms of the license. inspect, modify, and redistribute the software. copyright and resell the software.

Answers

Answer:

install and use the software after agreeing to the terms of the license.

Explanation:

A software can be defined as a set of executable instructions (codes) or collection of data that is used typically to instruct a computer how to perform a specific task and to solve a particular problem.

Basically, softwares are categorized into two (2) main categories and these are;

I. Open-source software.

II. Proprietary software.

A proprietary software is also known as a closed-source software and it can be defined as any software application or program that has its source code copyrighted and as such cannot be used, modified or distributed without authorization from the software developer. Thus, it is typically published as a commercial software that may be sold, licensed or leased by the software developer (vendor) to the end users with terms and conditions.

Some examples of proprietary software are Microsoft Windows, macOS, Adobe photoshop etc.

Hence, a proprietary software license allows users to install and use the software after agreeing to the terms of the license.

A proprietary software license allows users to install and use the software after agreeing to the terms of the license.

Thus, option (b) is correct.

Users are required to agree to these terms before they can legally install and use the proprietary software. The license agreement may outline specific restrictions, limitations, and permitted usage scenarios.

Installing and using the software on any number of computers: This is not necessarily true for proprietary software.

Inspecting, modifying, and redistributing the software: These activities are typically not allowed under a proprietary software license, as they generally provide limited or no access to the source code and impose restrictions on modifications and redistribution.

Copyrighting and reselling the software: These rights are typically retained by the software's copyright holder and are not granted to users under a proprietary software license.

Therefore, install and use the software after agreeing to the terms of the license.

Thus, option (b) is correct.

Learn more about Software installation here:

https://brainly.com/question/7548929

#SPJ6

The question attached are seems to be incomplete, the complete question is:

A proprietary software license allows users to :

install and use the software on any number of computers.install and use the software after agreeing to the terms of the license.inspect, modify, and redistribute the software.copyright and resell the software.

about IPO cycle with a digram

Answers

Answer:

The IPO Cycle is termed as Input-Processing-Output cycle. A computer receives data as input, processes it, stores it and then produces output. ways. This manipulation is called processing.

21
Drag each tile to the correct box.
Match the top-level domains to the website descriptions
.com
.gov
.mil
.org
a website that sells computer hardware to large organizations
a website operated by the state of California
>
the website of the US Coast Guard
the website of a group of individuals who work toward protecting gray wolves
>
Reset
Next


Answers

Answer:

A website that sells computer hardware to large organizations --> .com

A website operated by the state of California --> .gov

The website of the US Coast Guard --> .mil

The website of a group of individuals who work toward protecting gray wolves --> .org

Explanation: I took the test and got it right ;)

A website that sells computer hardware to large organizations --> .com. A website operated by the state of California --> .gov. The website of the US Coast Guard --> .mil. The website of a group of individuals who work toward protecting gray wolves --> .org

What is the government website?

The government website is the official US government website and is used for a domain name that is based on the word government. It is administrated by the cyber security and infrastructure security agency.

It is sponsored top level domain and only the US government is federal govt uses such websites.a website that sells computer hardware to large organizations a website operated by the state of California.

The website of the US Coast Guard the website of a group of individuals who work toward protecting gray wolves. a website that sells computer hardware to large organizations a website operated by the state of California.

Therefore, A website that sells computer hardware to large organizations --> .com. A website operated by the state of California --> .gov. The website of the US Coast Guard --> .mil. The website of a group of individuals who work toward protecting gray wolves --> .org

Find out more information about the driver's license on:

brainly.com/question/13112961

#SPJ2

What is output? x = 10 if (x > 10): print(1) elif (x = 10): print(3) else: print(4)

Answers

Answer:

There are three logical operators: and, or, and not. The semantics (meaning) of these operators is similar to their meaning in English. For example, x > 0 and x < 10 is true only if x is greater than 0 and less than 10.

n % 2 == 0 or n % 3 == 0 is true if either of the conditions is true, that is, if the number is divisible by 2 or 3.

Finally, the not operator negates a boolean expression, so not(x > y) is true if (x > y) is false, that is, if x is less than or equal to y.

Explanation:

Which tab would help you toggle between views?

Answers

Please further explain this question I would love to help you

The View tab enables you to toggle between different views

View tab

The View tab enables you to toggle between different views, selecting either Normal or master Page, single or Two-Page Spread views.

The view tab also provides several options such as rulers, boundaries, layout.

By default, the view used while working is the normal view, but this view can be toggled to the one you want.

Find out more on or view tab at: https://brainly.com/question/25629383

Ben is writing web page content on a newly launched gaming gadget. He has to use hyperlinks to help visitors navigate to web pages that deal with other types of electronic gadgets. Where should he place the hyperlinks in the web page?

Answers

Answer:

at the bottom of the web page

Explanation:

Ben is creating a web page content for the gaming gadget that  has been newly launched. He uses hyperlinks so that the visitors can navigate the web pages properly which deals with some other electronic gadgets also. So Ben should place the hyperlinks at the bottom of the web page as it will provide anyone viewing the web pages easily.

Once you have chosen a topic, what should you do before beginning the research process?
a. Find as many possible facts and details on C. Discuss your idea with others
your topic
b. Choose a position
d. None of these
Please select the best answer from the choices provided
Ο Α
B
С
D
Kiki

Answers

Find as many possible facts and details on

Answer:

A

Explanation:

Which practice represents the trait of effective communication

Answers

Answer:

The answer is B. speaking clearly

Explanation:

I hope it's correct sorry if not.

Which of the following would you use to search a table in Excel?

1Points
A
Decenter

B
Merge

C
Find and Select

D
Clear Rules

Answers

Answer:

Which function would you use if you wanted to count the number of values, but ignore the cells that have text or are empty

Which function would you use if you wanted to count the number of values, but ignore the cells that have text or are emptya COUNT

Which function would you use if you wanted to count the number of values, but ignore the cells that have text or are emptya COUNTb. COUNTA

Which function would you use if you wanted to count the number of values, but ignore the cells that have text or are emptya COUNTb. COUNTAc. COUNTBLANK

Which function would you use if you wanted to count the number of values, but ignore the cells that have text or are emptya COUNTb. COUNTAc. COUNTBLANKd. COUNTVALUES

Answer:

C. Find And Select

Explanation:

I hope this help you

ASAP! Due by tonight!!!! Please help!!!

Answers

The answer is C. Start of mystery

Answer: e

Explanation:

Other Questions
result of increase population in medieveal cities Order each set of measures from greatest to least 1) 1.2 cm, 0.6 in, 0.031 m, 0.1 ft 2) 2 lb, 891 g, 1 kg, 0.02 T 3) 1 1/4 c, 0.4 L, 950 mL, 0.7 gal 4) 4.5 ft, 48 in., 1.3 m, 120 cm 1. Ensue : follow : : A. run: lead B. pursue : chase C. permit: playD. object : quit Technician A says when the brakes are applied in a vacuum booster, the vacuum control valve is closed. Technician B says the vacuum control valve is opened. Which technician is correct? I WILL GIVE BRAINLY IF ANSWERDAs Earth rotates on its axis, it is _____ on the side away from the sun.A. hotB. nightC. dayD. cold Will give brainliest. Please help. If the selling price for laptop is $1100 and is marked down by 30% in promotional offers, then sale price after discount is which of these would be seen as the LEAST likely threat to Africa's water supply How long am I contagious when I have the flu or a cold? What is the form of payment, form of acquisition, acquisition vehicle, and post-closing organization? help please I'm lost how can you say the present constitution is prepared according to the people's would and aspiration A 10 pound bag of grapes costs $14.00. How much is it for 1 pound of grapes? The ratio of girls to boys in a student basketball league is 3:4. Choose true or false for the following statement: If there are 30 girls in the league, therewould be 40 boys. * Find m ABD. Please help me. What is the role of mRNA during translation?A. forms parts of ribosomes B. carries codes from the DNA in the nucleus to the site of protein synthesisC. Carries amino acids to the mRNA for correct placement into the protein chain What would be the BEST title for this chart? A randomized trial tested the effectiveness of diets on adults. Among 36 subjects using Diet 1, the mean weight loss after a year was 3.5 pounds with a standard deviation of 5.9 pounds. Among 36 subjects using Diet 2, the mean weight loss after a year was 0.6 pounds with a standard deviation of 4.4 pounds. Construct a 95% confidence interval estimate of the difference between the population means, assuming the population standard deviations are equal. Which war is often described as America's second war for independence? In Jack London's "To Build a Fire," the main character is hiking alone through the Yukon wilderness in severe temperatures on his way to a mining camp.How does this setting affect the main character?It reveals to the reader that the man has traveled through the Yukon before and knows a great deal about the wilderness, nature, and animals.The setting is used only as a backdrop to the main events of the story, and plays only a minor role in the main character's development.The setting becomes a vehicle for the man, showing his independent spirit and ability to survive the wilderness in drastic conditions.It creates the conflict of the story by showing that the man is too inexperienced and unaware of the power of nature to survive the conditions.