What age group is experiencing the most growth in social media

Answers

Answer 1
Answer:

the ones in their teens (idk im guessing but i mean this could be helpful you never know)


Related Questions

what do you do if someone you really love reads your message and doesnt reply? do I text them again or just ignore it?
What is a WYSIWYG program?A. A program that fixes all broken codes from your web pageB. A program that allows you to choose fonts to apply to your HTMLcodesC. A program that allows you to see what the HTML code will looklike in text form on the siteD. A program that allows you to take a tutorial on HTML terminology
When copying a pie chart from Calc or Excel to Impress or PowerPoint, once the chart has been pasted, it cannot be edited.A. True  B. False  C. It depends on what paste option was selected.
Look at the resistor illustrated in the figure above. Based on your knowledge of the resistor color code, what are the resistance value and tolerance of this resistor? A. 525 k 20% B. 1.5 k 10% C. 2.7 k 5% D. 30 k 10%
What is the unit used to describe the intensity of sound?

people in wheelchairs find it difficult to pick up thing they dropped on the floor which tool can help

Answers

somthing similar to a litter picker?
The generic Pick Up Tool is what you are looking for. You can get them a lot of different places.
I hope this helps!

What is the purpose of background music?

Answers

Answer:

to help focus, or to enhance something you are watching

Explanation:

if you are working on something it helps you think about your assignments or what ever you're working on, if its in a movie ot video or something to be watch it helps set the mood for what is happening

Answer: To help recognize the mood of what you ware watching.

Explanation: Let's say you have a suspenseful movie, you would want to put suspenseful music that matches the mood to help enhance it and make it more clear.

Hope this helps!

my headphones have a mic and the mic and headset don't work at the same time what do i do to make them work together

Answers

Throw them away and buy another.
return them they are probably defective or turn ur media volume all the way down.

Will give brainliest and good amount of points, no false answers.I am using javascript for school and I still have no idea what I am doing. Can someone help? The instructions are,

A key step in many sorting algorithms (including selection sort) is swapping the location of two items in an array. Here's a swap function that looks like it might work, but doesn't:
-the code prints out [9, 9, 4] when it should print out [9, 7, 4].

Fix the swap function.

Hint: Work through the code line by line, writing down the values of items in the array after each step. Could you use an extra temporary variable to solve the problem that shows up?

Once implemented, uncomment the Program.assertEqual() at the bottom to verify that the test assertion passes.


the layout for javascript is,

var swap = function(array, firstIndex, secondIndex) {
array[firstIndex] = array[secondIndex];
array[secondIndex] = array[firstIndex];
};

var testArray = [7, 9, 4];
swap(testArray, 0, 1);

println(testArray);

//Program.assertEqual(testArray, [9, 7, 4]);

Answers

The problem with the swap function is that it loses the value at the first index, as soon as it gets overwritten by the value at the second index. This happens in the first statement. To fix it, you need a helper variable.

First you're going to "park" the index at the first index in that helper variable, then you can safely overwrite it with the value at the second index. Then finally you can write the parked value to the second index:

var swap = function(array, firstIndex, secondIndex) {

let helper = array[firstIndex];

array[firstIndex]  = array[secondIndex];

array[secondIndex] = helper;

};

I hope this makes sense to you.

How tall is the Skyscraper?

Answers

The Skyscraper, Burj Khalifa in Dubai is about 2,722ft (829.8m) tall. 
It currently stands as the tallest building in the world! 
Really high. It depends on what skysraper u talking about

I have a bag of trail mix.half of the bag contains peanuts.1/4of the bag is chocolates candies, and 1/4of the bag is dried fruit. What is the probability that I will select a peanut? A.1/2.b.1.4.c.1/3.

Answers

A.) 1/2Half the bags are peanuts so you have 1/2 a chance of selecting s peanut.
it would have to be 1/2 because if you add 1/4 plus 1/4 you have 2/4 then you need to subtract to get the other amount. if you reduce it, you would get 1/2