How many Face book users play games on the site each month?
A 37,500
B 375,000
C 375,000,000
D 37,500,000,000

Answers

Answer 1

C.

C: 375,000,000 people play games on the site each month.


Related Questions

Carly was given a writing assignment. In three to five sentences, give her some advice to help her plan and organize her writing.giving brainliest

Answers

1) She needs to organize her assignment. Know how it will start, the middle and end.

2) Decide what she wants to write about.

3) Start writing.

4) Review it. Check for grammar mistakes and look in the areas where she knows she might make a mistake.

5) Send it.

(This might be too long, but I hope it helps!)

how to get a javascript's varible

Answers

Answer:

If you want to use a js variable in a php script you MUST pass it within a HTTP request. There are basically two ways: Submitting or reloading the page.

Explanation:

In programming, just like in algebra, we use variables in expressions (total = price1 + price2). From the example above, you can calculate the total to be 11. JavaScript variables are containers for storing data values. All JavaScript variables must be identified with unique names. These unique names are called identifiers.

What are the number of buttons on an average calculator?.

Answers

Answer:

56

Explanation:

There is 56

If a person communicates indirectly and attaches little value to
the literal meaning of words, their communication is
A. high-context.
B. low-context.

Answers

Answer: B. Low-context

When trying to upload assignment on canvas wont let me click choose file.

Answers

Try either reloading the tab or resetting computer.

What is output by the following program?

def mult(a, b = 1, c = 1):
print(a * b * c)

mult(2, 5)

Answers

The output of the program is 10.

def mult(a, b = 1, c = 1):

    print(a * b * c)

mult(2, 5)

Code explanation:

The code is written in python.

A function is declared named "multi" and the function has parameter of a, b and c. The default value of b and c are 1.Locally, we print the product of a, b and c.Finally, we call the function with its inputted parameters. Notice we only had 2 argument while calling the function. This simply implies that the default value for c is used. Therefore,  we will have 2 × 5 × 1 = 10

learn more on python here: https://brainly.com/question/22796383

How can a classroom be more effective by the use of multimedia? ​

Answers

Answer:

Multimedia helps the user become more engaged with what they're learning by using multiple different methods to engage the user. When the user is interested or is engaged with his/her work, what he/she is learning becomes more enjoyable allowing the information to stick.

Explanation:

Multimedia is one of the many ways of communicating. It combines many different things including audio, animation, or text, all together which allows the user to interact with these different learning methods and become more interested, because it tries many different learning techniques at once.

A common example of multimedia would be websites such as ABC mouse.com, which allows the user to interact head on with the lessons while using many different things to help the student become more engaged with what they're learning. Things such as mini games, points to earn to buy items, and in-lesson interaction with multiple choice questions. All help the student become engaged/addicted to using the website.

To sum up, how can a classroom be more effective by the use of multimedia? ​"Multimedia helps the user become more engaged with what they're learning by using multiple different methods to engage the user. When the user is interested or is engaged with his/her work, what he/she is learning becomes more enjoyable allowing the information to stick."

Hope this helps.

When you're writing for mobile devices, use ________ to present the most important information first and provide successive layers of detail that readers can consume, if they want to.

Answers

Answer:

An inverted pyramid style.

_____is used to organize and modify the properties of the current selection.
a)Stage
(b) Property Inspector
(c) Timeline panel

Answers

Answer:

☘ QUESTION☘

_____is used to organize and modify the properties of the current selection.

☘ ANSWER☘

(B) Property Inspector

Explanation:

✨BY#NICHOLE✨

why it is important to add a key field?

Answers

Answer: A primary key is used as a unique identifier to quickly parse data within the table.

Explanation: A Key field is necessary to allow users to import Records to a Subform.

what is multimedia hard ware? Write any four examples of multimedia hardware.

Answers

Answer:

Multimedia software tells the hardware what to do. For example, multimedia software tells the hardware to display the color blue, play the sound of cymbals crashing etc. To produce these media elements( movies, sound, text, animation, graphics etc.)

What function would you use to calculate the total interest paid for the first year of a mortgage?.

Answers

Answer:

To calculate the total interest paid for the first year of a mortgage, the formula M = [P.r (1+r)n] / [(1+r)n-1] × 12 can be used.

Explanation:

Which thesis statement does a better job of meeting the three requirements for thesis statements?



- Drugs are not good for anybody, and we should work harder to prevent drug abuse.


- We need harsher penalties to deter doctors from overprescribing painkillers, which leads to the abuse of legal drugs

Answers

