in 2 or 3 sentences, describe one advanced stradegy and how its useful

Answers

Answer 1

Answer:

A search strategy is useful because it helps you learn about things that are not available to you in person. One advanced search strategy is to form words carefully. I could copy 'describe one advance search strategy and how it is useful' and put it into a search engine and get many different results that aren't helpful. But if I shorten it to 'advance search strategies' I get helpful information.

Explanation:


Related Questions

Select the correct answer.
Mike needs to write the primary objectives of a project in a project plan. In which section should he write them?
A.
scope
B.
overview
c.
baselines
D.
schedule

Answers

Answer:

overviews

Explanation:

Match the parts of a CPU to their functions.

-control unit
-ALU
-register
Is a temporary data storage unit
manages data transfer operations
performs arithmetic and logical operations on input data

Answers

Answer:

CPU performs arithmetic and logical operation on input data

The way it is the performs

#done with school already

Answers

Answer: omg yes same hate it

Explanation:school is boring and we have to do work.

Puede existir la tecnologia sin la ciencia y sin las tecnicas,explique si o no y fundamente el porque de su respuesta

Answers

Answer:

No

Explanation:

No, La ciencia organiza toda la informacion que obtenemos despues de hacer experimentos. Esta informacion se puede replicar y probar, ademas nos ayuda ampliar nuestro conocimiento de varios temas. Las tecnicas, son procedimientos y reglas que fueron formados para solucionar problemas y obtener un resultado determinado y efectivo. Sea como sea la ciencia y las tecnicas se necesitas para que exista la tecnologia. Sin la ciencia y las tecnicas se tendria que obtener la informacion para poder entender y crear tecnologia, y para hacer eso tenes que hacer experimentos, procedimientos, y reglas (ciencia y tecnicas.)

Does anyone play genshin impact here?

Answers

Answer:

what server are u on

Explanation:

yes i do play itttttttttttttttttttttt

-------- C++ ------

Assume you need to test a function named inOrder. The function inOrder receives three intarguments and returns true if and only if the arguments are in non-decreasing order: that is, the second argument is not less than the first and the third is not less than the second. Write the definition of driver function testInOrder whose job it is to determine whether inOrder is correct. So testInOrder returns true if inOrder is correct and returns false otherwise.

For the purposes of this exercise, assume inOrder is an expensive function call, so call it as few times as possible!

-------------------------------------------

Assume you need to test a function named max. The function max receives two int arguments and returns the larger. Write the definition of driver function testmax whose job it is to determine whether max is correct. So testmax returns true if max is correct and returns false otherwise.

------------------------------------------

Write a program that will predict the size of a population of organisms. The program should ask the user for the starting number of organisms, their average daily population increase (as a percentage, expressed as a fraction in decimal form: for example 0.052 would mean a 5.2% increase each day), and the number of days they will multiply. A loop should display the size of the population for each day.

Input Validation.Do not accept a number less than 2 for the starting size of the population. If the user fails to satisfy this print a line with this message "The starting number of organisms must be at least 2.", display the prompt again and try to read the value. Similarly, do not accept a negative number for average daily population increase, using the message "The average daily population increase must be a positive value." and retrying. Finally, do not accept a number less than 1 for the number of days they will multiply and use the message "The number of days must be at least 1."

Answers

Answer:

The function testInOrder is as follows:

bool testInOrder(){

bool chk= false;

   int n1, n2, n3;

   cin>>n1;cin>> n2; cin>> n3;

   if(n2>=n1 && n3 >= n2){chk = true;}

   bool result = inOrder(n1,n2,n3);

   if(result == chk){ return true;}

   else{return false;}

}

The function testmax is as follows:

bool testmax(){

   bool chk = false;

   int n1, n2;

   cin>>n1; cin>>n2;

   int mx = n1;    

   if(n2>=n1){        mx = n2;    }

   int returnMax = max(n1,n2);

   if(returnMax == mx){        chk = true;            }

   return chk;

}

The prediction program is as follows:

#include <iostream>

using namespace std;

