what would you do if you got exposed on social media and (depression) who feels like that sometimes ?

Answers

Answer 1

Answer:

Sadness

Explanation:

Because i sad or mad

Answer 2

Answer:

nothing

Explanation:

i wouldn't get the app


Related Questions

The three greater-than signs, >>>, represent a _____.

A. prompt

B. file-path

C. file name

D. IDLE

Answers

Answer:

it's A. prompt

Explanation:

When reviewing a news article online that includes some questionable statistics what stategies can you apply to ensure that the informationis accurate

Answers

Answer:

The answer is below

Explanation:

To verify the accuracy of a news article, here are some of the strategies to employ.

1. Check the source of the news article

2. Check whether the write er or author has credible reputation

3. Examine if the writer or author has related background to the subject of study

6. Compare the news information with the ones know.

If the CD has a capacity of 800 Megabytes, How many four-minute songs could be stored on the CD?

Answers

It depends on many factors, primarily The QUALITY of the song.
Up to 700mb worth. My recollection is that a standard audio CD is limited to 74 minutes. A data disc will hold up to 700mb leaving the files in their current formats.

How does scarcity influence the price of a product?
A)
It causes inflation.
B)
It causes deflation.
C)
It causes a recession,
D)
It does not impact the price.

Answers

Answer:

A

Explanation:

As a product becomes more scarce (less abundant), its value increases. Inflation is described as an increase in price and a decrease in value of money. An item naturally becomes more costly as its exclusivity grows.

The answer is a










Bsajsjahjssjs

What task do the referential integrity settings prevent?
a) editing a non-key field in a destination table
b) sharing data from one field between two tables
c) linking a primary key to another table’s primary key
d) deleting a record that has related records in another table

Answers

Answer:

D

Explanation:

A _____ is sent to companies that are hiring to get an interview. résumé brochure business report newsletter plz hurry need it now

Answers

Answer:

A application

Explanation:

Answer:

D resume :)

Explanation:

Why are user manuals important? Select all that apply.
User manuals contain text and images to describe how to use the program features.
User manuals provide print versions of forum discussions.
User manuals explain the commands and syntax of programming languages.
User manuals often include chapter on problems and their resolutions.

Answers

Answer:

I. User manuals contain text and images to describe how to use the program features.

II. User manuals explain the commands and syntax of programming languages.

III. User manuals often include chapter on problems and their resolutions.

Explanation:

A user manual can be defined as a clear, detailed and an informative guide drafted by the manufacturer (producer) of a product or service, which is to be given to a customer (end user) so as to help them know and understand how to use the product or service properly.

User manuals are important because they contain the following necessary informations;

I. User manuals contain text and images to describe how to use the program features.

II. User manuals explain the commands and syntax of programming languages.

III. User manuals often include chapter on problems and their resolutions.

Additionally, a user manual contains information on the safety precautions that are to be taken by the end user while using a product or service.

Answer:

A C D

Explanation:

Because yes

Which of the following scenarios describes an IT professional using the Internet and computer system access in an unprofessional or inappropriate way?

Answers

Answer:

All of the above

Explanation:

The scenario that describes an IT professional using the internet and computer system access in an unprofessional or inappropriate way is:

a. checking social media networks during working hours

b. surfing the Internet during working hours for what to do on the weekend

c. downloading a favorite band’s latest album from a file-sharing service.

What is the internet and computer system?

Cloud computing is a method of storing, managing, and operating data that uses a network of remote servers. Data is stored on remote servers rather than on local storage in the computer when using cloud computing.

Cloud computing also allows for data access via the internet via various devices. Cloud computing is a flexible adjuration service that is accessible via the internet.

Therefore, the correct options are all the above.

To learn more about the internet and computer system, refer to the below link:

https://brainly.com/question/13175896

#SPJ2

Drag the tiles to the correct boxes to complete the pairs.
Match the memory type with its function.
ROM
cache
RAM
hard drive
Functions
Memory Type
acts as a buffer between the CPU and main memory
arrowRight
contains data and instructions for current execution
arrowRight
stores data permanently
arrowRight
stores the program required to boot a computer
arrowRight
Next

Your welcome

Answers

I need this answer too can someone please help us out with the right answer ?!

Explanation :

select the correct answer from each drop-down menu. “To clean a computer screen, use ___. To clean a keyboard, use a ___.”

Answers

Answer:

The answers are:

The first drop down menu: Soft cloth

The second drop down menu: Paintbrush

Explanation:

I got it right on the Edmentum test.

The selection of the correct word from each drop-down menu is as follows:

