Which sentences use antonyms to hint at the meaning of the bolded words? Check all that apply.
The dog cowered and hid behind the couch during thunderstorms.
Most of the house was destroyed by the tornado, but the kitchen remained intact.
He was extravagant with money, buying everything in sight whenever he had the means.
Performing onstage caused him discomfort; he felt comfortable staying out of the spotlight.
The opportunity didn't last long; it quickly dwindled, or went away.
Hello

Answers

Answer 1

Answer:

Most of the house was destroyed by the tornado, but the kitchen remained intact.

Performing onstage caused him discomfort; he felt comfortable staying out of the spotlight.

Explanation:

I got it right on Edge, good luck :)

Answer 2

Answer:

b,d

Explanation:

edge 22


Related Questions

Using a trick or fraud to steal personal information is called (5 points)
A. hacking
B. identity theft
C. netiquette
D. scamming

Answers

-D. Scamming- like when a telemarketer called you and tries to get you to give personal information

Answer:

its D

Explanation:

ive done this before i remeber i got d

resources that can be saved through the use of computers​

Answers

Answer:

Yes. That's what the internet is all about. Saving resources through interconnected computers.

Which of the following cloud features is represented by leveraging remote monitoring and system tuning services?

Reliability

Performance

Utilization

Maintenance

Answers

Answer:

Reliability

Explanation:

Select the correct text in the passage.
Select the appropriate guidelines to create and manage files in the passage given below. (In parentheses)

Guidelines for organizing files and folders
First, (select a central location to organize all your files, folders, and sub-folders).
Then double-click the folder or folders to identify which file you want to move. Now (use Windows Explorer to navigate and paste the file in the
required location).
Effective file management helps reduce the stress of looking for files and saves you a lot of time. All file types have unique file extensions that helpyou (determine which program to use to open a particular file and to access its data.)
If your computer crashes, all files and folders on the desktop are lost and it is often impossible to recover them. You should (maintain your
personal and professional files separately.) The file system on your computer already (keeps track of the date the file was created and modified,)
Therefore, chronological sorting is not necessary.
It is a great idea to (categorize your data into folders.) It is even better to (segregate them further into sub-folders.) If you maintain a list of
sub-folders under every main folder, you will be able to access all your tasks easily. For example, you could put your school subjects under
different sub-folders to organize your data efficiently on your computer.
Any file you create and use should have a proper description. It is important to create accurate names for each file, especially if you have a large
number of files in a folder, and you need to (select a single file to work on.)

Answers

Answer:

The appropriate guidelines to create and manage files in the passage:

O.  First, (select a central location to organize all your files, folders, and sub-folders).

O.  Then double-click the folder or folders to identify which file you want to move.

O.   Now (use Windows Explorer to navigate and paste the file in the

required location).

The correct text in the passage is:

O.   It is a great idea to (categorize your data into folders.) It is even better to (segregate them further into sub-folders.) If you maintain a list of  sub-folders under every main folder, you will be able to access all your tasks easily. For example, you could put your school subjects under  different sub-folders to organize your data efficiently on your computer.

Explanation:

Answer:

Behold.

Explanation:

will give brainliest

The height or amplitude of a wave is related to the input of ________

a. energy
b.matter
c.energy and matter

Answers

Answer:

a. energy

Explanation:

The higher the amplitude, the higher the energy. To summarise, waves carry energy. The amount of energy they carry is related to their frequency and their amplitude. The higher the frequency, the more energy, and the higher the amplitude, the more energy.

Hope this helped!!!

Ummmm pls helppp



Which are the features of conditional formatting?
Conditional formatting enables you to_______
and_______

Answers

Answer:

A conditional format changes the appearance of cells on the basis of conditions that you specify.

Explanation:

If the conditions are true, the cell range is formatted; if the conditions are false, the cell range is not formatted. There are many built-in conditions, and you can also create your own (including by using a formula that evaluates to True or False).

help Which of the following triangles can be proven similar through AA?
Question 1 options:

A)

image

B)

image

Answers

A as in Ate my food ya know

The process of editing includes which of the following?
(A) Transferring photos to a computer
(B) Combining media
(C) Naming Files
(D) Keeping files secure

Answers

The answer should be

(B) combining media

Which element is the first thing you should complete when making a movie?
A script
A storyboard
Opening credits
A video segment

Answers

Answer:

storyboard!!!

Explanation:

its important to have the concept in mind before starting

I think it’s a story book

For this exercise, you will complete the TicTacToe Board that we started in the 2D Arrays Lesson.

We will add a couple of methods to the TicTacToe class.

