Imagine a day without electricity. What would it be like? 6-7 sentence

Answers

Answer 1

Answer:

A day without electricity would be quite inconvenient. We wouldn't be able to do the things that we enjoy and the things that we need to get done. This would include not being able to go on social media, play many different types of video games, and we just wouldn't have access to the internet. Some more examples would be not being able to do homework or classwork online, not being able to attend class, and we won't be able to see during the night. To substitute our absent source of electricity, we could use candles, camping lights, and or lanterns. Overall, the day without electricity would interrupt our daily lives, especially those who depend on it the most.

Explanation:

hope this helps!! :))

pls vote brainliest if it helped u answer the question! :D


Related Questions

12. Which of the following
are effective components of
good feedback?
Detailed and time consuming
O Direct and honest
o specific
O Band C both answers​

Answers

Answer:

Concept: Engineering Principles & Ethics

To give good feedback you must address characteristic that are reflective of the group assignment Hence it must be Direct, honest, and specific.Avoid being general, beating around the bush and providing half honest answers as it doesn't help the other person grow as a effective leader.

What is Identity Theft?
A criminal accessing your personal info to pretend to be you.
Someone stealing your drivers license.
Leaking personal information online.
Stealing your username for log on.

Answers

A is correct! We did this in Law!

Have a merry Christmas!

Which one of these is not an area of AI? Computer vision/image, recognition Voice recognition, Robotics, Web design

Answers

Answer:

Computer vision/image

computer vision/images

You manage a network that uses switches. In the lobby of your building, there are three RJ45 ports connected to a switch. You want to make sure that visitors cannot plug their computers into the free network jacks and connect to the network. But employees who plug into those same jacks should be able to connect to the network. What feature should you configure

Answers

Answer:

Port authentication

Explanation:

A port authentication enables the configuration of a parameters of the ports to connect to the network. When the ports are in the Force Authorized state, only some configuration changes are possible.

In the context, I want to configure the port authentication so as to make sure that the people who visited the building and wants to plug in the switch should connect to the network and not the free networks. An d also the employees who plug in the same jack should also connect to the same network.

Which of the following types of copyright license is most appropriate if you create a graphic and would like to share it with anyone for any purpose as long as you receive credit?
A. All Rights Reserved
B. Public Domain
C. Some Rights Reserved: Attribution
D. Some Rights Reserved: Share Alike

Can someone help me out with this? Thanks!

Answers

Answer:

C is the correct answer:)

Explanation:

The most appropriate type of copyright license for the described scenario would be Some Rights Reserved: Attribution. The correct option is C.

What is copyright license?

A copyright license is a legal agreement between the copyright holder and someone who wants to use the copyrighted material.

This licence allows others to use and distribute the graphic as long as the original creator is credited. It is a type of Creative Commons licence in which some rights are granted to others while others are reserved for the original creator.

This option is ideal if you want to share your work with others while maintaining control and receiving credit for it.

Option B, Public Domain, allows anyone to use the graphic for any purpose without attribution, whereas Option D, Some Rights Reserved: Share Alike, requires others to share derivative works under the same licence terms.

Option A, All Rights Reserved, would prohibit others from using the graphic without the creator's explicit permission.

Thus, the correct option is C.

For more details regarding copyright license, visit:

https://brainly.com/question/30696317

#SPJ2

What is true about Electronic Business Cards in Outlook 2016? Check all that apply.
They are a way to share contact information with other users.
You can choose what is included on the business card.
You can create multiple electronic business cards.
They can be shared only with users in the organization.
You cannot send electronic business cards by email.

Answers

Answer:

A. B. C.

Explanation:

They are a way to share contact information with other users and You can choose what is included on the business card.

What is Electronic business cards?

Information exchange in the modern era is done through digital business cards.

Digital business cards, also referred to as virtual or electronic cards, are more interactive, economical, and environmentally friendly than traditional cards.

The ability to distribute digital business cards with anybody, everywhere is a big advantage. You can design your own digital business cards with  on a computer, an iOS device, or an Android device.

Therefore, They are a way to share contact information with other users and You can choose what is included on the business card.