int main(){

   int startSize,numDays;

   float aveInc;

   cout<<"Start Size: ";

   cin>>startSize;

   while(startSize<2){

       cout<<"The starting number of organisms must be at least 2.";

       cin>>startSize;    }

   cout<<"Average Daily Increase: ";

   cin>>aveInc;

   while(aveInc<1){

       cout<<"The average daily population increase must be a positive value.";

       cin>>aveInc;    }

   cout<<"Number of days: ";

   cin>>numDays;

   while(numDays<1){

       cout<<"The number of days must be at least 1.";

       cin>>numDays;    }

   for(int i = 0;i<numDays;i++){        startSize*=(1 + aveInc);    }

   cout<<"Predicted Size: "<<startSize;

}

Explanation:

testInOrder

This defines the function

bool testInOrder(){

bool chk= false;

This declares all three variales

   int n1, n2, n3;

This gets input for the three variables

   cin>>n1; cin>>n2; cin>>n3;

This correctly check if the numbers are in order, the result is saved in chk

   if(n2>=n1 && n3 >= n2){chk = true;}

This gets the result from inOrder(), the result is saved in result

   bool result = inOrder(n1,n2,n3);

If result and chk are the same, then inOrder() is correct

   if(result == chk){ return true;}

If otherwise, then inOrder() is false

   else{return false;}

testmax

This defines the function

bool testmax(){

This initializes the returned value to false

   bool chk = false;

This declares the two inputs as integer

   int n1, n2;

This gets input for the two numbers

   cin>>n1; cin>>n2;

This initializes the max of both to n1

   int mx = n1;    

This correctly calculates the max of n1 and n2

   if(n2>=n1){        mx = n2;    }

This gets the returned value from the max() function

   int returnMax = max(n1,n2);

If returnMax and max are the same, then max() is correct

   if(returnMax == mx){        chk = true;            }

   return chk;

}

Prediction program

This declares all necessary variables

   int startSize,numDays;  float aveInc;

This gets input for start size

   cout<<"Start Size: ";    cin>>startSize;

The loop is repeated until the user enters valid input (>=2) for startSize

   while(startSize<2){

       cout<<"The starting number of organisms must be at least 2.";

       cin>>startSize;    }

This gets input for average increase

   cout<<"Average Daily Increase: ";    cin>>aveInc;

The loop is repeated until the user enters valid input (>=1) for aveInc

   while(aveInc<1){

       cout<<"The average daily population increase must be a positive value.";

       cin>>aveInc;    }

This gets input for the number of days

   cout<<"Number of days: ";    cin>>numDays;

The loop is repeated until the user enters valid input (>=1) for numDays

   while(numDays<1){

       cout<<"The number of days must be at least 1.";

       cin>>numDays;    }

The following loop calculates the predicted size at the end of numDays days

   for(int i = 0;i<numDays;i++){        startSize*=(1 + aveInc);    }

This prints the predicted size

   cout<<"Predicted Size: "<<startSize;

100 POINTS NEED THIS BEFORE 11:59 TODAY!!!!!!!!!!!!!!!

Answers

Answer:ok be how hobrhkihfehgdhdj fuiufiisefif jfkijfjfhhfhfhfhf

Explanation:

Rate these 3 fnaf characters from 1-3 tell me who you find the scariest as well
MICHEAL AFTON CIRCUS BABY GOLDEN FREDDY

Answers

Answer:

Golden Freddy is the scariest in my opinion

Answer:

Micheal Afton=3/3

Circus Baby=3-3

Golden Freddy=2/3

In my opinion, I'd say Circus Baby because of how her voice sounds like.

Which scenarios could be caused by software bugs? Check all that apply.
A. A person catches the flu and misses two days of work.
B. Smartphone users around the world are unable to get phone service.
C. A person is wrongfully arrested by the police.
D. A person receives a $10 bill at an ATM after requesting a $100 withdrawal.

Answers

Answer:

B- smartphone users around the world are unable to get phone service

C- A person is wrongfully arrested by the police

D- A person receives a $10 bill at an ATM after requesting a $100 withdrawal.

Explanation:

Software bugs are the fault and error in the application that affects the result. It can cause an error in receiving a different bill at ATM after withdrawing a different amount. Thus, option D is correct.

What is a software bug?

A software bug is a flaw or an error occurred in the applications of the system that generates unexpected results and causes crashing, and invalid outcomes.

Some software bugs include functional errors, missing commands, typos, crashes, calculation errors, etc. These types of errors can affect the ATM services causing errors in receipt generation.

Therefore, option D. a $10 bill is generated at ATM after withdrawing $100 is an example of software bugs.

Learn more about software bugs here:

https://brainly.com/question/4490366

#SPJ2

In a language JUNGLE is codded as UJNGEL then how will BANDID is codded?​

Answers

[tex]\huge\tt\underline\pink{BANDID\:✒\:ABNDDI\:✅}[/tex]

Step-by-step explanation:-

J ⇢ [tex]\sf\purple{U}[/tex]

U ⇢ [tex]\sf\purple{J}[/tex]

N ⇢ [tex]\sf\red{N}[/tex]

G ⇢ [tex]\sf\red{G}[/tex]

L ⇢ [tex]\sf\blue{E}[/tex]

E ⇢ [tex]\sf\blue{L}[/tex]

The first two letters [tex]\sf\purple{"J"}[/tex] and [tex]\sf\purple{"U"}[/tex] are interchanged and they take each other's place respectively. The third and fourth letters [tex]\sf\red{"N"}[/tex] and [tex]\sf\red{"G"}[/tex] maintain their position. The fifth and sixth letters [tex]\sf\blue{"L"}[/tex] and [tex]\sf\blue{"E"}[/tex] also take each other's place respectively.

Following the above sequence, we have

B [tex]\sf\purple{A}[/tex]

A [tex]\sf\purple{B}[/tex]

N [tex]\sf\red{N}[/tex]

D [tex]\sf\red{D}[/tex]

I [tex]\sf\blue{D}[/tex]

D [tex]\sf\blue{I}[/tex]

[tex]\circ \: \: { \underline{ \boxed{ \sf{ \color{green}{Happy\:learning.}}}}}∘[/tex]

A farmer is reading a nature guide to learn how to make changes to a pond so that it will attract and support wildlife. The guide gives the suggestions listed below.
Help Your Pond Support Wildlife
1. Reduce soil erosion by keeping livestock away from the banks of the pond
2. Allow plants to grow along the shoreline to provide cover, nests, and food for wildlife
3. Float logs near the edge of the water to provide habitats for salamanders
4. Add large rocks to provide sunning sites for turtles

Which suggestion involves interactions between two groups of living organisms?
A. Suggestion 1

B. Suggestion 2

C. Suggestion 3

D. Suggestion 4

Answers

D is the answer


Hope this helps

According to the scenario, suggestion three involves the interactions between two groups of living organisms. Thus, the correct option for this question is C.

What is the process called when two groups of living organisms interact?

When two groups of living organisms interact with one another, the process is known as species interaction. It states that the population of one species interacts with the population of other species that live in the same locality.  

Suggestion three reveals that the floating logs near the bank of the water bodies significantly provides a habitat for salamander which are amphibians by nature. So, it gives the chance to aquatic organisms like fishes, phytoplankton, etc. to interact with salamanders. This mutually supports the wildlife of a particular region.

Therefore, according to the scenario, suggestion three involves the interactions between two groups of living organisms. Thus, the correct option for this question is C.

To learn more about Species interactions, refer to the link:

https://brainly.com/question/28062759

#SPJ2

Define the following terms: Staff authority ,in your own words.

Answers

Answer:

To provision advise for other services to line managers.

Explanation:

Question:

Define Staff authority

Explanation:

Line managers receive counsel and other services from staff authority. Senior managers must exercise caution when it comes to restricting the number of employee employment. A company might end up with an excessive level of corporate overhead if this does not happen.

------------------------

hope it helps...

have a great day!!

A computer consists of both software and hardware. a)Define the term software​

