Consider the following code.

public void printNumbers(int x, int y) {
if (x < 5) {
System.out.println("x: " + x);
}
if (y > 5) {
System.out.println("y: " + y);
}
int a = (int)(Math.random() * 10);
int b = (int)(Math.random() * 10);
if (x != y) printNumbers(a, b);
}

Which of the following conditions will cause recursion to stop with certainty?
A. x < 5
B. x < 5 or y > 5
C. x != y
D. x == y


Consider the following code.

public static int recur3(int n) {
if (n == 0) return 0;
if (n == 1) return 1;
if (n == 2) return 2;
return recur3(n - 1) + recur3(n - 2) + recur3(n - 3);
}

What value would be returned if this method were called and passed a value of 5?
A. 3
B. 9
C. 11
D. 16

Which of the following methods correctly calculates the value of a number x raised to the power of n using recursion?
A.
public static int pow(int x, int n) {
if (x == 0) return 1;
return x * pow(x, n);
}
B.
public static int pow(int x, int n) {
if (x == 0) return 1;
return x * pow(x, n - 1);
}
C.
public static int pow(int x, int n) {
if (n == 0) return 1;
return x * pow(x, n);
}
D.
public static int pow(int x, int n) {
if (n == 0) return 1;
return x * pow(x, n - 1);
}

Which of the following methods correctly calculates and returns the sum of all the digits in an integer using recursion?
A.
public int addDigits(int a) {
if (a == 0) return 0;
return a % 10 + addDigits(a / 10);
}
B.
public int addDigits(int a) {
if (a == 0) return 0;
return a / 10 + addDigits(a % 10);
}
C.
public int addDigits(int a) {
return a % 10 + addDigits(a / 10);
}
D.
public int addDigits(int a) {
return a / 10 + addDigits(a % 10);}

The intent of the following method is to find and return the index of the first ‘x’ character in a string. If this character is not found, -1 is returned.

public int findX(String s) {
return findX(s, 0);
}

Which of the following methods would make the best recursive helper method for this task?
A.
private int findX(String s) {
if (index >= s.length()) return -1;
else if (s.charAt(index) == 'x') return index;
else return findX(s);
}
B.
private int findX(String s, int index) {
if (index >= s.length()) return -1;
else return s.charAt(index);
}
C.
private int findX(String s, int index) {
if (index >= s.length()) return -1;
else if (s.charAt(index) == 'x') return index;
else return findX(s, index);
}
D.
private int findX(String s, int index) {
if (index >= s.length()) return -1;
else if (s.charAt(index) == 'x') return index;
else return findX(s, index + 1);
}

Answers

Answer 1
i think the answer is C
Answer 2

Is this for a grade?


Related Questions

Which audio media can be directly sent to the subscribers through an RSS feed?
A.
online streaming
B.
podcast
C.
cloud file
D.
live playback
E.
broadcast

Answers

I believe it’s c sorry if I’m incorrect though

Answer:

The correct answer should be B. podcast

Explanation:

there is a website called RSS feed that is podcasts

Type the correct answer in the box. Spell all words correctly.

The students of a college have to create their assignment reports using a word processing program. Some of the questions in their assignment involve comparison between different items. Which function of a word processing program will be the most useful to present this information?
The function of a word processing program will be the most useful for comparison.

Answers

Answer:

The Insert Table function

Explanation:

Presenting information that involves the comparison between different (two or more) items where the given details on the items are available as text will be aided when the similarities and differences of the information are placed side by side, such as in tabular form categorically arranged with rows listing items under comparison

The function in a word processing program such as MS Word that would be most useful, therefore, is the Insert Table function

The Insert Table function is located under the Insert menu on the Menu bar, where the table, in the drop down list under the Table button

When the Table drop-down button is clicked, it reveals a table that can be adjusted to different number of columns and rows by moving the mouse.

After the table with the desired number of columns and rows is inserted, the comparison between specific characteristics of the items in the assignment report can then be placed in different columns on the same row in the created table.