To learn more about Business card, refer to the link:

https://brainly.com/question/28850206

#SPJ2

Write a program that takes a single integer input from the user and stores it in a variable. Your program should increase the value of this variable by one three times, printing "number is now " followed by its value each time, then decrease it by one three times, again printing "number is now " and the value each time

Answers

Answer:

Question is answered using python:

num = int(input("User Input: "))

for i in range(3):

    num = num+1

    print("Number is now "+str(num))

for i in range(3):

    num = num-1

    print("Number is now "+str(num))

Explanation:

This line prompts user for input

num = int(input("User Input: "))

The following iterates from 1 to 3

for i in range(3):

This increments user input each time

    num = num+1

This prints the value of num after increment

    print("Number is now "+str(num))

The following iterates from 1 to 3

for i in range(3):

This decrements the value of num

    num = num-1

This prints the value of num after decrement

    print("Number is now "+str(num))

development of smart phone​

Answers

Answer:

The first smartphone, created by IBM, was invented in 1992 and released for purchase in 1994. It was called the Simon Personal Communicator (SPC). While not very compact and sleek, the device still featured several elements that became staples to every smartphone that followed.

This question involves a simulation of a two-player game. In the game, two simulated players each start out with an equal number of coins. In each round, each player chooses to spend either 1, 2, or 3 coins. Coins are then awarded to each player according to the following rules.

Same rule: If both players spend the same number of coins, player 2 gains 1 coin.
Off-by-one rule: If the players do not spend the same number of coins and the positive difference between the number of coins spent by the two players is 1, player 2 is awarded 1 coin.
Off-by-two rule: If the players do not spend the same number of coins and the positive difference between the number of coins spent by the two players is 2, player 1 is awarded 2 coins.

The game ends when the specified number of rounds have been played or when a player’s coin count is less than 3 at the end of a round.

The CoinGame class is shown below. You will write two methods in the CoinGame class.

public class CoinGame

{

private int startingCoins; // starting number of coins

private int maxRounds; // maximum number of rounds played



public CoinGame(int s, int r)

{

startingCoins = s;

maxRounds = r;

}



/** Returns the number of coins (1, 2, or 3) that player 1 will spend.

*/

public int getPlayer1Move()

{

/* implementation not shown. */

}



/** Returns the number of coins (1, 2, or 3) that player 2 will spend, as described in part (a).

*/

public int getPlayer2Move(int round)

{

/* to be implemented in part (a) */

}



/** Plays a simulated game between two players, as described in part (b).

*/

public void playGame()

{

/* to be implemented in part (b) */

}

}

In the simulation, player 2 will always play according to the same strategy. The number of coins player 2 spends is based on what round it is, as described below.

(a) You will write method getPlayer2Move, which returns the number of coins that player 2 will spend in a given round of the game. In the first round of the game, the parameter round has the value 1, in the second round of the game, it has the value 2, and so on. The method returns 1, 2, or 3 based on the following rules.

If round is divisible by 3, then return 3.
If round is not divisible by 3 but is divisible by 2, then return 2.
If round is not divisible by 3 and is not divisible by 2, then return 1.
Complete method getPlayer2Move below by assigning the correct value to result to be returned.

/** Returns the number of coins (1, 2, or 3) that player 2 will spend, as described in part (a).

*/

public int getPlayer2Move(int round)

{

int result;

return result;

}

Write the method playGame, which simulates a game between player 1 and player 2, based on the rules and example shown at the beginning of the question. Both player 1 and player 2 start the game with startingCoins coins. Computer player 1 spends 1, 2, or 3 coins based on the value returned by the method getPlayer1Move(). Computer player 2 spends 1, 2, or 3 coins based on the value returned by the method getPlayer2Move().

The game ends when maxRounds rounds have been played or when a player’s coin count is less than 3 at the end of a round.

At the end of the game, the winner is determined according to the following rules.

If both players have the same number of coins at the end of the game, the method prints "tie game".
If player 1 has more coins than player 2, the method prints "player 1 wins".
If player 2 has more coins than player 1, the method prints "player 2 wins".
(b) Assume that getPlayer2Move works as specified, regardless of what you wrote in part (a) . You must use getPlayer1Move and getPlayer2Move appropriately to receive full credit.