A.Thesis statements support hooks to sway the opinions of readers, so A.

Your thesis statement when writing an informational essay, or any other papers, is essential to the conclusion.

If you want good essays and stories that have the reader asking good questions, you will one hundred percent need a hook and thesis statement.

Identify the correct wireless technology from the drop-down menus.

A manager is in charge of 30 retail associates. Some of her duties include scheduling and keeping an updated list of each associate's information for payroll processing. She uses a wireless device to do these tasks. Her boss has offered her an upgraded wireless device that can also make phone calls, send text messages, and even access the Internet. She agrees this will make her job much easier, especially because she cannot always access her e-mail from the store's desktop computer. She has to be on the sales floor to make sure everything is running smoothly.

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

Which wireless device does the manager most likely have before being offered the upgrade by her supervisor? ()

Which wireless device is the supervisor most likely offering to the manager as an upgrade? ()

Which wireless device, if offered, would the manager probably find cumbersome if she needs to have her hands free to move about the sales floor? ()

Answers

Answer:

PDA, SMARTPHONE, LAPTOP COMPUTER

Explanation:

i just took this.

a stretching
force causing
things to be
pulled in
opposite
directions

Answers

Explanation:

Please helpppp meee! I'm rn in Ukraine, the invasion has begun early this morning! My house was bombed by a russian shell. I'm hurt!!! Give me some advice!! I don't have any medical substances nearby!!

Most case fans have standard _______________ connectors that are easy to plug in but can be forced to be connected the wrong way.

Answers

Answer:

Molex

Hope this Helps!

Every time a key is pressed on the keyboard, the _______________ chip in the keyboard notices which key has been pressed.

Answers

Answer:enter key

Explanation:I hope this helps and please give me brainlyiest

Write a java program that asks the student for his name and Favorite basketball team. The program should then welcome the student, and cheer for his team

Answers

The java program is an illustration of sequential programs

What are sequential programs?

Sequential programs are programs that do not require loops or conditions

The actual program

The program written in Java, where comments are used to explain each line is as follows:

import java.util.*;

public class Main{

public static void main(String[] args) {

 //This creates a Scanner Object

 Scanner input = new Scanner(System.in);

 //This declares the variables

 String name, team;

 //This prompts the user for name

 System.out.print("Name: ");

 //This gets an input from the user

 name = input.nextLine();

 //This prompts the user for favorite team

 System.out.print("Favorite team: ");

 //This gets an input from the user

 team = input.nextLine();

 //This prints the required output

 System.out.print("Welcome, "+name+". Cheers to "+team+" team");

}

}

Read more about sequential programs at:

https://brainly.com/question/26642771

Answer:

it is coding so make a java code and put it to the data on a file on the computer then.... tada!!!

Explanation:

15-Points answer quickly please. Select the correct answer. How can you make a search phrase more effective?
A. by framing it as a question
B. by using more specific search terms
C. by using a different search engine
D. by using all the search terms you can think of

Answers

You can make it more effective by framing it as a question because if you do that it makes it more effective

Design brief of grain crusher. Design specification of grain crusher. Design constraints of grain crusher

Answers

The grain grinder is a kitchen tool used to grind hard grains obtained from different plants.

What is a grain grinder?

The grain grinder is a culinary tool used by different communities around the world to transform grains into a dough, paste or powder to be able to cook it with other techniques.

The grain crusher has an innovative and effective design in which the grains enter through a tube and are led to the crushing area, where they are crushed once the user begins to move a lever clockwise.

A disadvantage of this manual crusher design is that it does not allow a large amount of grain load, that is, the user must crush a minimum amount of grains, which will prolong their time using this machine.

Learn more about tools in: https://brainly.com/question/14830872

Why cant my teacher see my photos submissions on canvas.

Answers

Answer:

Put the pictures on a writing platform and give them the link to it by writing an email or using the comments.

Threats are:_____.
a. Weaknesses in an information system that can lead to a compromise of an asset.
b. Safeguards used to minimize the impact of threats.
c. Capabilities, intentions and attack methods of adversaries to cause harm to assets.
d. Resource or information that is to be protected.

Answers

C - Capabilities, intentions, and attack methods of adversaries to cause harm to assets
threats are valid my main br

Question 2 of 10
A potential danger of social media is that:
O A. people make friends that live across the world.
B. your information can be viewed by strangers.
C. users can easily join an interest group online.
D. job applications can be downloaded online.

Answers

Explanation:

B. This is because everyone we don’t know is good and bad can know all of our biodata

