Does anyone knows how to save a wordart in jpg. in a folder? If you do please answer.​

Answers

Answer 1

Use this link to help

https://www.extendoffice.com/documents/word/4542-word-save-wordart-as-image.html


Related Questions

Which line of code outputs the decimal portion of a float stored in the variable x? print (x % 1000) print (x) O print (x / 1000) print (x - int(x))​

Answers

print(x - int(x))

int(x) will round the float down to the nearest whole number x - int(x) subtracts that rounded value from the original float. This will leave the remaining decimal portion.

I hope this helps!

Double-precision is used to save the values in Python floating-point type.

You have several better choices after just two decimal places (e.g. to show a currency value): For example, Use cents, not dollars for integer values, and then divide them by 100 to translate them into dollars.

In the given choices only the last choice is correct because it would remove its integer value of x from the x value as well as leave the decimal section behind.

Therefore, the final choice is "print (x - int(x))".

Learn more:

brainly.com/question/20312196

Which of these ports listed is the fastest? IEEE 1394 USB2.0 FIREWIRE ESATA

Answers

The  port which  is the fastest is  ESATA.

What is ESATA?

eSATA  can be described as the  SATA connector which can be access from outside the computer and it help to give the necessary  signal  connection that is needed for  external storage devices.

The eSATA serves as a version of the eSATA port which is been regarded as the  External SATA port, therefore, The  port which  is the fastest is  ESATA.

Read more on the port here:

https://brainly.com/question/16397886

#SPJ1

Please have a look at the screenshot below

Please have a look at the screenshot below

Answers

C. Reliability

Because of the network and recovery time



Plz give brainliest


NEEED HELP WILL MARK BRAILY AND 100 POINTS FOR ANSWER!!!!
Marcus needs to add a query for multiple tables in his database. He is using Access 2016. Which tab should he use
to add the query?
Home
External data
Create
Database tools

Answers

Answer:

Database tools

Explanation:

He is using Access 2016 Database tools are the tab that should he use for the add a query for multiple tables in his database.

What is In databases?

Databases and a desk is hard and fast of records elements (values) the usage of a version of vertical columns (identifiable with the aid of using the name) and horizontal rows, the cell being the unit wherein a row and column intersect.

Tables are database gadgets that incorporate all of the records in a database. In tables, records is logically prepared in a row-and-column layout much like a spreadsheet.

Read more about the database:

https://brainly.com/question/26096799

#SPJ2

Issues in plagiarism and copyright when blogging can be prevented. True or false​

Answers

Answer:

It’s false

Explanation:

I can’t explain it’s too confusing

Write one line of code to declare a 'Path' reference variable named: pathobject4 AND create the object by calling the 'Paths' class method get and passing it: C:/programs/values.dat Write one line of code to declare a Scanner reference variable named: my_input AND create the object passing the constructor the variable: fileobject3

Answers

Answer:

Explanation:

Using Java as the programming language of choice, the exact implementation of what is asked in the question would be the following, it would also need the file location to be exact and the imports in order to work.

import java.nio.file.Path;

import java.nio.file.Paths;

import java.util.*;

class Test

{

   public static void main(String[] args)

   {

       Path paths = new Paths("C:/programs/values.dat");

       Scanner my_input = new Scanner(fileobject3);

   }

}

Which of the following is a benefit of allowing a program that is only partially in memory to execute? D) All of the above C) Less I/O is needed to load or swap each user program into memory. A) Programs can be written to use more memory than is available in physical memory. B) CPU utilization and throughput is increased.

Answers

Provides you with less usable hard drive space. System stability is compromised. Larger apps can now operate on computers that don't have enough physical RAM to support them on their own. Performance-wise, it falls short of RAM. Thus, option A is correct.

What benefit of only partially in memory to execute?

Processes that are not entirely in memory can nevertheless run thanks to the use of virtual memory. The primary advantage of this architecture is that programs can be larger than the physical memory that is available.

Therefore, programs can be written to use more memory than is available in physical memory.

Learn more about memory here:

https://brainly.com/question/14469776

#SPJ1

Which of the following statements are true about how technology has changed work? Select 3 options. Responses Businesses can be more profitable by using communication technology to reduce the costs of travel. Businesses can be more profitable by using communication technology to reduce the costs of travel. With the spread of technology and the Internet, smaller businesses are not able to compete as effectively as before. With the spread of technology and the Internet, smaller businesses are not able to compete as effectively as before. In a gig economy, workers are only hired when they are needed for as long as they are needed. In a gig economy, workers are only hired when they are needed for as long as they are needed. Through the use of the Internet and collaboration tools more workers are able to perform their jobs remotely. Through the use of the Internet and collaboration tools more workers are able to perform their jobs remotely. Technology has not really changed how businesses operate in the last fifty years. Technology has not really changed how businesses operate in the last fifty years.

Answers

The three genuine statements almost how technology has changed work are:

Businesses can be more productive by utilizing communication technology to decrease the costs of travel. This can be genuine since advances like video conferencing and virtual gatherings permit businesses to conduct gatherings, transactions, and collaborations remotely, lessening the require for costly travel courses of action.

With the spread of technology and the Web, littler businesses are not able to compete as successfully as some time recently. This explanation is genuine since innovation has empowered bigger companies to use their assets and reach a worldwide advertise more effortlessly, making it challenging for littler businesses to compete on the same scale.

Through the utilize of the Web and collaboration devices, more laborers are able to perform their occupations remotely. This explanation is genuine as innovation has encouraged farther work courses of action, allowing employees to work from anyplace with an online association. Collaboration instruments like extend administration computer program and communication stages have made inaccessible work more doable and effective.

Technology explained.

Technology alludes to the application of logical information, aptitudes, and devices to form innovations, fathom issues, and move forward proficiency in different spaces of human movement. It includes the improvement, usage, and utilize of gadgets, frameworks, and processes that are outlined to achieve particular assignments or fulfill specific needs.

Technology can be broadly categorized into distinctive sorts, such as data technology, communication technology, therapeutic innovation, mechanical technology, and transportation technology, among others. These categories include different areas, counting computer science, hardware, broadcast communications, building, and biotechnology.

Learn more about technology below.

https://brainly.com/question/13044551

#SPJ1

This element is known as the path a dot makes. It can be used to create
contour drawings or to shade areas.
O Color
Contrast
Line
O Value
O None of the above

Answers

the answer is Value

i just know

Using range(1,101), make two list, one containing all even numbers and other containing all odd numbers. How can I do this on Python

Answers

Answer:

even = []

odd = []

for i in range(1,101):

if i % 2 == 0:

even.append(i)

else:

odd.append(i)

Using range(1,101), the list of even and odd number can be done in python as follows;

odd_numbers = []

even_numbers = []

for i in range(1, 101):

  if i%2 == 0:

     even_numbers.append(i)

  else:

     odd_numbers.append(i)

print(even_numbers)

print(odd_numbers)

The variable odd_numbers is initialise with an empty list

The variable even_numbers is initialise with an empty list.

Then we loop through the range 1 to 101 as required.

If the looped numbers is divided by 2 without a remainder then the number is appended to the empty list even_numbers.

Else if it has a remainder, the looped number are appended to the empty list, odd_numbers.

Then we print the even_numbers and odd_numbers.

learn more about python here; https://brainly.com/question/14157737?referrer=searchResults

Using range(1,101), make two list, one containing all even numbers and other containing all odd numbers.

Kim agrees. You get the equipment from the truck and begin working. Kim approaches you as you are installing the modem and is a little concerned about customers being on the same network. Kim is afraid that customers will be able to "read" the information from credit cards and sales registers.
Offer Kim another switch so that the wireless access points are on one switch and his wired connections are on another
Offer Kim a VPN setup that will secure all network traffic

Answers

In order to assuage the fears that Kim has about customers being able to "read" the information from credit cards and sales registers when connected ti the same network, the best advice would be to Offer Kim a VPN setup that will secure all network traffic