Complete method playGame below.

/** Plays a simulated game between two players, as described in part (b).

*/

public void playGame()

Answers

[A] Let's simplify the getPlayer2Move rules first.

If round is divisible by 3, then return 3

if a number is divisible by another number that means the remainder of the division is 0. We can write the code as follows:

if (round%3 == 0)

result = 3;

If round is not divisible by 3 but is divisible by 2, then return 2.

Same as the previous one, we are going to use the remainder operation. We can use an else-if condition here.

else if (round%2 == 0)

result = 2;

If round is not divisible by 3 and is not divisible by 2, then return 1.

An else would work fine here.

else

result = 1;

The full code of part A is attached below.

[B]

playGame method:

Let's have a quick look at the game rules first:

If both players spend the same number of coins, player 2 gains 1 coin.

This can be translated to if player1Spending == player2Spending, then player2 gets a coin.

If the players do not spend the same number of coins and the positive difference between the number of coins spent by the two players is 1, player 2 is awarded 1 coin.

If the absolute value of (player1Spending - player2Spending == 1) then player2 gets awarded.

If the players do not spend the same number of coins and the positive difference between the number of coins spent by the two players is 2, player 1 is awarded 2 coins.

We can either use an else statement or a separate conditional statement here, but I'll go for the else statement.

We can use a while loop to detect when the game ends, either a player's coins is less than 3 OR when the maxRounds have been played.

how do you change your snap c hat name plz?

Answers

You can’t change it!! I know it sucks:(

Answer:

You can't change your username but you can change your name.

Explanation:

Tap on the friend's name you'd like to change. Tap on the settings icon that appears next to their name off to the right. Tap on Edit Name in the popup menu. Type in the name you'd like to appear when this person communicates with you.

Q13. On which option do you click to
access 'Insert' and 'Delete' option ?
Formulas - cells
Ο Ο.
Page Layout - cells
Home - cells
o
All of these​

Answers

Answer:

The answer is "Home cells Or Home Tab".

Explanation:

The Excel Home Tab is also known as the home cell, it also is used to execute the standard commands like bold, highlight, copy/paste. It also uses templates in a worksheet for cells, which is used to Insert and Delete Cells, and the wrong cell can be defined as follows:

In choice Formulas cell or Tab it is used to add the formula, that's why it is wrong.On the choice page cell or Tab is used to view the data, that's why it is wrong.

Consider a scenario in which you are trying to communicate to your parents that you should have a later curfew. Write a dialogue between you and your parent(s) detailing this conversation. Keep in mind the principles of communication.

Answers

Explanation:

In this example, the scenario will be the fact that I have started high school. I believe that because of this, my curfew should be different. This is an example of a dialogue that would discuss this

Me: I need a later curfew I have so much things to do and don't have time to do what I want , i am 16 now.

Mom: no you need to go to bed early so you can do what you need not what you want.

Me:ok ,  make you happy for now but if you don't let me now I'm going to later this will cause experiences that I have never encountered later in life that I could know about sooner but couldn't because i was restricted and when I have less common sense then everyone when I'm older it's your fault

How can you save without name folder in desktop ?​

Answers

Answer:

Right click on the folder and click on rename or just press F2 function button. Then just press the ALT key and type in 0160 numerically, and then let go of the ALT key. Make sure you use the numeric keys on the right side of the keyboard to type the digits. After doing this, the folder will exist without a name.

Answer:

we can save without name folder in desktop by pressing space in naming box and press enter

-(PROJECT: SHADOW_ACTIVATED.)-

Answers

Answer:

OH NO!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Explanation:

WE'RE GONNA DIE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

(?_?)             o_O               O_o              (¯(●●)¯)

Which of these words is used to begin a conditional statement?
when
input
if
until

Answers

Answer:

'if'

Explanation:

The if word is used in an if-statement (a type of conditional statement) that allows the computer to do certain computations based on what the conditional statement evaluates to.

Hope this helps :)