List Any Four Library function with syntax
















Thnx:')
[tex] \: [/tex]

Answers

Some Library function and syntax.

Function :

exit expfprintffscanf

System include files:

stdlib.hmath.hstdio.hstdio.h

Function prototype:

Void existdouble exint printint & seek

Hope Helps!!

To enable a single hard drive to store more than one operating system, it would need to be ________ first.

Answers

Answer:

partitioned

Explanation:

How to change capital letters to lowercase in excel?.

Answers

Answer:

To change column A to Title Case, select cell B2. Type =PROPER(A2), and press Enter. Tip: Use the formula =UPPER(A1) for all UPPERCASE; =LOWER(A1) for all lowercase.

Explanation:

Every HTML document needs to begin with which of the following tags?

Answers

The first tag in any HTML file is the tag. This tells web browsers that the document is an HTML file. The second tag is a tag. Information between the HEAD tags doesn't appear in the browser window, but is still important.

What strategies can you use to ensure ease of reading in your emails and other digital communications

Answers

Answer:Ways to Ensure Your Emails Get ReadSubject lines: Remember that only 20 percent to 40 percent of your emails will actually get opened, though most of your subject lines will be seen. ... Your tone: Portray yourself as someone that other people can connect to.

Explanation:

What type of attack is being performed when multiple computers overwhelm a system with fake requests

Answers

Answer:

This is an attack on availability. A system resource is destroyed or becomes unavailable. Examples of this attack are the Nukes, which cause computers to go out of service. It is one of the oldest attack modes, they use the service or command "ping" to send fragmented, incomplete, or too large packets.

Explanation:

Answer:

Distributed Denial of Service (DDoS)

Explanation:

According to recent security survey compromised passwords are responsible for.

Answers

Answer:

81 percent of hacking-related breaches

Explanation:

I found this online, if you need a more specific answer, you will need to provide the multiple-choice options.

Other Questions
Diane bought 3 CDs that were each the same price. Including sales tax, she paid a total of $32.10. Of that total, $1.80 was tax. What was the price of each CD before tax? help me please , please A series of events takes place when an externality is internalized. Place the events in logical order. Order 74.585, 74.586, 74.486, and 74.587 in decreasing order. Can u find x? with work Find y and Find z??? Plsss thank youuu How will genome projects contribute to better productivity in cattle? Module 4 Pretest21-22 Consumer Math A / Module 4 - Transportation and Automobile Expenses5. The next day Tim goes to his friend's house again, but misses the first bus, If he is taking the Ridgeview bus, what is the next time he can get on the bus?Bus ScheduleOakpoint 8:00 AM 9:00 AM 10:00 AM 11:00 AMRidgeview 8:15 AM 8:45 AM 9:00 AM 9:45 AMButler 9:00 AM 9:25 AM9:25 AM 9:50 AM 10:10 AMMason 10:00 AM 10:30 AM 11:00 AM 11:30 AMFront St 8:30 AM 8:45 AM 9:00 AM 9:15 AM9:00 AM8:45 AM8:15 AM10:00 AM Select 4 that apply.Select the qualities that best describe Edward Masterman?39 years oldEnglishmandark complexionGermanvery animatedpaleinexpressive faceFrenchmanolder, retired gentleman 1. women are not preferred in the mining industry as the society things that ________a. women's cannot work underground b. women's are physically weak c. women's are not intelligent enough d. none of the above A container of an ideal gas at 1 atm is compressed to 1/3 its volume, with the temperature held constant, what is its final pressure? 2. In a batch of 15 students, 3 students failed in an examination. The marks of passed 12 students were 9, 6, 7, 8, 4, 5, 8, 10, 9, 7,5,7. What was the median mark of all 15 students? compare and contrast this year in school to last year What is the volume of a cube with a length of 11 meters? A. 33 m B. 121 m C. 1,221 m D. 1,331 mpls help me im a little brainless rat boi ;-; What equations for x=-3 is a possible solution? The electrostatic force between two charges is 3. 8 N. If the distance between the two charges is tripled, what is the new electrostatic force acting between the charges? My friends are walking to their house. They first walks directly north 20 feet. They then turn to the right and walk directly east 20 feet and they arrive at their house. If my friends had walked from their starting point directly to their house in a straight line, How many feet would they walk? Which pre-mrna processing step is important for initiating translation?. How was the war of 1812 significant to united states history? why?. Describe the relationship between the circumference of a circle and the diameter of the circle. Write 16 as a product of primes.Use index notation when giving your answer.