Answer:

The insert table function of a word processing program will be the most useful for comparison.

Explanation:

Select the factors that a network engineer is most likely to consider when designing a computer network. the ways in which employees share business documents the number of hours employees work the number of networked computers the type of work done at networked computers the number of employees using each computer the rate of pay for networked employees

Answers

Answer:

the number of employees using each computer

the number of networked computers

the type of work done at networked computers

the ways in which employees share business documents

Explanation:

these are all correct on odyssey :)

Which of the following is something that would NOT appear in the Reviewing pane?
a. The date on which a specific insertion was made.
b. The length of the document being reviewed.
c. The name of the person making an insertion.
d. The total number of revisions made to the document.

Answers

Answer:

A

Explanation:

Which avenue may utilize video streaming, audio narration, print designs, and animation?
The ______ may utilize video streaming, audio narration, print designs, and animation.

Answers

Answer: is their any options to answer your question

Explanation:

Answer:

The multimedia avenue may utilize video streaming, audio narration, print designs, and animation.

Explanation:

:P

Opportunity and Spirit, NASA's Mars Exploration Rovers, were the first scientific instruments able to collect samples directly from the surface of Mars. One of the mission's goals was to determine the likelihood that life ever existed on Mars. How were Spirit and Opportunity best able to supply evidence that in the distant past Mars may have had an environment favorable to life?

Answers

Answer:

The rovers sent images of cross beds, centimeter-scale areas in rock layers, that could indicate whether water once flowed on Mars.

Explanation:

the_____ tool is used to change the select text to capital letters or small letters (change case /grow font)​

Answers

Answer:

on word you can use shortcut "Shift+f3" to change uppercase lowercase and title case if that is what you are asking for

Why is special code needed for <?

Answers

The guy above is right!!!

HELP ASAP!Select all examples of desirable workplace skills, habits, and attitudes.

waits for others to solve problems
does not call in sick or miss work frequently
creates a list of solutions for the boss
arrives at work on time or early
waits for supervisor to give directions
works quickly and accurately
shows initiative
communicates effectively
sets clear goals to achieve success
gives products to friends for free

Answers

Answer:

does not call in sick or miss work frequently

creates a list of solutions for the boss

arrives at work on time or early

waits for supervisor to give directions

works quickly and accurately

shows initiative

communicates effectively

sets clear goals to achieve success

Explanation:

Have a Great Day!!!

What type of address uses a number that uniquely identifies each computer?
O Computer address
O Home address
O E-mail address
O IP address​

Answers

Answer:

The awnser is D or IP Address

Explanation:

BRAINLIEST PLEASE

Answer:

IP Address. This is the most unique as you can track computers down with this code too. I hope you found this helpful, you are very welcome!

Ryan is applying a sort to the data in a table that you have inserted in Word. Which option is important for most tables that have column headings?
• Sort in descending order.
• Sort in ascending order.
• Select the option "My List has Header Row."
• Choose the correct sort field.

Answers

Ryan is applying a sort to the data in a table that you have inserted in Word.By Choose the correct sort field option is important for most tables that have column headings.

What is statistics?

A statistics desk is a number cell wherein you may alternate values in a number of the cells and give you one-of-a-kind solutions to a problem. An appropriate instance of a statistics desk employs the PMT feature with one-of-a-kind mortgage quantities and hobby fees to calculate the low-priced quantity on a domestic loan you can set up in descending, or you may set up in ascending.

And D, has not have anything to do with this requirement. You do not have this feature to be had with you. Select the option, "My listing has header row" isn't always to be had to us. And clearly, you want to pick out the excellent type of discipline first. And then you may set up or type accordingly.

Read more about the column headings:

https://brainly.com/question/1788884

#SPJ2

Complete the sentence.
You might create algorithms and flowcharts during the ______ phase of software development.

Release

Planning

Design

Coding

Answers