This is because a Virtual Private Network would help offer additional protection as it would reroute the network through different channels to help secure the network.

What is a Network Security?

This refers to the processes that are put in place to protect a network from unauthorized use.

Hence, we can see that In order to assuage the fears that Kim has about customers being able to "read" the information from credit cards and sales registers when connected ti the same network, the best advice would be to Offer Kim a VPN setup that will secure all network traffic

This is because a Virtual Private Network would help offer additional protection as it would reroute the network through different channels to help secure the network.

Read more about VPNs here:

https://brainly.com/question/28110742

#SPJ1

How can organizations leverage information systems to gain a competitive advantage in today's business landscape? Provide examples to support your answer.

Answers

Organizations can leverage information systems to gain a competitive advantage in several ways in today's business landscape. Here are some examples:

Improved Decision-Making: Information systems can provide timely and accurate data, enabling organizations to make informed decisions quickly. For example, a retail company can use point-of-sale systems and inventory management systems to track sales data and inventory levels in real-time.Enhanced Customer Relationship Management: Information systems can help organizations manage and analyze customer data to personalize interactions, provide better customer service, and build strong customer relationships.Streamlined Operations and Efficiency: Information systems can automate and streamline business processes, improving operational efficiency. For example, manufacturing organizations can implement enterprise resource planning (ERP) systems.Data-Driven Insights and Analytics: Information systems enable organizations to collect, store, and analyze vast amounts of data to gain valuable insights. By using business intelligence tools and data analytics, organizations can uncover patterns, trends, and correlations in data, which can inform strategic decision-making. Agile and Collaborative Work Environment: Information systems facilitate collaboration and communication within organizations. For example, cloud-based project management tools enable teams to collaborate in real-time, track progress.

These are just a few examples of how organizations can leverage information systems to gain a competitive advantage. By harnessing technology effectively, organizations can improve decision-making, customer relationships.

for similar questions on organizations.

https://brainly.com/question/30402779

#SPJ8

What happens to a message when it is deleted?

It goes to a deleted items area.
It goes to a restored items area.
It is removed permanently.
It is archived with older messages.ppens to a message when it is deleted?

Answers

Answer:

it goes to the deleted items area

Explanation:

but it also depends on where you deleted it on

Answer: The answer would A

Assume you have bought a new mother board. It has 4 DIMM sockets with alternating colors. Slot 1 is blue, slot 2 is black, slot 3 is blue and slot 4 is black. How do you fix two 512 MB RAM modules to your motherboard to get the best performance

Answers

To fix two 512 MB RAM modules to the motherboard to get the best performance, one must follow these steps:

1. First of all, check the documentation of the motherboard to see the supported RAM.

2. After confirming the compatibility of the RAM with the motherboard, locate the RAM slots on the motherboard.

3. Make sure that the computer is turned off and unplugged.

4. Insert one of the 512 MB RAM modules into the first slot (blue) by lining up the notches on the RAM module with the slot and pressing down until it clicks into place.

5. Next, insert the second 512 MB RAM module into the third slot (blue) by lining up the notches on the RAM module with the slot and pressing down until it clicks into place.

6. Now, turn on the computer and check if the RAM has been detected by the system.

7. To check, right-click on My Computer, select Properties, and navigate to the System Properties window. Check the Installed Memory (RAM) entry to see if it shows the correct amount.

8. If the RAM has been detected, then the system should now be running with 1024 MB of RAM installed and will provide the best performance possible.

For more such questions on motherboard, click on:

https://brainly.com/question/12795887

#SPJ8

Select the correct answer.
Which hexadecimal number is equivalent to this binary number?
10011101
O A. D9
© B. C7
• C.
9D
D. 7C

Answers

Answer:

q = 16

Explanation:

Bring the numbers up so that it can work.

Write an algorithm and draw the flowchart that will ask the user to enter 10 integer numbers from the keyboard. The algorithm will find and print; a. the average of all numbers entered. b. the average of even numbers entered. c. the average of odd numbers entered. • IMPORTANT REMINDER: There should be only 1 algorithm and 1 flowchart. In the algorithm, you will have 10 numbers as input and 3 outputs; average of all numbers, average of even numbers and average of odd numbers.​