To track whose turn it is, we will use a counter turn. This is already declared as a private instance variable.

Create a getTurn method that returns the value of turn.

Other methods to implement:

printBoard()- This method should print the TicTacToe array onto the console. The board should include numbers that can help the user figure out which row and which column they are viewing at any given time. Sample output for this would be:

0 1 2
0 - - -
1 - - -
2 - - -
pickLocation(int row, int col)- This method returns a boolean value that determines if the spot a user picks to put their piece is valid. A valid space is one where the row and column are within the size of the board, and there are no X or O values currently present.
takeTurn(int row, int col)- This method adds an X or O to the array at position row,col depending on whose turn it is. If it’s an even turn, X should be added to the array, if it’s odd, O should be added. It also adds one to the value of turn.
checkWin()- This method returns a boolean that determines if a user has won the game. This method uses three methods to make that check:

checkCol- This checks if a player has three X or O values in a single column, and returns true if that’s the case.
checkRow - This checks if a player has three X or O values in a single row.
checkDiag - This checks if a player has three X or O values diagonally.
checkWin() only returns true if one of these three checks is true.

public class TicTacToeTester
{
public static void main(String[] args)
{
//This is to help you test your methods. Feel free to add code at the end to check
//to see if your checkWin method works!
TicTacToe game = new TicTacToe();
System.out.println("Initial Game Board:");
game.printBoard();

//Prints the first row of turns taken
for(int row = 0; row < 3; row++)
{
if(game.pickLocation(0, row))
{
game.takeTurn(0, row);
}
}
System.out.println("\nAfter three turns:");
game.printBoard();



}
}

public class TicTacToe
{

private int turn;
private String[][] board = new String[3][3];

public TicTacToe()
{
for(int i = 0; i < 3; i++)
{
for(int j = 0; j < 3; j++)
{
board[i][j] = "-";
}
}
}

//this method returns the current turn
public int getTurn()
{
return turn;
}

/*This method prints out the board array on to the console
*/
public void printBoard()
{

}

//This method returns true if space row, col is a valid space
public boolean pickLocation(int row, int col)
{
return true;
}

//This method places an X or O at location row,col based on the int turn
public void takeTurn(int row, int col)
{

}

//This method returns a boolean that returns true if a row has three X or O's in a row
public boolean checkRow()
{
return true;
}

//This method returns a boolean that returns true if a col has three X or O's
public boolean checkCol()
{
return true;
}

//This method returns a boolean that returns true if either diagonal has three X or O's
public boolean checkDiag()
{
return true;
}

//This method returns a boolean that checks if someone has won the game
public boolean checkWin()
{
return true;
}

}

Answers

ndjdjdbzkdkekkdjdjdkodododofiifidididiidieiekeieidid

Your _______ can help block inappropriate content online.
1. web browser
2. Password

Answers

Answer:

web browser.

Explanation:

yea let me go post my password to block content (sarcasm)

This tool lets you insert text anywhere in your document. O Cut О сору O Drag O Paste​

Answers

Answer:

Drag or paste (im not 100% sure tho)

Explanation:

You use a Windows system that is a member of a domain. The computer is used by several different users belonging to different groups. You have a custom application on the computer, and you want to configure the firewall as follows: Allow a specific port used by the application. Open the port only for members of the Sales group. Using Windows Firewall with Advanced Security, what should you do to configure the firewall with the least effort possible

Answers

Answer:

Explanation:

Windows Firewall with Advanced Security (WFAS) is a management tool in windows which allows for precise confiuration and control of the Windows Firewall System. It allows for certain rules to be created and modified which dictate to the firewall how it must run.

The easiest way to configure the WFAS to achieve the goal stated in the question is to open the app and use the New Rule function.

To do this, one must:

Calling up the Windows Firewall with Advanced Security (WFAS) Click on the inbound rules on the top left corner of the interfaceRight clickon the rule and modify accordingly

Cheers

