The advancement of technology in our daily lives has changed how we interact with the world.

Answers

Answer 1
i agree. i think there’s less communication, more anger, mental issues.

Related Questions

Which binary number is equivalent to the decimal number 104?

Answers

The correct answer is 0110100 :)

Review how to write a for loop by choosing the output of this short program.

for counter in range(3):
print(counter * 2)


Please explain it to me, I’m not learning Bc I don’t have a teacher.

Answers

Answer:

The output is:

0

2

4

Explanation:

First of all, the print statement must be indented with a tab, otherwise it is not part of the for loop.

The range(3) creates an array with values 0,1,2. The variable 'counter' gets those values one after another, and the print statement outputs this value doubled, hence the 0, 2 and 4 output.

If I am working in a document and wish to follow a hyperlink, what should I do?
Copy the link and paste it in your web browser.
Hold the Control key and click on the link.
Click on the link.
Select Ctrl+K.

Answers

Answer:

Click on the link or copy and paste it to your browser

Explanation:

Writea SELECT statement that uses the ranking functions to rank products by the total quantity sold. Returnthese columns:The product_name column from the Products tableA column named total_quantity that shows the sum of the quantity for each product in theOrder_Items tableA column named rank that uses the RANK function to rank the total quantity in descending sequenceA column named dense_rank that uses the DENSE_RANK function to rank the total quantity in descending sequence

Answers

Answer:

SELECT  product_name, SUM(DISTINCT quantity) AS total_quantity

RANK() OVER (PARTITION BY total_quantity ORDER BY product_name) AS rank,

DENSE_RANK () OVER (ORDER BY quantity DESC) AS dense_rank

FROM Order_items

JOIN products ON Order_items.product_id = products.product_id

GROUP BY product_id

Explanation:

The SQL query returns four columns namely, product name, total quantity, rank and dense rank. The query uses the rank and the dense rank function to return the rows according to numeric ranks.

4.8 Code Practice: Question 1
I need help

Answers

for x in range(5,76,5):

   print(x, end=" ")

I wrote my code in python 3.8. Hope this helps

PLS HELP ASAP- Select the correct text in the passage.
Which concept explained in the paragraph below means that data always remains consistent?

Specific programs have some tasks that a computer must perform in parallel with others. These tasks (such as the performance of the same set of operations on different data sets) often work in parallel clusters. In such cases, a separate thread of execution handles each separate task. You can think of a thread as a sequence of instructions that computers can manage independently.
It is possible for different threads to access the same data elements and change their values, and this can lead to an inconsistent state of information. For instance, if multiple programs access a shared variable x and change its value, the variable will not contain the correct value at the end of the programs. We can prevent such inconsistencies by using locks. A thread puts a lock on shared data, and releases this lock only after completing its operations.

Answers

Answer:

reread the text

Explanation:

I do it it helps

Answer:

A thread puts a lock on shared data, and releases this lock only after completing its operations.

The last sentance

Explanation: TRUST ME ISTG THATS THE ANSWER

Any one know 23 24 25?

Answers

23- B
24- C
25- i’m not sure what it is but the definition to it is that it represents a range of text that has been deleted from a document. so which ever one is closest to it.

Which of these parts serves as the rear cross structure of a vehicle?
Rear body panel
Rear bumper cover
Rear rails
Rear core support
ontents

Answers

Answer:

Rear bumper cover

Explanation:

Bradley is working on a program that uses different classes in specific relationships. Help him remember what these relationships are called.

(blank) is when a class uses objects of another class.

A. Aggregation
B. Inheritance
C. Dependency

(blank) is a special case in which one object “owns” another.

A. Dependency
B. Composition
C. Aggregation

Answers

Answer:

First one is INHERITANCE. Second one is AGGREGATION.

how ssd is better than normal sata and pata HDD​

Answers


The HDD offers high storage capacities at a low price, while the SSD provides blazing fast access speeds at a higher cost.