Answers

Using the knowledge in computational language in pseudocode it is possible to write a code that algorithm and draw the flowchart that will ask the user to enter 10 integer numbers from the keyboard.

Writting the code:

Declare integers variables n1, n2, n3, n4, n5

Declare variables avg, large, small

input n1

input n2

input n3

input n4

input n5

calculate and assign avg = n1 PL n2 PL n3 PL n4 PL n5 DIVIDE 5

if n1 greater than n2, n3, n4, n5 Then

large = n1

else if n2 greater than n1, n3, n4, n5 Then

large = n2

else if n3 greater than n1, n2, n4, n5 Then

large = n3

else if n4 greater than n1, n2, n4, n5 Then

large = n4

else

large = n5

if n1 less than n2, n3, n4, n5 Then

small = n1

else if n2 less than n1, n3, n4, n5 Then

small = n2

else if n3 less than n1, n2, n4, n5 Then

small = n3

else if n4 less than n1, n2, n4, n5 Then

small = n4

else

small = n5

Print "The average of five numbers is : avg"

Print "The smallest number among five numbers is : small"

Print "The largest number among five numbers is : large"

Stop

See more about pseudocode at brainly.com/question/19705654

#SPJ1

Write an algorithm and draw the flowchart that will ask the user to enter 10 integer numbers from the

As more devices and appliances make use of RTOSs, the necessity of protecting them from hackers becomes increasingly critical. Developers are working to improve the security of the software and to safeguard communications between such devices. How concerned are you about the security of RTOSs in cars, smart homes, and wearable technology

Answers

It should be noted that the main concern for the devices is the security system. It's important for the devices to be secured from unauthorized users.

A real-time operating system simply means an operating system that is used in processing data and events that have time constraints.

Nowadays, there are various security concerns. Therefore, it's important for RTOSs in cars, smart homes, and wearable technology to be highly secured. This is important in order to prevent cybercriminals and unauthorized users.

Read related link on:

https://brainly.com/question/25686595

What term describes storing personal files on servers over the internet to provide access anywhere, anytime, and on any device?

Answers

Fairly certain that’s the cloud.
Not 100% though.

please answer urgently. See the attached image

please answer urgently. See the attached image

Answers

Based on the information, the tight upper bound for T(h) is O(h).

How to explain the information

The algorithm visits at most x children in line 3, where x is the number of keys in the current node.

T(h) ≤ T(h-1) + x

For a B-Tree of height 0, i.e., a single node, the algorithm just compares the key with the node key and returns. Therefore, T(0) = Θ(1).

We can express T(h) as a sum of terms of the form T(h-i) for i = 1 to h:

T(h) ≤ T(h-1) + x

T(h-1) ≤ T(h-2) + x

T(h-2) ≤ T(h-3) + x

...

T(2) ≤ T(1) + x

T(1) ≤ T(0) + x

Adding all these inequalities, we get:

T(h) ≤ T(0) + xh

Substituting T(0) = Θ(1), we get:

T(h) = O(h)

Therefore, the tight upper bound for T(h) is O(h).

Learn more about upper bound on

https://brainly.com/question/28725724

#SPJ1

HELPPPP THESE STATEMENTS DESCRIBE DTP

HELPPPP THESE STATEMENTS DESCRIBE DTP

Answers

The correct statements that describe  DTP (Desktop Publishing) are:

DTP treats graphics and text boxes differently.

DTP lets you resize and rotate graphics.

DTP helps workers produce documents that improve communication.

What is the statements that describe DTP.

DTP  refers to the process of utilizing specialized operating system and finishes to create and design miscellaneous types of documents, in the way that brochures, flyers, newsletters, papers, books, and added printed fabrics.

DTP spreadsheet allows consumers to integrate text, representations, drawings, and other components to form visually attractive and professionally formatted documents.

Learn more about   Desktop Publishing from

