Can someone tell me how to hit on a link on Brainly to see the answer

Answers

Answer 1
no, please do not hit on links. they're viruses i'm pretty sure.
Answer 2
Make sure to report the answer just in case

Related Questions

A cell is the intersection of a row and a column, identified by a letter and number.

True or false

Answers

Answer: True

hello how are you

Answer: True hope it helps

Which of the following statements represents a scientific bias?


Clean all containers to remove residue from the previous steps.

Use data from the previous steps because they show better results.

Make sure to follow every step in the procedure.

The scale needs to be calibrated to ensure accuracy.

Answers

Answer: Use data from the previous steps because they show better results

Explanation:

A scientific bias occurs when there's a deviation between the observations of a researcher and the accurate representation of data and results.

In this case, the use of data from the previous steps because they show better results will bring about a data bias as it'll lead to inaccuracies of the data being represented.

The 60-watt light bulb has a 400 hour life expectency how much will it cost to operate during its time

Answers

Answer:

$2.40

Explanation:

the unit electricity bill is kilo watt hour.

The 60-watt light bulb has a 400 hour life expectency means it will consume

60×400/1000 = 24 KWh units of electricity. Let us suppose each unit of electricity costs is 10 cents.

Then 24×10 = 240 cents  = $2.40

When multiple columns in a query are sorted simultaneously, which one will be the primary sort?

the primary key column

the middle column

the rightmost column

the leftmost column


THE ANSWER IS D

Answers

Answer:

Left most column

Explanation:

I just did the quiz

Distinguish between bit and byte?​

Answers

By its simplest definition, a bit is just a smaller unit of information than a byte. ... There are eight bits in one byte of information. Alternately, and more commonly in modern connotations, bits (and their successively larger relatives, such as kilobits, megabits and gigabits) are used to measure rates of data transfer.


8. (a) Identify two advantages and four limitations of the Speech recognition devices.

Answers

Explanation:

Speech recognition technology allows computers to take spoken audio, interpret it and generate text from it

Write a program in Java that asks the user to enter four weighted assessment grades, calculate the average, then display the average with the message: "Student Pass" if the average is greater than or equal 60 or the message "Student Fail" otherwise. The details of the assessments and weights are as follow: Homeworks: 20% Labs: 15% Midterm: 25% Final: 40%

Answers

Answer:

Explanation:

In order to calculate the weighted average, the grade itself is multiplied by the percentage of the category and then these values are summed. This sum is then divided by the total percentage of the portfolio.

import java.util.Scanner;

class Main {

   public static void main(String[] args) {

       double sumOfWeights = 100;

       

       

       Scanner in = new Scanner(System.in);

       

       System.out.println("Please Enter Homework Grade: ");

       double homework = in.nextDouble() * 20;

       System.out.println("Please Enter Labs Grade: ");

       double labs = in.nextDouble() * 15;

       System.out.println("Please Enter Midterm Grade: ");

       double midterm = in.nextDouble() * 25;

       System.out.println("Please Enter Final Grade: ");

       double finals = in.nextDouble() * 40;

       

       double average = (homework + labs + midterm + finals) / sumOfWeights;

       System.out.println("The Average of these Weighted Grades is " + average);

   }

   

}

What is one example of a pan lan man and a wan

Answers

Answer:

A LAN (local area network) is a group of computers and network devices connected together, usually within the same building. ... A WAN (wide area network), in comparison to a MAN, is not restricted to a geographical location, although it might be confined within the bounds of a state or country.

Explanation:

i hope this helps

To make your brand colors stand out, it is important to implement what with your color scheme?
A. Blacks
B. Grays
C. Whites
D. All of the above.

Answers

Answer:

All of the above

Explanation:

It's better to have a pattern of colors than one single color in you color scheme.

Answer:

D. All of the above

Explanation:

1.Menciona tres factores o variables que consideras influirán en el oscurecimiento del alimento cortado o pelado expuesto a la intemperie

Answers

La respuesta correcta para esta pregunta abierta es la siguiente.

A pesar de que no se incluyen opciones o incisos para responder a la pregunta, podemos comentar lo siguiente.

Los tres factores o variables que considero influyen en el oscurecimiento del alimento cortado o pelado expuesto a la intemperie son los siguientes.

1.- La exposición al elemento "oxígeno" cuando están a la intemperie.

2.- La temperatura del medio ambiente que afecta directamente al alimento.

3.- Los minerales y los metales que constituyen al alimento cuando tienen contacto con el medio ambiente.

En estos momentos, las sustancias que componen al alimento comienzan a tener reacciones químicas y se empiezan a oxidar cuando permanecen abiertas a temperaturas ambiente.

Es por eso que los expertos recomiendan que una vez abierta la comida -la fruta, la verdura- tiene que refrigerarse lo más pronto posible para poderse conservar un poco más de tiempo.