To clean a computer screen, always use a soft cloth.To clean a keyboard, always use a paintbrush.

Why computer screen is used cleaned regularly?

It is important to clean off your computer screen regularly. This is because if you don't clean your screen properly, you could damage it permanently and possibly harm your computer.

Many many people don't know how to properly clean their screens, they are just requested to watch a video available on the Internet. The process of cleaning your computer's hardware makes the entire system run more smoothly and keeps it running longer. It not only protects your investment but the important data stored on it as well.

Therefore, the selection of the correct word from each drop-down menu is well mentioned above.

To learn more about Cleaning computers, refer to the link:

https://brainly.com/question/15080618

#SPJ6

How should I represent myself online? ​

Answers

Answer:

no be a b word and dont be toxixc be bc it will come back to u

Explanation:

Jane is designing a robotic arm that is required to move like a human arm. Select the simple machine she will use.

Answers

I NEED THIS ANSWER TOO CAN SOMEONE PLEASE HELP US OUT WITH THE RIGHT ANSWER ?!

Explanation:

Answer:

A.   System of Levers

Explanation:

examples of top down and bottom up design in software engineering

Answers

Answer:

. An example would include selecting a particular fastener, such as a bolt,

Explanation:

in java !
For each of the following tasks, draw what the initial array looks like, diagram how you would solve the problem, and draw what the final array looks like. Then use your diagram to write a step by step process to solve the task. The diagram may show several separate steps, or you may want to use arrows to show how the data will be moved. It will be helpful to number the arrows in the order you draw them.


Given an unsorted array of integers create a sorted array by finding the
largest element in the array and swap it with the last position. Then find the largest
element in the array, ignoring the last position, and swap it with the second to last
position. Repeat until you are only considering the first position (element at index 0).
The initial array is : int array[] = {22, 15, 33, 4, 12, 2, 3, 19 };

Answers

Answer: The attached photo is the code I use to sort the array from Greatest to least. If this doesnt help, I'm sorry.

Explanation:


29. Write a program that asks to input any ten numbers and displays sum of them​

Answers

Answer:

Here is the code for a classic C++ program that does it:

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

#include <iostream>

using namespace std;

int main()

{

   int sum = 0;

   int n;

   cout << "Input 10 numbers: " << endl;

   for (int i = 0; i < 10; i++)

   {

       cin >> n;

       sum += n;

   }

   cout << "Sum of the numbers: " << sum << endl;

}

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

Explanation:

I'm assuming you know what "include", "using namespace std" and "int main()" do, so I will skip over those.

First, we declare a variable "sum" and initialize it with 0 so we can add numbers to it later.

Then, we declare a variable "n" that will be set as the input of the user.

The "for-loop" will iterate ( go ) from 0 to 9, and will set the value of "n" as the input that is given -> "cin >> n;". After that, we add the value of "n" to the sum variable.

After "i" reaches 9, it will exit the loop and proceed to printing the sum of the numbers.

Hope it helped!

What is the name for non-paid active links returned by an Internet search engine in the search results?

Answers

Answer:

organic links

Explanation:

As an IT head, you require your employees to login to an intranet portal in your organization. The portal contains a login form in which users have to type their name and password. The password can be a combination of numbers and letters. Which data type is most suitable for a password field?
The (BLANK)data type is most suitable to define a password field.

Answers

Answer:

The answer is Text.

got it right on plato.

I promise you string is NOT the answer it's text

Explanation:

The password data type is most suitable to define a password field.

What is password?

Password is defined as a word, phrase, or string of characters used to distinguish between a procedure or user that is permitted and one that is not. A password is typically a random string of characters made up of letters, numbers, and other symbols. When only numeric characters are allowed, the matching secret is frequently referred to as a personal identification number (PIN).

Most often, passwords are made up of letters, numbers, and spaces. We use string data types as a result. Additionally, it depends on the programming language we are using. NIST advises using sha-256 or better. You will need 256 bits to save this sha-256 hashed password because a hashing method always yields a result of a predetermined length.

Thus, the password data type is most suitable to define a password field.

To learn more about password, refer to the link below:

https://brainly.com/question/28114889

#SPJ2

Select the best answer that completes the following sentences. Wireless technology changed the workday to

Answers

Answer: around the clock availability

Explanation: i got 100

Answer:

around-the-clock availability.

How many bits would be needed to count all of the students in class today?There are 25 in class

Answers

Answer:

50?

Explanation:

Answer:

You would need 8 bits.

Explanation:

John is the yearbook president and wants to edit articles and pictures for the yearbook at home, but he is afraid of losing a device on his walk home from school. What form of storage should John use? (5 points)