https://brainly.com/question/7221406

#SPJ1

Question #2

Multiple Select

These statements describe DTP.

DTP treats graphics and text boxes differently.

DTP lets you resize and rotate graphics.

DTP helps workers produce documents that improve communication.

Many DTP features are included in WP programs.

WP and DTP are the same.

Press CTRL+W to save the document.
True
False

Answers

Answer:

False.

Explanation:

Pressing CTRL+W will close the current tab or window. To save a document, you can use CTRL+S or go to File > Save.

Answer:

False

Explanation:

Pressing CTRL+W closes the current window or tab in most applications, but it does not save the document.

SOME PLEASE DO THIS ASAPP!!

SOME PLEASE DO THIS ASAPP!!

Answers

Answer: I think it’s really cool. You don’t have to find someone g m ai l and then write a subject and whatever else. You can just send it like a m ess age. I love how it has the call option because it means that you don’t have to have a nu m ber to call your friends or family. And you can do business em ai l while me s saging whoever you need to instead of going back and forth.  

You can promote your business. You can also promote your video and share your screen. It is also a good way to talk to customers to discuss what you need to. A bunch of people have g m ails and it’s fairly simple to just add your friend and te xt them.  

It might be hard to figure out at first. But when you get used to it its fairly simple. It can also shut down do to a bug and stop working, which makes it even more complicated. You can also get creeps that can hack into your gm a i l and read all of your information. (there is a few words i spaced out bc it wouldnt let me send)

Explanation:

How could a computer more closely match a sound wave to produce a quality digital copy of a sound?

Answers

Answer:

have more time samples that are closer together.

Explanation:

To improve the quality and store the sound at a higher quality than the original, use more time samples that are closer together. More detail about the sound may be collected this way so that when it is converted to digital and back to analog, it does not lose as much quality.

I hope this helps you!!! Sorry for being late.

Answer:  By increasing the sample rate of the recording

Explanation:

How could a computer more closely match a sound wave to produce a quality digital copy of a sound?

I need help with this question!!

I need help with this question!!

Answers

Answer:

True

Explanation:

it just to make sense

Consider the following modification to the Merge Sort algorithm: divide the input array into thirds (rather than halves), recursively sort each third, and finally combine the results using a three-way Merge subroutine. What is the running time of this algorithm as a function of the length n of the input array, ignoring constant factors and lower-order terms

Answers

Answer:

The correct answer to the following question will be "n logn".

Explanation:

Time Complexity should be the same as the whole last particular instance, just the log base keeps changing with three.  Throughout the circumstance of separating 2 arrays, we want one correlation. however, for splitting between 3-way arrays, will require 2 comparisons to sort. However, after breaking the array into 3, we can lower the number of transfers by growing the comparison. So the time complexity would then persist the same, but the log should get base 3 as we've classified into different parts.

So the time complexity will be:

⇒  \(T(n)=3T(\frac{n}{3})+ O(n)\)

⇒          \(=O(n \ logn) \ with \ base \ 3\)

identify another natural cyclic event, other than phases and eclipses, that is caused by the moon's gravitational pull on earth

Answers

Answer:

TEKS Navigation

Earth Rotation.

Moon Phases.

Tides.

Cyclical events happen in a particular order, one following the other, and are often repeated: Changes in the economy have followed a cyclical pattern. an example would be pamdemic and vircus it is belived that a new pamdemic starts every 100 years.

Explanation:

The rise and fall of ocean tides is the natural cyclic event caused by the moon's gravitational pull on earth

The gravitational pull of the moon's causes the two bulges of water on the Earth's oceans:

where ocean waters face the moon and the pull is strongestwhere ocean waters face away from the moon and the pull is weakest

In conclusion, the rise and fall of ocean tides is the natural cyclic event caused by the moon's gravitational pull on earth

Read more about gravitational pull

brainly.com/question/856541

Solve recurrence relation x (n) = x(n/3) +1 for n >1,x(1) =1. (Solve for n = 3k)

Answers