How will you search for your preferred data in a long list by applying filtering. In MCS exel

Answers

Select the Data tab, then click the Filter command. Click the drop-down arrow for the column you want to filter. The Filter menu will appear. The Custom AutoFilter dialog box will appear.

SOMEONE PLEASE HELP ME FAST PLEASE!!!

Answers

Answer:

I think it the first one

Explanation:

Does anyone know where i could watch the move
“little house: look back to yesterday” i cant find it ANYWHERE!!!!

Answers

Answer:

AMC Rosemary Square 12 and Apple The Gardens Mall and Muvico Theaters Automatic Ticketing and Rosemary Square and Apple Wellington Green and Walmart Supercenter

Explanation:


How can you refer to additional information while giving a presentation?

Answers

The most common way I've seen is to have a slide where you have the additional information. It can be phone numbers, email address, websites, books, anything you want to refer to.
People tend to photograph these slides so make sure the information is error free and that you add you own marketing info to the slide as well.

Which of the following would you use to search a table in Excel?

1Points
A
Decenter

B
Merge

C
Find and Select

D
Clear Rules

Answers

Answer:

Which function would you use if you wanted to count the number of values, but ignore the cells that have text or are empty

Which function would you use if you wanted to count the number of values, but ignore the cells that have text or are emptya COUNT

Which function would you use if you wanted to count the number of values, but ignore the cells that have text or are emptya COUNTb. COUNTA

Which function would you use if you wanted to count the number of values, but ignore the cells that have text or are emptya COUNTb. COUNTAc. COUNTBLANK

Which function would you use if you wanted to count the number of values, but ignore the cells that have text or are emptya COUNTb. COUNTAc. COUNTBLANKd. COUNTVALUES

Answer:

C. Find And Select

Explanation:

I hope this help you

What do you think are the downside of this trend if we want to secure proper information dissemination

Answers

Answer:

Information is often disseminated in order to educate, explain or promote a concept, process or principle. ... The following are considered to be the main objectives of disseminating information in the TAP. a)Promote results. TAP has to ensure a wide dissemination of its projects' results of activities.Interpretation becomes easier when the evolution and statistical trend of this indicator is ... No matter the age of the learner, one must cons. ... DOE shall disseminate to the public, in an appropriate manner, information.

Order the steps for using the Rules Wizard to create an email rule.
Select the Home tab, and
click Rules button.
Click New Rule, and select Make any exceptions, and
a template.
name the rule.
Edit a description of the
rule by adding values.
Select Manage Rules and
Alerts

Answers

To use the Rules Wizard to create an email rule, you can follow these steps:

Select the Home tab and click the Rules button.Click New Rule and select a template.Edit a description of the rule by adding values and making any exceptions.Name the rule.Select Manage Rules and Alerts to save the rule.

What is the email rule about?

Below is the process in a more detailed form:

Open your email client and go to the Home tab.Click the Rules button, which is usually located in the Move section of the ribbon.In the Rules dialog box, click the New Rule button.In the Rules Wizard, choose a template that best fits your needs. You can also choose to create a custom rule by selecting "Start from a blank rule."Follow the prompts in the wizard to specify the conditions and actions for the rule. You can specify values and exceptions, such as the sender or recipient of the email, or the subject of the email.Give the rule a name and click Finish to save the rule.

Therefore, To manage your rules, click the Manage Rules & Alerts button in the Rules dialog box. From here, you can edit or delete existing rules, or create new ones.

Learn more about email rule from

https://brainly.com/question/4783467
#SPJ1

SOMEONE PLEASE HELP ME PLEASE!!!!!!!!

Answers

Answer:

Brainstorm and begin sketching new oven designs

When a loop executes, the structure-controlling condition is ______________. Group of answer choices tested only if it is true, and not asked if it is false tested exactly once tested either before or after the loop body executes never tested more than once

Answers

Answer:

tested either before or after the loop body executes

Explanation:

When a loop executes, the structure-controlling condition is "tested either before or after the loop body executes."