Answers

Answer:

Usb storage device because they are small and easy to transport.

Explanation:

small and easy to transport.

Likely either a USB thumb drive or cloud. Your best bet is probably the USB thumb drive.

New product ideas must fit into a company's mission statement and?

Answers

Answer:

Please give a better question :D

Explanation:

I don't understand your statement, below is a statement I wrote..?

_______

"The matching process of developing and maintaining a strategic fit between the organization's goals and capabilities and its changing marketing opportunities"

You are tasked with designing an airplane that could carry a very large load of cargo. What type of airfoil would you use for the wing? Why?

Answers

Answer:

This maximizes the ability of a plane with a heavy load to take off within the given output of engine constraints. Comparing the data received from the software, and other calculations it is determined that the S1223 is the best airfoil with a high coefficient of lift and a small coefficient of drag.

Explanation:

mark me brainliest

Let understand that "Airfoil" means the shape of object whose motion through the air is capable of generating a lift.

An aircraft "airfoil"works by generating lift through exerting a downward force on the air as it flows past.

Types of airfoils includes laminar flow airfoil which are used for high-speed flight plane and conventional flow airfoil which are used for low-speed flight plane.

An airplane designed to lift and transport large load of cargo will move slowly because more fuel will be required to produce enough thrust which is non-economical.

In conclusion, i will design the cargo aircraft with a conventional flow airfoil.

Learn more about Airfoil here

brainly.com/question/14628246

Which of the following is an advantage of using variables?

A.It reduces the number of functions that are necessary in the program.
B.It increases the number of values that are used in a program.
C.It erases the default values.
D.It makes it less likely that an error will be introduced into the code.

Answers

Answer:

D. It makes it less likely that an error will be introduced into the code.

Explanation:

what descriptions can be used for last,first,PR_ID and CID

Answers

Answer:

x r

Explanation:

this is the answer like it thank you

In your guessing game, you replaced dashes in blanks when the user guessed a correct letter by using a string slice. Which line of code will replace the character with an index of n with the guessed letter?
blanks = blanks(n) + letter + blanks(n+1)
blanks = blanks[:n] + letter + blanks[n+1:]
blanks = blanks(:n) + letter + blanks(n+1:)
blanks = blanks[n] + letter + blanks[n + ]

Answers

Answer:

C.

blanks = blanks[:n] + letter + blanks[n+1:]

Explanation:

Got it correct on Edge!

Answer: blanks = blanks[:n] + letter + blanks[n+1:]

Explanation: Edge 23

Consider the block of code below: What would be the most appropriate substitute for the missing Boolean Operator if the intention is to display “True” for only values of x between, but not equal to values of 0 and 10? OR AND NOT XOR

THIS IS URGENT AP CSP

Answers

Answer:

can you show the block of code? you have to account for the fact that booleoans are literally just 1 or 0, true and false

Explanation:

E-mails that are mailed directly to a consumer without their knowledge or permission are called

Answers

e-mails that are mailed directly to a consumer without knowledge or permission are called spam

Answer:

I thought it was scam, but it was spam lol

Explanation:

please can someone help my assignment.​

Answers

Light against dark- Smaller irregularly shaped objects can be used to balance a large flat surface without much detail.

Curved lines or smooth textures Larger areas with smoother, untextured finishes or looks can be balanced with smaller areas with interesting features.

Horizontal lines - The use of elements like arrows and triangles in an image can lead the eye to a certain point in a picture.

Converging lines adds a certain flow or depth to the image. It also adds a sense of distance or scale.

Vertical lines Suggest power, growth, and dominance as shown in tall trees and buildings.

Large against small is when Larger elements in one side of the image can be balanced with smaller elements positioned by itself at the far end of the other side of the image.

Diagonal lines suggest peace, calmness, and a sense of restfulness as shown by rivers, streams, paths, and even the human body.

Symmetrical balance is achieved when the two halves of an image are mirror images of each other.

Asymmetrical balance is achieved when the two halves of an image are not mirror images of each other, but they still feel balanced.

Radial balance is achieved when the elements in an image are arranged around a central point.

How to explain the information

Curved lines are often seen as being more organic and natural, while straight lines are seen as being more geometric and artificial. Smooth textures can also create a sense of calm and serenity, while rough textures can create a sense of energy and excitement.

Horizontal lines can create a sense of stability and balance, while vertical lines can create a sense of height and power. Arrows and triangles are directional elements that can be used to lead the eye to a certain point in an image. They can also be used to create a sense of movement or energy.

Learn more about elements on

https://brainly.com/question/20096027