To solve this recurrence relation, we can use the iterative method known as substitution method. First, we make a guess for the solution and then prove it by mathematical induction.

Let's guess that x(n) = log base 3 of n. We can verify this guess by induction:

Base Case: x(1) = log base 3 of 1 = 0 + 1 = 1. So, the guess holds for n = 1.

Induction Hypothesis: Assume that x(k) = log base 3 of k holds for all k < n.

Induction Step: We need to show that x(n) = log base 3 of n holds as well. We have:

x(n) = x(n/3) + 1

     = log base 3 of (n/3) + 1 (by induction hypothesis)

     = log base 3 of n - log base 3 of 3 + 1

     = log base 3 of n

     

So, x(n) = log base 3 of n holds for all n that are powers of 3.

Therefore, the solution to the recurrence relation x(n) = x(n/3) + 1 for n > 1, x(1) = 1, is x(n) = log base 3 of n for n = 3^k.

Research the following statistical tests/tools and in your lab book write what they are
used to determine:
1. Mean
2. Mode
3. Median
4. Minimum
5. Maximum
6. Range
8. Quartile
14. t-test
9. Inter-quartile range
15. Analysis of variance
10. Variance
16. Regression
11. Standard deviation
12. Standard error
7. Confidence level
13. Confidence interval

Answers

1. Mean : A group of numbers added together divided by the total number of numbers in the

group

2. Mode : Among a set of numbers, the one that pops up most frequently.

3. Median : The intermediate number among several numbers (half the numbers in the group are higher than the median and half the numbers in the group are lower than the median

4. Minimum : The lowest value in a group of values, eliminating any outliers, is known as the statistical minimum, or h.

5. Maximum: The highest value in a group of values, eliminating any outliers, is known as the statistical maximum, or h.

6. Range: The difference between the greatest and smallest values in a collection of data—the range is calculated by deducting the sample maximum and minimum.

8. Quartile: Three values called quartiles divide sorted data into four equal portions with the same amount of observations in each.

14. T-test : The t-statistic in statistics measures how far an estimated value of a parameter deviates from its hypothesised value in relation to its standard error.

9. Inter-quartile range: The spread of the data is measured statistically by the interquartile range (IQR).

15. Analysis of variance: To examine the variations in means, analysis of variance is a group of statistical models and the corresponding estimation techniques.

10. Variance : The variance is the mean squared difference between each data point and the distribution's mean as determined by each data point.

16. Regression : Regression analysis is a statistical method for connecting a dependent variable to one or more independent (explanatory) variables. A regression model can demonstrate whether variations in the dependent variable are related to variations in one or more explanatory variables.

11. Standard deviation : The standard deviation in statistics is a measurement of how much a group of values can vary or be dispersed. A low standard deviation suggests that values are often close to the set's mean, whereas a large standard deviation suggests that values are dispersed over a wider range.

12. Standard error : The population mean and sample mean are likely to deviate from one another, and the standard error of the mean, or simply standard error, shows how likely this is.

7. Confidence level : Another term for probability in statistics is confidence.

13. Confidence interval: If you repeat your experiment or resample the population in the same manner, the confidence interval is the range of values you expect your estimate to fall within a specific proportion of the time.

Therefore, mean, mode, median, minimum, maximum, range, quartile, t-test, inter-quartile, Analysis of variance, variance, regression, standard deviation, standard error, confidence level, confidence interval are some functions of statistics.

You can learn more about statistics from the given link

https://brainly.in/question/27759019

#SPJ13

What is your favorite tech

A phone b computer

Answers

Answer:

phone

Explanation:

Answer:

A. Phone!

I use it way more often than my computer :)

Write a function sum_of_ends that takes a list of numbers as an input parameter and: if the list is empty, returns 0 if the list is not empty, returns the sum of the first element (at index 0) and the last element (at index length - 1) Note that for a list with only one element, the first element and the last element would be the same one element in the list and thus the function should return the sum of the element with itself. ex: If a

Answers

Answer:

Explanation:

The following code is written in Python. It creates the function called sum_of_ends and does exactly as the question asks, it sums the first and last elements of the array and returns it to the user, if the array is empty it will return 0.

def sum_of_ends(num_arr):

   if len(num_arr) == 0:

       return 0

   else:

       sum = num_arr[0] + num_arr[-1]

       return sum

Other Questions
A financial advisor tells you that you can make your child a millionaire if you just start saving early. You decide to put an equal amount each year into an investment account that earns 7.5% interest per year, starting on his first birthday. How much would you need to invest each year (rounded to the nearest dollar) to accumulate a million for your child by the time he is 35 years old? the nurse observes a family member of a client who is on contact precautions enter and exit the client's room without performing hand hygiene. what is the nurse's most appropriate action? How does homeland security prevent terrorism? Gawain sa Pagkatuto Bilang 1: Isulat ang R kung ang instrunlarawan ay panritmo. Isulat naman ang H kung itokakayahang gumawa ng himig. Gawin ito sa iyong sagutangFrencBass drumHarpOrganMaracas Payton brought packages of black t-shirts and packages of white t-shirts. Each package of black t-shirts contains 3 shirts. Each package of white t-shirts contains 4 shirts. Payton bought b packages of black t-shirts and 5 packages of white t-shirts for total of 38 t-shirts. Which equation could Payton solve to determine the number of packages of black t-shirts, b, he brought?A. 38 - 5(4) = b B. 3b + 4(5) = 38C. 38 - 3b = 5D. 3(4) + 5b = 38 Help me out pls people thank you The Scale on a map shows that 1 inch represents 18 miles. The distance on the map between Olivia's town and her grandmother's town is 4-5 inches. In light of the trail of tears did the stokes commission do enough to meet the needs of native Americans use the shape of each graph to create an equation for the graphed function. Write a paragraph describing your favorite hobby, sport, activity, or pastime.Ensure that your paragraph follows these requirements:* Write a clear topic sentence and that each supporting sentence maintains focus on the topic.* Use an effective organizational strategy, as well as transition words to connect ideas.* Write at least six sentences. BSome Galpagos Islandshave mountains andsome do not. What doesthis mean for the climatesof these islands?These islands have different climates thisMountains have nothing to do with climate in 1974, philippe petit walked on a high wire attached to what landmark? Find the solutions to x = 28.A. x=+72OB. x=+2/14OC. x=+142XOD. x=+27X A concentrating solar power (CSP) plant has a capacity to produce 250 MW of thermal power (i.e. heat) at noon. The heat temperature is 400C, and the air temperature is 20C. The exergy/2nd law efficiency for this type of technology is around 50%, if the system is well-designed.What is the rated electrical capacity of this CSP plant, in MW? (1pt)What is the energy/1st law efficiency? (1pt) Think about and research carbohydrates, water, fats, vitamins, minerals, protein and fiber. Write at least a paragraph (3-5 sentences) long story from the point of view of a nutrient. Have the nutrient describe itself, what it does in the body, why it is important for athletic health. after the assassination of president abraham lincoln, president andrew johnson's post-civil war policies pushed for laws that would ______. "1.Please explain in detail about the ""mode of propagation that the wave propagates from the transmitter to the receiver." please solve this question You work for a marketing firm that has a large client in the automobile industry. You have been asked to estimate the proportion of households in Chicago that have two or more vehicles. You have been assigned to gather a random sample that could be used to estimate this proportion to within a 0.04 margin of error at a 95% level of confidence.a) With no prior research, what sample size should you gather in order to obtain a 0.04 margin of error? Round your answer up to the nearest whole number.n = householdsb) Your firm has decided that your plan is too expensive, and they wish to reduce the sample size required. You conduct a small preliminary sample, and you obtain a sample proportion of p = 0.24 . Using this new information. what sample size should you gather in order to obtain a 0.04 margin of error? Round your answer up to the nearest whole number.n = households How do you show E 2 in Excel? determine the ph change when 0.081 mol koh is added to 1.00 l of a buffer solution that is 0.316 m in hclo and 0.255 m in clo-.