You might create algorithms and flowcharts during the Design phase of software development.

What is the algorithms  about?

In software development, the Design phase is a crucial step in which the developers plan and determine how the software will be built. This involves breaking down the requirements and specifications into smaller, manageable components and then figuring out how these components will work together.

Therefore, to accomplish this, developers often create diagrams, such as flowcharts or algorithms, to help visualize the software's logic and structure. These diagrams can then be used to guide the development of the software, ensuring that all parts of the project are aligned and working towards the same goals.

Learn more about algorithms from

https://brainly.com/question/20543449

#SPJ1

Need the answer ASAP!! No links I’ll report

Select the correct answer.
Derek works in the software quality assurance department. Which tools or process should Derek use to monitor and measure changes?

A.software engineering process

B.software quality metrics

C.SQA audits

D.reviews

Answers

Answer:

C

Explanation:

select the correct answer
What is SQL used for?
A. to write machine language code
B. to design webpages
C. to extract information from databases
D. to convert machine language into a high-level language

Answers

The SQL used to extract information from databases. (Choice: C)

Functions of SQL language

In this question we must understand about computer languages to answer correctly.

SQL stands for Structured Query Language and is a specific domain language intended for the management and retrieve of relational databases. Thus, SQL is used to extract information from databases.

Thus, SQL is used to extract information from databases. (Choice: C) [tex]\blacksquare[/tex]

To learn more on databases, we kindly invite to check this verified question: https://brainly.com/question/6447559

Answer:

The correct answer is C. To extract information from databases.

Explanation:

I got it right on Edmentum.

write HTML code to create a web page which will contain a title my favourite book as a centralised heading feluda somogro and body will contain the name of the author satyajit ray ​

Answers

Answer:

Satyajit Ray (1921–1992), a Bengali film director from India, is well known for his contributions to Bengali literature. He created two of the most famous characters in Feluda the sleuth, and Professor Shonku the scientist. He wrote several short novels and stories in addition to those based on these two characters. His fiction was targeted mainly at younger readers (mostly teenagers) , though it became popular among children and adults alike.

Ray during recording of his film Pather Panchali

Most of his novels and stories in Bengali have been published by Ananda Publishers, Kolkata; and most of his screenplays have been published in Bengali in the literary journal Ekshan, edited by his close friend Nirmalya Acharya. During the mid-1990s, Ray's film essays and an anthology of short stories were also published in the West. Many of the stories have been translated into English and published.

Determina la cilindrada total Vt en un motor de 4 cilindres de 83,6 mm de diàmetre per 91 mm de cursa.

Answers

Answer:

La cilindrada total del motor es de 1997,025 centímetros cúbicos.

Explanation:

Para determinar la cilindrada total Vt en un motor de 4 cilindros de 83,6 mm de diámetro por 91 mm de carrera se debe realizar el siguiente cálculo, sabiendo que para calcular la cilindrada de un motor se debe utilizar la fórmula ((Pi x Diámetro^2)/4) x Carrera x Número de cilindros = X:

((3.14 x 83.6^2)/4) x 91 x 4 = X

((3.14 x 6,988.96)/4) x 364 = X

(21,945.3344 / 4) x 364 = X

5,486.3336 x 364 = X

1,997,025.4304 = X

1 milímetro cúbico = 0.001 centímetro cúbico

1,997,025.4304 milímetros cúbicos = 1997.0254304000005 centímetros cúbicos

Por lo tanto, la cilindrada total del motor es de 1997,025 centímetros cúbicos.

You are adding a new rack to your data center, which will house two new blade servers and a new switch. The new servers will be used for file storage and a database server. The only space you have available in the data center is on the opposite side of the room from your existing rack, which already houses several servers, a switch, and a router. You plan to configure a trunk port on each switch and connect them with a cross-over UTP plenum cable that will run through the suspended tile ceiling of the data center. To provide power for the new devices, you had an electrician install several new 20-amp wall outlets near the new rack. Each device in the rack will be plugged directly into one of these new wall outlets. What is wrong with this configuration