Answers

Answer: We should first look at the definition of the term software which is, “the programs and other operating information used by a computer. Now looking at this we can break this definition down. Software, are instructions that tell a computer what to do. Software are the entire set of programs, procedures, and routines associated with the operation of the computer. So pretty much to sum it up software is the set of instructions that tell the computer what to do, when to do it, and how to do it.

Have a nice day!

Answer/Explanation:

We should first look at the definition of the term software which is, “the programs and other operating information used by a computer. Now looking at this we can break this definition down. Software, are instructions that tell a computer what to do. Software are the entire set of programs, procedures, and routines associated with the operation of the computer. So pretty much to sum it up software is the set of instructions that tell the computer what to do, when to do it, and how to do it.

the abuse of children is a symptom of

Answers

Mental issues such as anger issues
the abuse is a anger issue.

The post-closing trial balance shows the balances of only the ____ accounts at the end of the period.
A. liability
B. asset
C. temporary
D. permanent​

Answers

Answer: The post-closing trial balance shows the balances of only the “permanent” accounts at the end of a period. So your answer is D. Permanent.

Have a nice day!

Marina requested a copy of her credit report in May 2019 and wants to request a second one in November 2019. What is true?

O She can; it is always free
She can, but she may have to pay for it
O She will not obtain it, a free copy can be requested every two years.
O She will not obtain it, the bureau sends it automatically once a year