Using cell references enter a formula in B6 to calculate monthly payments for the loan described in this worksheet Omit the optional arguement use a negative value for pv

Answers

Answer:

= PMT(B4/B2, B2 * B3, B1)

Explanation:

The syntax to use is:

= PMT(Rate,NPER, PV)

To answer this question, the following assumptions will be made.

B1 = Present Value i.e. PV

B2 = Number of Payment Period i.e n

B3 = Duration (in years)

B4 = Rate

So, the formula to enter in B6 is:

= PMT(B4/B2, B2 * B3, B1)

The above formula will return the monthly payment in cell B6

Brainliest for correct answer :)
a. X = A NOR B
b. X= NOT (A OR B)
c. X = A OR B

Answers

the answer is A, the logic circuit is a NOR

Which of these statements regarding real-time strategy games is true?
A.
They only allow one player to move at a time.
B.
They do not work well on tablets.
C.
They feature memorable characters.
D.
They do not work well on mobiles.
E.
They offer plenty of time for players to reflect.

Answers

Answer:

E

Explanation:

Answer:

e

Explanation:

If we increase the height of the pendulum, we will increase the potential energy in the system. What effect would this have on kinetic energy?

Kinetic energy will decrease by the same amount.
Kinetic energy will increase by the same amount.
Kinetic energy will not change.
Kinetic energy will increase by half the potential energy.

Answers

Answer:

yo I need points so I'm answering this sorry

Answer:

your kinetic energy will increase by the same amount

Explanation:

think of a yoyo or any weighted object on the end of a string imagine swinging it in a circle and putting your finger in it so it wraps around your finger the object spins faster as the string shortens

I hope this helped

Examples of system software include operating systems like macos, Linux, Android and
Microsoft Windows, computational science software, game engines, industrial automation, and
software as a service applications
True
False

Answers

Tru tru tru tru tru tru

x = 0
while x < 4:
print(x)
x += 1
Make it a for loop

Answers

Answer: Here you go :)

Explanation:

x = 0

for n in range(4):

  print(x)

what is computer memory measured in​

Answers

Answer:

MB I think I learned it actually.

Explanation:

What is the purpose of the website directory provided by the website host?

A. to look up user account information
B. to provide help and training for new customers
C. to store all of a website’s content files
D. to archive website usage logs

Answers

Answer:

mabye A

Explana

.

.

.

I need help please and thank you

Answers

Answer:

Explanation: For "BEST way to handle the situation," try Option 1, because it would possibly help them or make the Technical Support Representative do less work.

For "WORST way to handle the situation," Option 4 would be the best because you're basically just hanging up on the person.

what is the deck of a suspension bridge called​

Answers

Answer:

The main forces in a suspension bridge are tension in the cables and compression in the towers. The deck, which is usually a truss or a box girder, is connected to the suspension cables by vertical suspender cables or rods, called hangers, which are also in tension. I think this is the answer

___are designed to infect and cause damage to operating system files, computer registry, and other locations on the motherboard

Answers

Answer:

Viruses

Explanation:

virusues are designed to infect and cause damage to operating system files, computer registry, and other locations on the motherboard

Fill in the blank to make the following true.
2 ** 3 =

Answers

Answer:

2 ** 3 = 8

Explanation:

Answer:

8

Explanation:

A video streaming website uses 32-bit integers to count the number of times each video is played. in anticipation of some videos being played more times than can be represented with 32 bits, the website is planning to change to 64-bit integers for the counter. which of the following best describes the result of using 64-bit integers instead of 32-bit integers? a. 2 times as many values can be represented. 32 times as many values can be represented. 2^32 times as many values can be represented. 32^2 times as many values can be represented. I know the answer is 2^32 but can someone explain it to me?

Answers

Answer:

2³² times as many values that can be represented

Explanation:

A 64 bit register can hold 2⁶⁴ different values, while a 32 bit register can hold 2³² different addresses

Therefore, a 64 bit can represent 2⁶⁴ ÷ 2³² = 2³² times as many values as can be represented by 32-bit

Therefore, the 64 bit can represent 2³² times as many values that can be represented by a 32 bit integer

while
norma
mean
cinta
to the user
a.) Define the term microcomputers.​

Answers

Explanation:

Microcomputers are computers designed around a microprocessor, smaller than a minicomputers or a mainframes.

Hope it will help :)❤

In the Business world people are often measured by their???
A- soft skills
B- hobbies
C- iq
D- technical skills

Answers

Answer:

D

Explanation:

You need skills to succeed!!

Answer is D !!!!!!!!

This is your code.
>>> a = [5, 10, 15]
>>> b = [2, 4, 6]
>>> c = [11, 33, 55]
>>> d = [a, b, c)
b[1:2] is

Answers

Answer:

got no answr...help me with it

Answer:

6

Explanation:

Differentiate between a window and Windows​

Answers

Answer:

A window is a graphic control element which are controlled by the keyboard usually and windows is an operating system