This is evident in the fact that during loop execution, the control structure moves across the statements subsequently, should the statement be true, the loop execution continues until it becomes false, then the loop terminates.

When a loop executes, the structure-controlling condition is tested either before or after the loop body executes which is the third option as in programming, loops are used to repeat a certain block .

When the loop is encountered, the structure-controlling condition is evaluated once at the beginning of each iteration, and if the condition is true, then the loop body is executed. If the condition is false, the loop is exited, and the program execution continues with the next statement following the loop, and the key characteristic is that the structure-controlling condition is tested exactly once per iteration.

Learn more about the loop here.

https://brainly.com/question/20344495

#SPJ6

Formula for adding values of cells A9 to A15 is
Please answer fast

Answers

Answer:

This is my opinion. ^_^

You need to sum a column or row of numbers, let Excel do the math for you. Select a cell next to the numbers you want to sum, click AutoSum on the Home tab, press Enter, and you're done. When you click AutoSum, Excel automatically enters a formula (that uses the SUM function) to sum the numbers.

The formula to add the values of the cell A9 to A15 is =SUM(A9:A15)

What is a cell in excel?

Cells are the boxes that appear in the grid of an Excel worksheet such as this one. On a worksheet, each cell is identified by its reference, the column letter and row number that intersect at the cell's location.

This cell is in column D and row 5, so it is designated as cell D5. In a cell reference, the column always comes first.

The formula combines values from 9 to 15 columns or rows.

The Sum keyword is used to add any number of values together and calculate their total.

The ":" symbol indicates the range that must be added together. Another method of adding is to simply select the values to be added and then select auto sum- then sum.

Thus, =SUM(A9:A15) is the formula for adding values of cells A9 to A15.

For more details regarding excel, visit:

https://brainly.com/question/3441128

#SPJ6

Your company decided to upgrade the older office Ethernet network and needs the fastest speed possible but has decided against fiber optic cable. What is your solution for this problem?

Answers

Answer:

10G Ethernet

Explanation:

These are the options for the question;

A) 10BASE Ethernet

B) Gigabit Ethernet

C) Fast Ethernet

D) 10G Ethernet

From the question, we are informed about instance of my company deciding to upgrade the older office Ethernet network and needs the fastest speed possible but has decided against fiber optic cable. In this case my solution for this problem is getting

10G Ethernet. Ethernet can be regarded as traditional technology that connects devices in LAN(wired local area network) as well as WAN(wide area network) which allows them to have communication with each other through a protocol, this protocol is reffered to as common network language, it also be regarded as rules. 10 Gigabit Ethernet which is a technology ofgroup of computer networking that enables transmission of Ethernet frames at high rate of 10 gigabits per second. Therefore, 10G Ethernet is the solution since we need

the fastest possible speed.

Cheri's teacher asked her to write a program using the input() function. What will this allow her program to do?

Answers

Answer:

See explanation

Explanation:

Irrespective of the programming language, the input() function will allow Cheri's program to be able to accept user input.

Take for instance, the programming language is python, an expample of how the input function can be used is:

userinput = input("Enter a word: ")

The above instruction will allow her program to accept a string value.

The input() function can be used alongside different variable types.

Answer:

give the other guy brainliest

Explanation:

You have verified that all your wireless settings are correct. What is most likely the problem if your laptop has recently been serviced and wireless connectivity has stopped working?

Answers

Answer:

The wireless (Wi-Fi) antenna connector is not connected properly.

Explanation:

In this scenario, you have verified that all your wireless settings on your network device such as a router, access point, switch and laptop are correct. Thus, what is most likely the problem if your laptop has recently been serviced and wireless connectivity has stopped working is that, the wireless (Wi-Fi) antenna connector is not connected properly.

A wireless (Wi-Fi) antenna connector refers to a coaxial cable connector installed on a laptop so as to enable it to receive nearby radio frequency (RF) signals in order to successfully establish a network connection. Thus, when it is not installed properly, wireless connection on the laptop would not be available.

What responds to both visual appeal and functional needs? (1 point) A.) applied art B.) performance art C.) fine art D.) visual art

Answers

Answer:

A.) artes aplicadas