True or false?
as the speed of a vehicle increases the amount of tire tread touching the road also increase.

Answers

True
Hope this is right and have a great day!

When save a newly created template, you use which extension for the file type? .doc, .docx, .doct, .dotx?

Answers

Answer:

The main difference between the two file formats is that in DOC, your document is saved in a binary file that includes all the related formatting and other relevant data while a DOCX file is actually a zip file with all the XML files associated with the document.

The attenuation of a signal is -10 dB. What is the final signal power if it was originally
5 W?

Answers

Answer:

P₂ = 0.5 W

Explanation:

It is given that,

The attenuation of a signal is -10 dB.

We need to find the final signal power if it was originally  5 W.

Using attenuation for signal :

[tex]dB=10\text{log}_{10}(\dfrac{P_2}{P_1})[/tex]

Put dB = -10, P₁ = 5 W

Put all the values,

[tex]-10=10\text{log}_{10}(\dfrac{P_2}{5})\\\\-1=\text{log}_{10}(\dfrac{P_2}{5})\\\\0.1=\dfrac{P_2}{5}\\\\P_2=5\times 0.1\\\\P_2=0.5\ W[/tex]

So, the final signal power is 0.5 W.

The final signal power if it was originally 5W is; 0.5 W

Signal Power

We are given;

Attenuation signal; dB = -10 dBOriginal signal power; P1 = 5 W

Formula for attenuation signal is;

dB = 10log_10_ (P2/P1)

Where P2 is final signal power

Thus;

-10 = 10log_10_(P2/5)

-10/-10 = log_10_(P2/5)

-1 = log_10_(P2/5)

0.1 = P2/5

P2 = 0.1 × 5

P2 = 0.5 W

Read more about signal power at; https://brainly.com/question/13315405

Please help this computer science question(Pseudocode and Trace table)

Answers

Answer:

can u explain more specific plz

Explanation:

Create a php user defined function called MinMax. The function accepts two numbers as arguments and it returns the string: "The minimum number is x and the maximum number is y" where x and y are the minimum and the maximum numbers respectively. For example, if the numbers 20 and 4 are passed to the function MinMax, it should return the string:

Answers

Answer:

<?php

function MinMax($x,$y) {

 if($x > $y){

     echo("The minimum is ".$y." and the maximum number is ".$x);

 }

 else{

   echo("The minimum is ".$x." and the maximum number is ".$y);    

 }

}

MinMax(20,4);

?>

Explanation:

<?php

This defines the user function with two parameters x and y

function MinMax($x,$y) {

This checks if parameter x is greater than parameter y

 if($x > $y){

If yes, it prints x as the maximum and y as the minimum

     echo("The minimum is ".$y." and the maximum number is ".$x);

 }

If otherwised

 else{

If yes, it prints y as the maximum and x as the minimum

   echo("The minimum is ".$x." and the maximum number is ".$y);    

 }

}

This calls the function

MinMax(20,4);

?>

Helen is working on her colleague’s photos. She came across this particular photo and was confused about which effect the photographer had used in the photo. Can you help her figure out the effect?
The effect used in the photo is

Answers

Answer:

it could be Tilt-shift - Tilt-shift effect - or Miniature faking.

Explanation:

Fill in the blank are always hard when the system has a set answer. But photographers commonly use the tilt-shift effect to focus on a certain part of the image while blurring the rest of the photograph. They refer to this as selective focus. You can use the tilt-shift effect and selective focus for miniature faking. This is where the subjects in the photograph appear miniaturized. Hope this helps

Answer: tilt-shift

Explanation:

Brainliest to right answer.
If you dare put an answer that does not relate to the question I swear.
Match the terms with their functions.
:)​

(2nd time posting this question)​

Answers

Answer:

1st is ambient noise

2nd is first person narration

3rd is dynamic microphone

4th is sound affects

5th is sound balance

6th is condenser microphone

Explanation:

hope this helped brainliest pls