Explanation:

What is the velocity of a 0.100kg car with a momentum of 5 kgm/s?

Answers

Answer:

v = 50 m/s

Explanation:

p = mv

5 = 0.1v

v = 50

write 3 things that can't be done without technology. write your opinion?

Answers

Answer: Call a theater to get movie times, Use a phone book to find a company to do work around your house, and Park your used car on the street with a sign that says it’s for sale.

Explanation: my opinion is that it's fine to do each of those things without technology. Because technology is supposed to help the limited capacity of the human brain and improve things that make every day life quicker, easier, leaves more time to do something else.

Answer:

1) Filming, depending on the camera it is still technology that everyone uses on a daily bases with no hesitation for use.

2) Vehicles, I'm not sure if they are a type of technology but for this case lets just say they are. With vehicles we can get to places much faster then walking or taking a carriage.

3)Records, in this case music. Without records or anything of the sort we wouldn't exactly be able to listen to our favorite music at all times.

Write an advert to recruit teachers for a given Senior High School. The advert should cover tittle, job description, employees specifications, mode of application condition of service, closing date

Answers

Answer:

Hey! Have you ever wanted to work with kids? Do you know a lot about mathematics? Well I've got the job for you! You can be a Senior High School teacher! The job is simple, all you have to do is teach your students about mathematics every day. Let us know by July 31st if you would like to be a teacher for this upcoming fall semester.

Explanation:

Other Questions
Assume your companys sales increased from $3 million last year to $10 million this year. However, your biggest competitor is still the market leader with a 40% share of the $200 million widget market. Your other four competitors had sales this year of $53 million, $38 million, $12 million, and $7 million, respectively. For this year, what is your companys MARKET SHARE? Type only a number along with a $ or % (if appropriate). Dollar amounts should be rounded to the nearest cent; percentages to the nearest tenth. * The area of a sector of an circle of a radius 5 cm, formed by an arc of length is 3.5cm. what is the answer what is it called to spread a liquid coating on a food using a pastry brush or paper towel? The theory of Proposed that sudden and widespread disasters that result in mass extinctions followed by repopulation could explain why species change over time what is y=3x and y=2x+2 solution ??( , )PLEASE HELP !! ILL GIVE BRAINLIEST *EXTRA POINTS*.. IM GIVING 40 POINTS !! DONT SKIP :((. A soup can in the shape of a cylinder has a diameter of 7 centimeters and a height of 15 centimeters. Which measurement is closest to the lateral surface area of the can in square centimeters? I NEED THE ANSWER ASAP! AND THE REAL ANSWER! What statement best describes a person using intellectualization as a defense mechanism?Lin decides that she could have done more to prevent her illness and blames herself.Tyler studies his illness carefully, but remains emotionally detached from it.Bella has been diagnosed with a serious illness, but is choosing to pretend like nothing is wrong.Casey is angry about being diagnosed with a chronic illness, but she takes her anger out on her family members. There are thirteen species of finch found on the Galapagos Islands. These finches are commonly referred to as Darwins Finches and are a common example of natural selection and adaptive radiation.Which question would MOST help a scientist determine the level of biodiversity, that exists among the thirteen species of finch on the Galapagos Islands?Question 6 options:What is the most common beak color among the finches?How many finches are more than five years old?Which species of finch has the greatest average mass?What variation exists between the species for traits like beak size and shape? i will travel soon (passive voice) Select the two nouns in this sentence the new system is a great improvement can someone please draw this for me I will give brainly out. don't trace plzonly draw A 5Select all the correct answers.Which sentences describe chemical changes?The temperature of water rises when heated.When mixed, water and limestone give off heat.A mixture of red paint and green paint becomes black.On adding yellow turmeric to a transparent soap solution, the mixture turns bright red.When ground into powder, grains of wheat become flour. 2. Simplify 2x + 16 + 5x 10 After the election, the Obama Administration took steps to connect citizens with the government through the use of new technology. Which of the following was NOT one of their actions?A.funding a program to give every American home a computer and Internet accessB.showing weekly presidential addresses on You.TubeC.conducting Internet town hall meetingsD.creating a White House Face.book page I need the answer fast. I have 5 minutes. Four types of asexual reproduction 4. What is the area of the composite shape below?do it step by step PLSSSSSSSS HELPPPPPP ASAPPPPP Cream 424,000 at $130 per gallon Liquid skim 344,500 at $115 per gallon The cost of purchasing 820,000 gallons of direct materials and processing it up to the split-off point to yield a total of 797,500 gallons of good product was $2,350,000. When using a physical-volume measure, what is the approximate amount of joint costs that will be allocated to cream and liquid skim Which expression is equivalent to (3x^2y)^2 (2x^4y^2)^2? A. 10x^10y^6 B. 12x^24y^8 C. 24x^10y^7 D. 36x^12y^6 If, then what isKAsap!!!