Explanation:

Which feature in Access 2016 will ensure that every foreign key in a table has a link to a primary key in another
table?

O References
O Referential Integrity
O Autocorrect
O Data Source Binding

Answers

Answer:

B

Explanation:

edge :p

Other Questions
Guys please help me I have a final exam a 20.0 l tank of co2 contains 68.0 grams of gas at 500.0 kpa of pressure what is the temperature of the tank ? In 2000, in order to reduce the unemployment rate, France mandated all employers with 20 or more employees to reduce the workweek to 35 hours. Prior to the new law, the unemployment rate in France was 12%. In a random sample of 500 French workers taken a few years after the new law went into effect, 53 workers were found to be unemployed. Using the p-value method, conduct a hypothesis test to determine if the French unemployment rate dropped after the enactment of the 35- hour workweek law. Assume the significance level as 0.05. (7 Points) Bottles of sparkling water usually cost $1.69 each. This week they are on sale for 4 for $5 You bought one last week and one this week. Did you pay more or less for the bottle this week? According to the information in paragraph 2, why is anthracite able to produce a significant amount of heat? A. because it is easily ignited B. because it is dense and compact C. because it is a plentiful type of coal D. because it is a cheap source of energy how many of the equations listed below represent the line passing through the points (2,3) and (4,-7) Danny is 5 years old and weighs 46 pounds. He is sitting on a swing when his sister Stacey pulls him and the swing back horizontally through an angle of = 45.0 and then holds him at static equilibrium. Find the magnitudes of both H and T. A runner burns 100 Calories for every 15 minutes spent running. How many hours of running would it take for a runner to burn 600 Calories? Three quantum numbers are derived from Schrodingers equation that describe the probability of finding an electron around a nucleus: the principal quantum number, the angular momentum quantum number, and the magnetic quantum number. Explain each quantum number, including associated shapes, numbers, letters and values. (please help) In parallelogram STUV, find the mTUV. What information about the word compliment can be found in both the dictionary and thesaurus entries?antonymssynonymspronunciationspartsof speech (20 POINTS!!) please help me write a short reference page on chemical bonds (anything helps) differentiate the characteristics of ionic and covalent bonds summarize the steps and rules for naming IONIC and COVALENT bonds describe the role an elements charge has in writing and naming bonds - how do roman numerals change the process of naming ionic compounds have a good day :) Photons with the highest energy have the ____A. strongest positive chargeB. longest periodC. highest amplitudeD. shortest wavelength In January of 2020, Wella and Kip agreed to purchase a home at a purchase price of $546,300. They would like to hold onto as much of their savings as they can, but they have chosen to make a down payment sufficient enough to qualify for a conforming loan. What is the minimum down payment they can make to reach the conforming loan limit but still retain savings In which part of the plot does one or more of the characters reach a breaking point?A.rising actionB.climaxC.conflictD.resolution Each of the following is an example of a special district, EXCEPT:A.Buffalo School DistrictB.US Department of DefenseC.Los Angeles Port AuthorityD.Evansville Sewage Treatment ProjectPlease select the best answer from the choices providedABCD help asap read the directions and ill give brainliest Kim and Julio go to a raceway to watch Julio's older brother, Raul,compete. Raul's car covers the 2.5 km in 12 seconds, reaching a speed of180 km/h. Use the equation below to determine the rate of accelerationof Raul's car.In this equation, a is acceleration, Vf is the final velocity, v; is the initialvelocity, and t is time. (Hint: The initial velocity is 0 km/h.)Ve-V;a =tA. What is the final velocity of Raul's car? (Select]B. What is the initial velocity of Raul's car? [Select]C. What was the total time Raul's car traveled?[ Select]D. Solve for the acceleration of Raul's car.[ Select ] 2x+20=3x-10 solve for x At the movie theater,each chrink costs 3dollars and each box ofcandy costs x dollars.Charlie bought 2 drinksand one box of candyTyrell bought I drink and 3boxes of candy Write asimplfled expressionrepresenting how muchmone Charlie spent. Complete the table for the equation y = x - 2. Then use the table to graph the equation.