Other Questions
5th grade math. correct answer will be marked brainliest what will happen in 2050? Read the passage from An Ecclesiastical History of the English People, Book I, excerpted from "The Arrival in Kent of the missionaries By Pope Gregory the Great." Which is the graph of f(x)=(x-1)(x+4)? 2. What is the proper way ofwashing hands?I suppose__________ I wrote these, and was wondering which one was better....ProlougeFairies are wonderful creatures, filled with light and joy. With little silky wings and anglelic voices. They dance on the wind and fill the skies with laughter. But within them lies a darkness, like all creatures have. And when you hurt them, the darkness takes over. their wings turn black and sharp, their light turns to shadows and their voices turn to screams, They hold to hate and anger, to all the dark things that swim in mens minds, they know joy no more, and they wish to steal yours. So, Please heed my warning. and I will tell you a story, anout a fairy whom was betrayed, a fairy who lost her way, a fairy whos tears stained the world.Chapter oneHer feet skim the forest floor, her hands brush the trees, her eyes close and her lips sing. slowly she rises, her feet no longer on the ground. Her hands drop to her side but her fingers splay out and dance to her song. She twirls with grace and rises, higher, higher, higher. And following her, little bodies of light, singing a song, only they remember. They swirl around the girl and kiss her cheeks, she smiles and slows to a stop, just hovering there, above the treetops. The fairies whisper in her ears and giggle holding out their little hands, expectant. The girl laughs, a beautiful, hypnotic sound. "Shh, my little friends, here you are. Quiet now. share, would you?" She hands them crumbs of cake, velvet and chocalate and all the flavors of the wonderful substance. The fairies smile and their tinkiling filles her ears. "Yes, i know. you won, you caught up to me - but it IS harder to be faster, seein how i'm bigger than you and all." they circle her head and perch on her shoulders "But soon i'll be faster than all of you. and not even the ancient peter pan could catch me!" she smiles with the thought and slowly drifs down to the forest once more. Waving goodbye to her little friends, she races again though the forest, her feet not touching the ground.OR....She shuffled her feet and sighed, making it quite obvious that she was upset. The caseworker didn't respond. Of course. Why would she? She was only uprooting her life again. Home-hopping wasn't fun. . She had been in what? Three homes in the past year? She tried to be good, be the best. But she obviously wasn't good enough. she must have done something wrong. Something must have made them not want her. She just didnt know why she wasn't good enough. She fiddled with her name tag, which read Aria, or it was supposed to, it actually spelled Area. Sighing again she tried for a more vocal approach."Ahem." She raised an eyebrow, trying to hide the sour sting in her heart. the caseworker finally looked up "What? You hungry? Thirsty?" She shook her head after a second "Just sit still, we will have you relocated soon enough." Relocated? Was she a dog? "I was just gonna ask why i have to leave another house." The caseworker sighed "Because of...Difficulties." Aria frowned thats all they ever said. "difficluties." She hadn't relized she said it out loud until the caseworked sighed louder than she had before. "Listen, it just didn't work out. You'll be in a new home soon." Aria clenched her jaw "It's not really a home when you only live there for four months." This time the caseworker ignored her. So Aria leaned back in her seat and closed her eyes. wringing her hands until they turned white. When she opened them again the sky had turned to a pink shade, and she watched for a second as it slowly sank towards the ground. She glanced around and met the eyes of her annoyed caseworker, who obviously wanted to go home. "Get up. You're sleeping here toninght.""What-?" Aria clenched her hands, digging her fingers into her palm."I said you're sleeping here." she jabbed a finger towards a room, the door was slightly ajar and inside was a table a couple chairs and a couch. Aria frowned "On a couch?" the caseworker nodded "I'll be in the next room."please read it all and tell me which one was your favorite and why! :) The Great Pyramid was once the worlds tallest structure? True or False I need help please!! Name the type of component that has a greater resistance as the current through it increases A farmer is worried that a recent salmonella outbreak may have come from the carrots on his farm. He wants to test the carrots at the farm, but it will ruin the crop if he tests all of them.a. If the farm has 10,000 carrots growing, describe a method that wouldproduce a random sample of 10 plants.b. Why would a random sample be useful in this situation? What is the slope of the line thatpasses through these two points?(1, 2)(2, 8)(x1.y) Slope =rise (y2-y)Remember, given two points,(x2:y2) run (x2-x1) PLEASE ANSWER ASAP! NO SCAM LINKS! OR REPORTED. Whats the answer???? A figure is made up of with seven X rodes and five Y rodes . If X= 3 and Y= 5 calculate the perimeter with the formula.OPTIONS:8465040 Los ngulos de elevacin hacia unavin se miden desde la parte superior y la base deun edificio que tiene 20 m de altura. El ngulo desdela azotea es de 38, y desde la base es de 40.Calcule la altitud del avin Corbin can shoot 24 baskets In 3 minutes. Which table bestrepresents this relationship? Johnny was able to drive an average of 29 miles per hour faster on his car after the traffic cleared. He drove 30 miles in traffic before it cleared and the drove another 176 miles. If the total trip took 6 hours, then what was his average speed in traffic? consists of one or more ingredients that are stacked, layered folderd within or on the structure to form the sandwich Convert 456,300,000 to scientific notation. What were the effects that the drought had on the civilizations of the Bronze Age help me with this plsss