Answers

Answer: • You should implement a UPS between the wall outlet and the network devices.

• You should implement redundant power supplies for the network devices.

Explanation:

Based in the information given in the question, the options that explain things wrong in the configuration is that:

• You should implement a UPS between the wall outlet and the network devices.

• You should implement redundant power supplies for the network devices.

How do you fix this!!!!

Answers

Answer:

ldek

Explanation:

1. Which of the following commands allows the user to move objects around a basepoint?
Rotate
Fillet
Stretch
Extend

Answers

Answer:

Rotate

Explanation:

It seems that we are talking about AutoCAD software in this question. Normally to move an object you would use the Move command which allows you to move the object normally. However, since in the question we are talking about moving the object "around" a basepoint this would be the Rotate command. This is simply because it simply allows you to select the basepoint and move the object only in a 360 degrees rotation around the basepoint itself, where the basepoint acts as the center point.

In database software, which option is the most appropriate menu choice or command to use if you want to change the format of the date
from January 1, 2020 to 01/01/2020?
Print Preview
Mail Merge
New Record
Add/Modify Fields

Answers

Answer:

I think it's d

Explanation:

             

Define the term, external hard drive. Explain why you would use an external hard drive instead of a second internal hard drive.

Answers

Answer:

An external hard drive is a storage device located outside of a computer that is connected through a USB cable or wireless connection. An external hard drive is usually used to store media that a user needs to be portable, for backups, and when the internal drive of the computer is already at its full memory capacity.

Explanation:

External hard drives are usually portable thats why  it is commonly used!

Match each item with a statement below. - A popular port scanners that has the ability to use a GUI front end - Allows you to ping multiple IP addresses simultaneously and is usually included in Kali Linux - Tool for performing ping sweeps and used to bypass filtering devices by injecting crafted or otherwise modified IP-packets - The original utility from which OpenVas was developed - A port state which does not allow entry or access to a service - An open-source fork of Nessus - A port state that may indicate a firewall is being used to allow specified traffic into or out of the network - A port state that allows access to applications and can be vulnerable - Allows you the ability to scan thousands or even tens of thousands of IP addresses quickly - Performed by port scanners to scan large networks to identify which IP addresses belong to active hosts

Answers

Answer:

1. Nmap.

2. Fping.

3. Hping.

4. Nessus.

5. Closed port.

6. OpenVAS.

7. Filtered port.

8. Open port.

9. Port scanning.

10. Ping sweep.

Explanation:

An IP address is an acronym for internet protocol address and it can be defined as a unique number assigned to a computer or other network devices, so as to differentiate each device from one another in an active network system. Thus, an IP address is typically used to uniquely identify each computer or network devices connected to the internet or network.

In Computer networking, IP address are classified into two (2) main categories and these are;

1. Local (internal) IP address.

2. Global (external) IP address.

Also, the internet protocol (IP) address comprises of two (2) versions and these are;

I. Internet protocol version 4 (IPv4): this is the first and original version of the internet protocol which was introduced in 1983 using the Advanced Research Projects Agency Network (ARPANET). An example of an IPv4 address is 192.168.1.0.

II. Internet protocol version 6 (IPv6): it is the modified (latest) version of the IPv4 address system and as such can accommodate more addresses or nodes. An example of an IPv6 is 2001:db8:1234:1:0:567:8:1.

ICMP is an acronym for Internet Control Message Protocol and it is a standard protocol for communicating network errors in the form of messages such as Time exceeded and Destination unreachable.

In Computer Networking, an echo reply and echo request are implemented with a command utility referred to as ping. When a user sends an echo request message with the ping program, a successful attempt will return an echo reply message.

1. Nmap: a popular port scanners that has the ability to use a graphical user interface (GUI) front end.

2. Fping: allows you to ping multiple internet protocol (IP) addresses simultaneously and is usually included in Kali Linux.