Answers

Answer:

B. She can, but she may have to pay for it.

Explanation:

A credit report is a report that contains the credit history of an individual. A credit report is issued by Credit bureaus who have financial information of a person.

Credit bureaus issue one credit report for free every year. But if a person desires to issue a credit report more than once a year then he/she will have to pay a fee for it.

In the given scenario, Marina who has requested a copy of the credit report in May 2019, will have to pay a fee for a copy of the second credit report.

Therefore, option B is correct.

What are different ways that celebrities try to connect with fans using the Internet and social media?
*No links or files, I will report your answer so it gets taken down

Answers

Answer:

they ask fans questions they talk to fans they do many things with fans trying to connect with them

How to mark someone the Brainliest

Answers

Answer:

Explanation: Once u get more than 1 answer of a question. A message is shown above each answer that is "Mark as brainiest". Click on the option to mark it the best answer.

Answer:

above

Explanation:

Select the correct answer from each drop-down menu.
According to the IEEE guidelines, what is required to find a large amount of reference information during documentation?

According to the IEEE guidelines, a/an___________ is required to help ________ A large amount of reference information during documentation

Options for the first box:list of page numbers, index, glossary

Options for the second box: locate, list, summarize

Answers

Answer:

glossary

summarize

Explanation:

i am positive that this is correct

According to the IEEE guidelines, a glossary is required to help summarize a large amount of reference information during documentation.

What are the IEEE guidelines?

IEEE guidelines are the manual for the editorial guidelines of IEEE transaction, letters, journals, etc.

The edits include punctuation, capitalization, abbreviations, biographies, etc.

Thus, the correct options are glossary and summarize.

Learn more about IEEE guidelines

https://brainly.com/question/17030694

#SPJ2

Select the correct answer.
Which document represents a written record of how the software should perform and the results of its performance?

A. STD

B.SDD

c.SPMP

D.SRS

E. RTM

Answers

Note that from the option given, the document that presents a written record of how the software should perform and the results of its performance is: SRS (Option D)

What is SRS?

An SRS (Software Requirements Specification) is a document that represents a written record of how the software should perform and the results of its performance.

It typically includes a detailed description of the functions and features that the software is expected to provide, as well as any constraints or limitations on its operation.

The SRS is used as a reference for both the development team and the client, and it helps to ensure that everyone involved has a clear understanding of what the software is expected to do. Other common documents that may be used in software development include the STD (Software Test Description), the SDD (Software Design Document), the SPMP (Software Project Management Plan), and the RTM (Requirements Traceability Matrix).

Learn more about SRS:
https://brainly.com/question/24003956
#SPJ1

how do i give brainliest? if what you say works i'll give de brain

Answers

two people have to answer the question and at the bottom of the question you'll see a crown and you just click on that to give them brainliest

Answer:

When Two people answer a question A crown should appear at the bottom where you find the buttons like and rat/e so once you click it the crown will go to the top of the question of the question that you think is the best.

Explanation:

An energy source that is bought and sold.​

Answers

Commercial energy sources are bought and sold.

Login
c. Unscramble the following wewards and uurite them
Korrectly win the blandes
1.ELLC:
2. RMULAFO:
3.CTIONFUN:
1. COUMNL:​

Answers

Answer:

1. Cell

2. Formula

3. Function

4. Column

Will Give Brainiest 75pts