who here plays overwatch or paladins ps4? I'm getting overwatch soon and need people to play with. please don't report this.​

Answers

Answer:

I'm down to play

Explanation:

Most slide layouts include at least one ________ by default.
Question 2 options:

placeholder

action button

transition

animation

Answers

Hey

I think that the answer placeholder :)

Sry if im wrong tho

Answer:

The answer is placeholder.

Write a program that reads a list of integers into a list as long as the integers are greater than zero, then outputs the smallest and largest integers in the list.

Ex: If the input is:

10
5
3
21
2
-6
the output is:

2 and 21

Answers

n = 1

lst = []

while n > 0:

   lst.append(n := int(input()))

lst.pop(-1)

print(str(min(lst)) +" and "+str(max(lst)))

I wrote this code in python 3.8. I hope this helps

Which of the following are risks to a network?
a Sending emails
b. Granting administrator access to a non-administrator
c. Opening files from unknown senders
d. Unwanted advertisements

Answers

Answer:

option  b and c are correct answers.

Explanation:

Let see each option in detail.

a) Sending email is not a risk.

b) Granting access is a problem because the other person can undermine the network

c) Unknow senders can send virus or other malicious code to corrupts you data.

d) Unwanted advertisement is not a big deal.

Answer:

Granting administrator access to a non-administrator  

 Opening files from unknown senders

Explanation:

Psst those are the answers

Show the dynamic and speculation execution for the following code

Add F2,F3,F4
Loop : Lw F2,0(R1)
Subi R1,R1,8
Div F9,F10,F11
Sw F9,5(R2)
Bne R1,Loop




- 1 Fp & 1 Int operation can issue at the same cycle
- 3 execution stage
- 2 commit stage
- FP : 2 cycle
- Lw : 2 cycle
- ALU : 3 cycle
- Two iteration

Answers

Answerf9,f10,fll

Explanation:

Name the application used for creating Presentations___
1.MS PowerPoint
2.MS Word
3MS Excel

Answers

Keynote is great for presentation

Answer:

1.MS PowerPoint

Organize the steps involved in the colorization of an old black-and-white photo.

Use dodge, burn, and noise tools.
Restore the old photo.
Adjust the RGB (or CMYK) ratio.
Select the desired area.

Answers

Answer:

How to recolor black and white photos?

Learn how to colorize black and white photos in only 4 minutes

Cleaning the image. When you open the image in Photoshop, convert it to Smart Object and start by removing the scratches and dust. ...

Adjusting the image tones and contrast. If you're working with a sepia image, add a Black & White adjustment layer to neutralize the tones. ...

Converting the image to CMYK. ...

Adding color.

Explanation:

Answer:

1) restore the old photo

2) select the desired area

3) Adjust the RGB (or CMYK) ratio

4) Use dodge, burn, and noise tools

Explanation: correct on Edmentum

The inside color of a shape or object is it’s

Answers

Answer:

A.

Explanation:

A __ consists of wires connecting the CPU and other parts of the computer. The __ transfers the data between the CPU and the memory unit.

Answers

Answer: A BUS consists of wires connecting the CPU and other parts of the computer. The DATA BUS transfers the data between the CPU and memory unit.
Explanation: PLATO




Predict the output
int ma3, n = 5, p=4
if(m==n&&n!=p)
{
System.out.println (m*n) ;
system.out.println(n%p);
}
if (m!=n) " (n==p)

System, out println (m+n)
System.out printen (m-n))
}​

Answers

Answer:

the output will be "hello word"

David bought 5.2 pounds of oranges for $1.20 per pound . how much did david spend ..................................................... explain to me how you did it

Answers

Answer:

David spent $6.24.

Explanation:

5.2 times 1.2

What is a router?
1. a special computer designed to accomplish tasks
2. a device that sends data to the receiving device
3. a set of data sent across networks
4. an Internet site available only to members of a group

Answers

Answer:

3

Explanation:

Answer:

it would be 3

Explanation:

because origanally a router is a dwvice that forwards data packets between computer networks.

what is a Tiny Area Network?

Answers

Tiny area network is a small LAN(land area network )that only has a small nodes and is typically found in home or small office environment.

Other Questions
Muslims and Persians stressed perfect __________ in their architectural designs so that each side of a building would look exactly the same as the others.A.anglesB.slopesC.textureD.symmetryPlease select the best answer from the choices providedABCD Which term refers to the portion of the hard drive where print jobs are stored before going to the print device A family is calculating the cost for one semester of college next year. Each hour of class will cost $155. A scholarship gift of $64 can be deducted from costs. If h is the number of hours taken, and c is the total cost, which equation can be used to calculate the total tuition costs for a semester?C=89hC=155h+64C=155h-64C=-155h-64 BRAINLIEST!!! HELP!!! 20 PNTS!!Which is the correct way to add a border color?A. border-color(red);B. border-color: red;C. red: border-color;D. border-color = red; This next section will describe how public middle schools hire teachers. strong or weak How is cell differentiation different than mitosis? So I told my troubles to the river And I tossed them in the deep And I washed my hands in the river But the river brings more trouble to me - Tom McRae, Told my Troubles to the River Told my troubles to the river, But it was wise and very clever, Kept running, leaving my words by the rocky side. Didnt need me, didnt care if I lived or died. It had drag its own weight through the mountains, Take what I could to keep going, Silt, sand, stone, or wood, whatever was In the way and wouldnt just give in. So why tell my troubles to the river? Couldnt help it, I was lost in its song. My lips moved without knowing. Trouble was the river just flowed on. River just flowed on. I should maybe throw myself in. 1.What the Text Says? 2.How the Text Says it 3.What the Text mean Which of the following best describes reflection? a. Reflection is when waves bend around an obstacle.b. Reflection is when waves bounce off a surface.c. Reflection is when waves bend. Cindy used 6feet of ribbon to wrap 10 gifts . How much ribbon will she use to wrap 25/gifts ? ( all the gifts are the same size) Crystal's gym membership costs $48 a month. Which table shows the sum of theamounts that Crystal will pay for her gym membership over the next 4 months? A miniature portrait of Frosty the Snowman is square and has an area of 100 squarecentimeters. How long is each side of the portrait? ben orders a case of his favorite macaroni and cheese. The case contains 18 same size boxes that weigh a total of 7.2 pounds . someone help me please i need this fast $2665 is compounded annually at a rate of 9% for 1 year what is love made out of ? The fall of Constantinople led to the breakup ofA) the Roman Catholic ChurchB) the Eastern Orthodox ChurchC) the Byzantine EmpireD) the Ottoman Empire The diameter of a circle is 8 cm. What is the area of the circle? Use 3.14 for pi please answer! The equation d = 30 60h gives the distance d in miles that a bus is from the station h hours after leaving an arena. How far is the station from the arena?A. 0.5 milesB. 120 milesC. 30 milesD. 60 miles please help, ill give brainliest! Empareja las frases de la lectura con los dichos correctos. Match the sentences from the reading with the correct idioms.Mi mejor amiga es la chica ms simptica que conozco. Ella siempre piensa en los dems y no le importa estar ayudando a otros en sus vacaciones. Durante sus vacaciones del verano, ella pasar un mes en Guatemala construyendo casas con un servicio de comunitario. Tambin, tendr tiempo para explorar Tikal, unas ruinas mayas. Tikal se convirti en uno de los reinos ms poderosos de los mayas. Ahora, mi mejor amiga va a tener la oportunidad de explorar estas ruinas bellas e histricas. Qu suerte!Match Term Definition chava A) Mi mejor amiga es la chica ms simptica que conozco. No pasa nada. B) Tikal se convirti en uno de los reinos ms poderosos de los mayas.Qu interesante! C) tener la oportunidad de explorar estas ruinas bellas e histricasbacn D) No le importa estar ayudando a otros en sus vacaciones.