3. Hping: tool for performing ping sweeps and used to bypass filtering devices by injecting crafted or otherwise modified IP-packets.

4. Nessus: the original utility from which OpenVas was developed.

5. Closed port: a port state which does not allow entry or access to a service.

6. OpenVAS: an open-source fork of Nessus.

7. Filtered port: a port state that may indicate a firewall is being used to allow specified traffic into or out of the network.

8. Open port: a port state that allows access to applications and can be vulnerable.

9. Port scanning: allows you the ability to scan thousands or even tens of thousands of internet protocol (IP) addresses quickly.

10. Ping sweep: performed by port scanners to scan large networks to identify which internet protocol (IP) addresses belong to active hosts.

HELP GIVING 20 POINTS IF RIGHT

Answers

Answer:

Negative space im pretty sure

Explanation:

negative space is the answer because there is nothing presented in the area.

10 points each!!!
Which option can be inferred from the following scenario?

You come home from work on a summer afternoon and notice your home is warmer than usual. You check the thermostat. The room temperature is set at 78°F, so the house should seem cooler. You lower the temperature on the thermostat several degrees in order for the air conditioner to work.


The temperature on the thermostat should be set lower than 78°F.

The air conditioner is not functioning properly.

The air conditioner was turned off.

The thermostat is faulty and may need calibration.

Answers

Answer:

Option D

Explanation:

78 degree Fahrenheit is a below normal temperature during summer. Now if the room temperature is set a 78 degree Fahrenheit, then one must not feel that the room is warmer than usual.

Hence, there can be some issue with the thermostat. Hence, thermostat needs calibration as it is not working properly.

Option D.

Answer:

d

Explanation:

You come home from work on a summer afternoon and notice your home is warmer than usual. You check the thermostat. The room temperature is set at 78°F, so the house should seem cooler. You lower the temperature on the thermostat several degrees in order for the air conditioner to work so you should calibrate it

What programs are always running when your computer is turned on? Enter the names of the programs in the space provided. Click the Submit button when you are finished to view the suggested response.

Answers

Answer:

open your task manager

Explanation

right click the toolbar below and click on task manager and you will see what programs are running on your pc

Answer:

Items commonly found in the system tray include antivirus settings; battery status; and volume. Sometimes e-mail programs, printers, or faxes are also present. Your computer may have other items in the system tray too.

Explanation:

I just took  a test on edguenity and that was the correct answer hope this helps

Rob is planning his housewarming party. He wants to design an invitation and personalize it for each invitee. He needs to create a list of invitees, design the card, and personalize the card. How should he complete the tasks? a. Use mail merge for steps 1 and 2 and a word processor for step 3. b. Use a graphics software for step 1, mail merge for step 2, and a word processor for step 3. c. Use a word processor for steps 1 and 2 and a graphics software for step 3. d. Use a word processor for step 1, graphics software for step 2, and a mail merge for step 3.

Answers

Answer:

1: Word Processor

2: Graphics Software

3: Mail Merge

Explanation:

Given

1. Create a list of invitees

2. Design an invitation card

3. Personalize the card

Creating a list of invitees is a task that requires basic activities such as typing, using of numbers and bullets; these activities can be achieved using word processing software programs such as Microsoft Word, WordPerfect, amongst others.

So task 1 requires a word processor

An invitation card is a piece of graphics that can be perfectly handled by graphics software programs such as CorelDraw, Adobe Photoshop, etc.

So task 1 requires a graphics software

Task 3 can be achieved using mail merge and this is because mail merge can be used either to print or to mail recipients. While mailing the recipients, one can easily personalize each letter (or in this case, an invitation card) to suit the recipient it is being directed to.

Need answer ASAP

Select the correct answer.
What is the role of a software analyst?
OA.
to prepare project plan
OB.
to provide customer support to stakeholder
O C.
to code and test
O D.
to perform audits

Answers

Answer:

c is the correct awnser ( to code and test )