#SPJ1

What is the next line?

>>> tuple B = (5, 7, 5, 10, 2. 7)

>>> tupleB.count(7)

1

0

2

5

Answers

Answer:

Answered below

Explanation:

The next line is 1.

The python count function returns the number of times an element appears in a tuple or a list.

In the tupleB tuple, 7 is passed into the count function. The number of times 7 appears in tupleB is just once alongside 5, 2.7, 10 and 5. Therefore, the count function returns 1 in the next line.

Write the name of the tab, command group, and icon you need to use to access the borders and shading dialog box.
TAB:
COMMAND GROUP:
ICON:

MICROSOFT WORD 2016
I NEED THIS ANSWERED PLZZ

Answers

Answer:

Tab: Home Tab

Command group: Paragraph

Icon: Triangle

Explanation:

Other Questions
50 POINTS!!! This is all the points I haveShakespeares "Sonnet 65" is a meditation on beauty, the inevitability of death, and immortality. Respond to the following question in a journal entry of about 150 words:Imagine scientists have created a medicine that allows you to live forever. Theyve offered to give it to you for free, no strings attached. Would you take it? Why or why not? what is the function of the capillaries PLS HELP.What is the percent of sodium in sodium hydroxide?%Na = 54.5 %How many grams of sodium are there in 48.5 g of sodium hydroxide? gr of Na in sodium hydroxide 2. If a person is healthy, how does his or her health impact what he or she can do? gina painted 3/7 of a picture and George painted 2/7 of the picture. how much did they paint together Can the exponent in the denominator be subtracted from the exponent in the numerator when the based are different? Explain Consider the probability density function of a random variable that is normally distributed. The center of this distribution is called the __________, and the measure of the dispersion of this random variable is called the __________. What is the mass percent of barium in barium cyanide? Which of the following is NOT affected by the greenhouse effect?Glaciers meltingRising sea levelsIsland formationFlooding What analysis is included in the Excel student template that aims to assist students in determining the extent that debt versus equity should be used to finance a set of recommendations Its a hot summer day. Darius is babysitting and has promised his sweet little sister that he will fill her wading pool. He plans to soak his feet in the water as he sips a cool soda and watch little sister as she plays in the water. Sounds great, right? All he needs to do is get the pool filled. Unfortunately, little sister is impatient and starting to whine. Darius has a hose ready in the backyard to fill the pool, but he decides he will also drag the hose from the front-yard, so the two hoses can work together to fill the pool faster. Nobody wants their darling little sister to be unhappy!Darius knows from experience that if he only uses one hose at a time, the front-yard hose takes 10 minutes longer to the fill the pool than the back-yard hose. With the two hoses working together, the pool is filled in 12 minutes. Once Darius is comfortable with his toes dangling in the water, he starts to wonder how long it would have taken to fill the pool if he had only used one of the hoses. Darius thinks, Hmmm. Usually when I think about how long it takes to do something I have to think about the rate it is going.1. What is the combined rate of the two hoses in filling the pool? What are the units of the rate?2. What is the rate of the back-yard hose when it is working alone? What are the units of the rate? Based on the information the author includes about the three science fiction writers, the reader can conclude that the author believes that the writers were Chip is drawing a scale model of his office. The rectangular room is 10 inches by 8 inches. If an inch represents 1 foot in the actual office, what are the dimensions of the actual office?A. 5ft by 4 1/8 ftB. 12ft by 10 1/2 ftC. 20ft by 16 1/2 ftD.15 ft by 12 3/8 ft 8. How many grams is 9.94 * 10 ^ 22 atoms of calcium (Ca) ? A salesperson's commission rate is 4%. What is the commission from the sale of $44,000 worth of furnaces? Use pencil and paper. Suppose sales would double. What would be true about the commission? whats the answer for 7^5/7^3= Use the information in the box and your knowledge of social studies to answer the question.All servants imported and brought into the Country . . . who were not Christians in their native Country . . . shall be accounted and be slaves. All Negro, mulatto and Indian slaves within this dominion [territory] . . . shall be held to be real estate. If any slave resist his master . . . correcting such slave, and shall happen to be killed in such correction . . . the master shall be free of all punishment . . . as if such accident never happened.Law passed by the Virginia General Assembly, 1705The text above is an example of _____.a piece of colonial American literaturea slave codea bill of rightsinstructions for a slave revolt What is (2)(-3)(-4) Ms cohn divide 21 markers equally among 7 .Write an equation to show how many markers each student gets.then write a related fact What ideas did the Chinese spread and what ideas did they absorb because of interactions on the Silk Roads?