Read the following excerpt from "Did You R e a l l y Just Post That Photo?" by Kristin Lewis: There is no way to know for sure if the photos you posted on F a c e b o o k (you know, the ones that got you grounded) are the reason you were denied [college admission]. But you'll always be h a u n t e d by the possibility that the college found them. The fact is, an increasing number of colleges are looking up applicants on social-media sites like F a c e b o o k and Y o u T u b e. If they don't like what they find out about you, you could miss out on a scholarship or even get rejected. Colleges aren't the only ones scouring the Internet for your name either. Potential employers are looking too. An i n a p p r o p r i a t e photo can cost you a job, whether it's the babysitting gig you're hoping to land next week or the internship you will apply for five years from now. Which of the following is a paraphrase of the bolded lines that could be used for note-taking purposes? Applicants use social media to research potential colleges and jobs. Potential employers are looking up applicants online to help make hiring decisions. Social media can negatively impact a user's college and job prospects. "The fact is, an increasing number of colleges are looking up applicants on social-media sites like F a c e b o o k and Y o u T u b e."

Answers

Answer:

it's not C. Social media can negatively impact a user's college and job prospects. I answered that and I got it wrong. I think it might be B, im like 80% sure, so sorry if I'm wrong

hope this helps!

The option that paraphrase  the bolded lines is Potential employers are looking up applicants online to help make hiring decisions.

Is it right for a potential employer to use the Internet in this way?

The use of social media for any kind of monitoring, investigation, and job decision making by the employer is one that is advisable to all.

Conclusively, It is moral to use information that will help one in terms of job performance and if the employer uses the internet in line with their policies and practices, then there is no issue with it.

Learn more about employers from

https://brainly.com/question/26355886

Select the correct answer.
Monica, a reviewer, wants to use a formal review for the SQA process. Which review should Monica use for this purpose?
OA.
inspection
OB
internal audit
Ос.
test review
OD
walkthrough

Answers

Answer:

A.  inspection

Explanation:

To find - Monica, a reviewer, wants to use a formal review for the SQA process. Which review should Monica use for this purpose?

A.  inspection

B . internal audit

C.  test review

D . walkthrough

Proof -

SQA process - Software Quality Assurance process

The correct option is - A.  inspection

Reason -

Formal review in software testing is a review that characterized by documented procedures and requirements. Inspection is the most documented and formal review technique.

The formality of the process is related to factors such as the maturity of the software development process, any legal or regulatory requirements, or the need for an audit trail.

The formal review follows the formal process which consists of six main phases – Planning phase, Kick-off phase, the preparation phase, review meeting phase, rework phase, and follow-up phase.

Answer:

answer:    test review

How do programmers reproduce a problem?
A. by replicating the conditions under which a previous problem was solved
B. by replicating the conditions under which the problem was experienced
C. by searching for similar problems online
D. by copying error messages from another software program

Answers

Answer:

B

Explanation:

Answer:

It was

B. by replicating the conditions under which the problem was experienced

on edge

how should we utilize our rights​

Answers

Answer:

Human rights also guarantee people the means necessary to satisfy their basic needs, such as food, housing, and education, so they can take full advantage of all opportunities. Finally, by guaranteeing life, liberty, equality, and security, human rights protect people against abuse by those who are more powerful.

Explanation:

Answer:

Speak up for what you care about.  

Volunteer or donate to a global organization.  

Choose fair trade & ethically made gifts.  

Listen to others' stories.  

Stay connected with social movements.

Stand up against discrimination.

Explanation:

Collin wants to insert and center a title at the top of his spreadsheet. Collin should _____.


A. highlight the cells in row 1, select Center command, and type the title

B. type the title in cell A1 and click on the center icon

C. select cells in row 1, select the Merge and Center command, and type the title

D. click on cell A5 and type the title

Answers

Answer:

C. select cells in row 1,select the merge and center command, and type the title.

What is data and what are some of the kinds of data that are increasingly being stored online? What is a "data breache
for governments, organizations, and individuals? THIS IS MY LAST QUESTION I WILL MARK U BRAINLIEST OR PAY U IDC PLEASE JUST HELP

Answers

Answer:

data is just information about something

Data breaches may change the course of your life. Businesses, governments, and individuals can experience huge complications from having sensitive information exposed.

Explanation:

3.1.14 Wormhole CodeHS

May I have it in a copy and paste, please?

Answers

Answer:

3.1.14 Wormhole CodeHS

Explanation:

3.1.14 Wormhole CodeHS

Other Questions
Use the information to answer the following question. Courtney is traveling from her native Australia to nearby New Zealand. What must Courtney do in order to buy souvenirs [reminders] in New Zealand?A. exchange Australian dollars for New Zealand dollarsB. pay a fee to the government of New ZealandC. become a New Zealand citizenD. get a job in New Zealand helloplease help asap ill give brainliest HELP I NEED HELP ASAP HELP I NEED HELP ASAP HELP I NEED HELP ASAP HELP I NEED HELP ASAPHELP I NEED HELP ASAP HELP I NEED HELP ASAP HELP I NEED HELP ASAP HELP I NEED HELP ASAP I need help on this one????!? What is the molarity of a solution prepared by dissolving 10.0 grams of NaOH in enough water to make a solution with a total volume of 2.40 liters?O0.104 M NaOHO0.201 M NaOHO0.361 M NaOHO0.412 M NaOH Match the correct vocab term with its definition Group of answer choicesDomestic[ Choose ]Foreign[ Choose ]Alliance[ Choose ]Prime Minister[ Choose ]Ambassador[ Choose ] Answer and explanation Help Give brainliest quickly You went running on a hot day. After your run, you sit down and feel very warm. How is homeostasis reacting? A qu llamamos salud When the days are cold and the cards all foldAnd the saints we see are all made of goldWhen your dreams all fail and the ones we hailAre the worst of all, and the blood's run staleI wanna hide the truth, I wanna shelter youBut with the beast inside, there's nowhere we can hideNo matter what we breed, we still are made of greedThis is my kingdom come, this is my kingdom comeWhen you feel my heat, look into my eyesIt's where my demons hide, it's where my demons hideDon't get too close; it's dark insideIt's where my demons hide, it's where my demons hideAt the curtain's call it's the last of allWhen the lights fade out, all the sinners crawlSo they dug your grave and the masqueradeWill come calling out at the mess you've madeDon't wanna let you down, but I am hell-boundThough this is all for you, don't wanna hide the truthNo matter what we breed, we still are made of greedThis is my kingdom come, this is my kingdom comeWhen you feel my heat, look into my eyesIt's where my demons hide, it's where my demons hideDon't get too close; it's dark insideIt's where my demons hide, it's where my demons hideThey say it's what you make, I say it's up to fateIt's woven in my soul, I need to let you goYour eyes, they shine so bright, I wanna save that lightI can't escape this now, unless you show me howWhen you feel my heat, look into my eyesIt's where my demons hide, it's where my demons hideDon't get too close; it's dark insideIt's where my demons hide, it's where my demons hideSongwriters: Alexander Junior Grant, Benjamin Arthur Mckee, Daniel Coulter Reynolds, Daniel Wayne Sermon, Joshua Francis MosserFor non-commercial use only.Data From: Musixmatch A 1.2-kg mass is projected from ground level with a velocity of 31.3 m/s at some unknown angle above the horizontal. A short time after being projected, the mass barely clears a 16-m tall fence. Disregard air resistance and assume the ground is level. What is the kinetic energy of the mass as it clears the fence pls answer this question and it has to be 2 sentecnes."If god heard u, what would u REALLY want from him to do right now?"-giving brainlist for best answer If the ratio of grapes to walnuts to oranges is 6:6:12, how many grapes are there if the total number of fruits is 192? k12Hi, Im Luisa. Looking for other k12 students so I could connect with 'em and to help eachother out. I want to connect using discord so if u dont have it, get it. Also im in 7th.Pilot#0666 use a flowchart to prove if the triangles in each pair are congruent. NO LINKS!!!! Help me with questions 1-8. here's the link to the textbook search nikeshoe.pdf last slide. the article is on slide 3&4 read it and answer the questions Un petit essaie: Dcrivez ce que vous avez fait pendant les vacances dhiver. Essayez dutiliser les temps suivants : le prsent, le pass compos, et limparfait. Ecrivez un minimum de cent cinquante (150) mots. (MINIMUM of 150 WORDS - points will be deducted if you don't submit the minimum) TessellationsRotate the parallelogram 180 clockwise about point Q.Please select the best answer from the choices provided HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!