Answer:

CCCCCCCCCCCCCCCCCCCCC

What is the purpose of using a tripod when filming?

Answers

Answer:

It helps with the camera  movement to get different angles and directions. Sometimes to keep it safe from falling out of grasp.

Explanation:

Answer:

it steadys the camera and can hold it in place for accurate shots.

Explanation:

What would be the result after the following code is executed? int[] numbers = {40, 3, 5, 7, 8, 12, 10}; int value = numbers[0]; for (int i = 1; i < numbers.length; i++) { if (numbers[i] < value) value = numbers[i]; } The value variable will contain the highest value in the numbers array. The value variable will contain the sum of all the values in the numbers array. The value variable will contain the average of all the values in the numbers array. The value variable will contain the lowest value in the numbers array.

Answers

Answer:

The value variable will contain the lowest value in the numbers array.

Explanation:

Given

The given code segment

Required

The result of the code when executed

The illustration of the code is to determine the smallest of the array.

This is shown below

First, the value variable is initialized to the first index element

int value = numbers[0];

This iterates through the elements of the array starting from the second

 for (int i = 1; i < numbers.length; i++) {

This checks if current element is less than value.

     if (numbers[i] < value)

If yes, value is set to numbers[i]; which is smaller than value

value = numbers[i];

Hence, the end result will save the smallest in value

I’ll mark brainliest if correct

Select the correct answer.
Andy, a developer, is designing a new program. Which tool should Andy use to help him complete his task?

A. SQL-Integrity Check

B.Unified Modeling Language

C.Selenium

D.Perforce

Answers

Answer:

I believe the answer is B

Explanation:

Other Questions
What is the function of X? In the text, the author discusses how what you choose to eat matters. How can you help reduce the emission of greenhouse gases by making different choices about what you eat? Question 251 ptsRead the sentence and choose the correct conjugation between the preterite or theimperfectYouna ensalada ayer.O comecomiO comacomo pls help 25 pointsIf all the dimensions of a cube are increased by a factor of 4, how will the volume of the cube change?increase by a factor of 12increase by a factor of 16increase by a factor of 8increase by a factor of 64 PLEASE PLEASE HELP Use the stem-and-leaf plot below to answer questions 13.What is the range of data?A.40B.42C.54D.96What is the median of the data?A.64.5B.72.5C.74.5D.75What is the mode of the data?A.5B.70C.75D.88 Help me again plz/ thank you!! plzzzz help for brianly What is the best estimated sum of 6/7 + 4/7?A) 1/2B) 1C) 1 1/2D) 2 shortly after your 18th birthday you assigned your first jury summons you've been asked to serve on the jury for a federal court which court would you have to report toU.S supreme courtU.S Appellate courtU.S District court El Paso County court You have been hired as a tour guide for the Great Sphinx of Giza. To prepare for this job, you have learned facts to tell visitors. You have heardseveral pleces of information; however, most of it appears to be wrong. Which of your "acts" is CORRECT?It is made of granite.OB. .It is the largest of the monumental sculptures in the world.It is the body of a jackal and the head of a goddess..OD.It was created in 1000 BCE If f: R R defined by f(x)=21/5 be an invertible function, write f1(x) Using the correct graph, describe the association shown. Will mark brainliest Who wrote the song "This Land Is Your Land"? Can someone pls give me the answer to this? 1.Complete each sentence with the correct form of the Regular Verbs in parenthesesNosotros ________________ en la cafetera ( hablar)Single choice.(0.5 Points)hablohablashablamoshablas2.Complete each sentence with the correct form of the Regular Verbs in parenthesesUstedes __________________ bicicleta el sbado en el parque. ( montar)Single choice.(0.5 Points)montomontasmontamontan3.Complete each sentence with the correct form of the Regular Verbs in parenthesesMis amigos __________________ en la biblioteca. ( estudiar)Single choice.(0.5 Points)estudiasestudiaestudianestudiamos4.Complete each sentence with the correct form of the Regular Verbs in parenthesesYo _____________ hamburgueas con mis amigos. ( comer)Single choice.(0.5 Points)comocomescomecomen5.Complete each sentence with the correct form of the Regular Verbs in parenthesesMaria y yo ______________ espaol cada dia. ( aprender)Single choice.(0.5 Points)aprendoaprendemosaprendeaprendes6.Complete each sentence with the correct form of the Regular Verbs in parenthesesLos chicos ______________ en el estadio todos los domingos. ( correr)Single choice.(0.5 Points)corrocorrescorrecorren7.Complete each sentence with the correct form of the Regular Verbs in parenthesesT ____________ en Tucson? (vivir)Single choice.(0.5 Points)vivovivesvivevivimos8.Complete each sentence with the correct form of the Regular Verbs in parenthesesLos estudiantes ___________________ mucho en la clase de historia.( escribir)Single choice.(0.5 Points)escribioescribesescribenescribimos9.Complete each sentence with the correct form of the Regular Verbs in parenthesesYo _________________ la pizza con mi hermano. ( compartir)Single choice.(0.5 Points)compartocompartecompartscompartimos10.Complete the sentence with the correct form of SERElla _____________ muy estudiosa.Single choice.(0.5 Points)soyeresessomossois11.Complete the sentence with the correct form of ESTARMi hermana _______________ enferma hoy.Single choice.(0.5 Points)estoyestsestestamosestn12.Choose the correct translation of SER vs. ESTARHe is bored.Single choice.(0.5 Points)l est aburridol es aburrido13.Choose the correct translation of SER vs. ESTARThe boys are big.Single choice.(0.5 Points)los chicos son grandeslos chicos estn grandes14.Choose the correct conjugation to answer. Ella _____________ a la escuela.Single choice.(0.5 Points)voyvasvavanvais15.Choose the correct conjugation to answer. Mis amigos y yo ________________ al parque los domingosSingle choice.(0.5 Points)voyvasvamosvan16.Write the correct form of "IR"Las chicas ____________ al cine.Single line text.(1 Point)17.Write the correct form of "IR"T __________ a viajar con tus padres?Single line text.(1 Point)18.Choose the correct conjugationEllas ______Single choice.(0.5 Points)tengotienestienetenemostienen19.Choose the correct conjugationnosotros ______Single choice.(0.5 Points)vengovienesvenimosvens20.Write the correct form of "Tener"T _____________ muchos zapatos?Single line text.(1 Point)21.Write the correct form of "Tener"Nosotras _____________ mucho dinero.Single line text.(1 Point)22.Write the correct form of "Tener"Armando y Jos ___________ muchos libros.Single line text.(1 Point)23.What this expression means in Spanish" to be hungry"Single line text.(1 Point)24.What this expression means in Spanish" to be lucky"Single line text.(1 Point)25.What this expression means in Spanish" to be thirsty"Single line text.(1 Point) I need the answer pls answer Consider the table of values for functions f(x) and g(x).x f(x) g(x)2 32 1251 1 150 0 11 1 52 32 253 243 1254 1024 625Which statements are most likely true based on the given values?Select each correct answer.f(x) is a polynomial function.f(x) is an exponential function.g(x) is a polynomial function.g(x) is an exponential function.The output values of f(x) will remain greater than those of g(x) as the input values continue to increase.The output values of g(x) will surpass those of f(x) as the input values continue to increase. This letter is about George Washington trying to tell us to be faithful and have justice toward all nations.Explain the historical situation happening when this letter was written. Which of the extracts below show(s) evidence of bias?Extract 1 Extract 2Social media has been with us for less than two decades, yet its anti-social effects - from anxiety and depression to sleeplessness and compulsive behaviour - are already obvious. 'The rules must change or people need to stop using social media. Either way, this wholesale spying has to stop. plz help.me guys6xy 12x y + 15x3y? 3x?y? by 3xy