"The Mediterranean was still attacking them, wave after wave
trying to drown them..."
What figurative language is used?
A.Onomatopoeia
B.Personification
C.Simile
D.Metaphor
After reading the sentence and the options, we can say that the figurative language used is the following:
B. Personification
What is personification?It is the figurative language that gives human traits and behaviors to inanimate objects.
For example, in the sentence, "The wind kept on singing and the beautiful flowers danced to it," we have personification. The wind cannot really sing, and flowers cannot really dance.
The purpose of the author would be to convey the idea that the movement of the flowers in the wind was so beautiful that it reminded her of dancing.
How about the sentence in the question?In the sentence we are analyzing here, there is personification when the author says "The Mediterranean was still attacking them." The Mediterranean is a geographical region that encompasses certain countries and a sea.
A geographical region itself cannot attack. The people who live in it can, however. The author personified the Mediterranean with the purpose of indicating the its people were the ones attacking.
Learn more about personification here:
https://brainly.com/question/24772036
what is the cd player one
compare romeo and mercutio in these lines from act i, scene iv of romeo and juliet. romeo: give me a torch: i am not for this ambling; being but heavy, i will bear the light. mercutio: nay, gentle romeo, we must have you dance. romeo: not i, believe me: you have dancing shoes with nimble soles; i have a soul of lead. which statement about this dialogue is true?
Romeo and Mercutio are close friends- this can be concluded form Act i Scene iv of Romeo and Juliet.
This is clear from their initial interactions with one another. Romeo's closest friend is Mercutio. When they are together, Romeo admires Mercutio.
Romeo is devastated.
He is a quick lover, but he doesn't always get what he wants or needs.
He seems destined to fall victim to love's deception.
You have dance shoes...could be interpreted as a premonition of what will happen next, when accidentally Mercutio is hurt as a result of Romeo's move, when Romeo would be influenced by Mercutio.
Mercutio too tries to convince Romeo that love is easy, but he fails. Romeo retorts after his death.
learn more about "Romeo and Juliet" here https://brainly.com/question/10468114
#SPJ4
Dally lies and sends the cops to the wrong location. Where does he tell them that Johnny and Ponyboy went?
Answer:
he told them that the perpetrators fled to Texas.
Think Use what you learned from reading the article to respond to the
following questions.
Reread paragraph 1. Choose the two statements that best tell why
the bicycle was a better machine by 1839.
A A bar allowed the rider to steer.
B
A wooden frame meant that the bicycle was lighter.
Foot pedals meant that bicycles could move faster.
D The first bicycles could move like a scooter.
C
The front wheel was larger than the rear wheel.
E
A wooden frame meant that the bicycle was lighter. The first bicycles could move like a scooter. Two-wheeled vehicles that the rider must balance date back to the early 19th century. The German draisine, which dates back to 1817, was the first mode of transportation to use two wheels arranged sequentially and is thus considered the forerunner of the bicycle.
What is history of bicycle ?German Baron Karl von Drais, a servant of the Grand Duke of Baden in Germany, is the first person to make a credible claim for a bicycle that is nearly new. In 1817, Drais created his Laufmaschine, which the press referred to as the Draisine or Draisienne.
The first two-wheeled, steerable, human-powered vehicle that was commercially successful was a velocipede, also known as a hobby horse or dandy horse, and it was invented by Karl von Drais in 1818. It was initially produced in France and Germany.
Possibly the most significant advance in cycling history was the creation of the safety bicycle. Their use and public opinion changed from being seen as a risky toy for athletic young men to becoming a standard mode of transportation for both men and women of all ages.
The direct front wheel drive of the high-wheeler limited its top speed in addition to the obvious safety issues. The dwarf bicycle, illustrated by the Kangaroo, was one attempt to address both issues using a chain-driven front wheel.
To learn more about bicycle refer :
https://brainly.com/question/5338580
#SPJ13
according to lincoln what did our fathers " creat thirty seven years ago
Answer:
According to Lincoln, what did "our fathers" create eighty-seven years ago? "Our fathers" created the US Constitution eighty-seven years ago.
Read the excerpt from Homecoming.
At half-past eight, Dicey herded everybody back into the mall, to use the bathrooms they had found earlier. Later, Sammy and Maybeth fell asleep easily, curled up along the back seat. James moved up to the front with Dicey. Dicey couldn't see how they were both to sleep in the front seat, but she supposed they would manage it. James sat stiffly, gripping the wheel. James had a narrow head and sharp features, a nose that pointed out, pencil-thin eyebrows, a narrow chin. Dicey studied him in the darkening car. They were parked so far from the nearest lamppost that they were in deep shadows.
With her brothers and sisters near, with the two youngest asleep in the back seat, sitting as they were in a cocoon of darkness, she should feel safe. But she didn't. Though it was standing still, the car seemed to be flying down a highway, going too fast. Even the dark inside of it was not deep enough to hide them. Faces might appear in the windows at any time, asking angry questions.
Based on the excerpt, which best describes Dicey’s mood?
She is very worried about what would happen to her family.
She is in denial about her family’s present circumstances.
She is trying to stay upbeat and carefree whenever possible.
She is having a hard time feeling safe in almost all situations.
Answer:
She is having a hard time feeling safe in almost all situations.
Explanation:
(I am not completely sure that this is the answer)
Answer:
D on edge
Explanation:
The juicy steak sizzled on the grill. What type of figurative language does this sentence contain?
Answer:
Onomatopoeia
Good luck
Please read the question before providing an answer
The head librarian wants everybody to know the top-level categories of the Dewey Decimal System. This is the first step towards finding a book in a library. And in a small library, that might be enough to locate the book you are looking for. Create a match-the-columns question system to allow users to practice the categories.
Write a C# WPF software application using visual studio that fulfils the following requirements:
- When the user chooses the Identifying areas task, they should be presented with a user interface where they will match two columns: call number (top-level only) and description.
- The user shall be allowed to answer as many questions as they want to.
- The questions should alternate between matching descriptions to call numbers and call numbers to descriptions.
- Each question should have four randomly selected items in the first column and seven possible answers (three of which are incorrect) in the second column.
- Implement a gamification feature to motivate users to keep using the application.
Technical requirements:
- Store the call numbers and their descriptions in a dictionary.
An illustration of a C# WPF software application that satisfies the specifications.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
namespace DeweyDecimalSystemApp
{
public partial class MainWindow : Window
{
private Dictionary<string, string> callNumbers = new Dictionary<string, string>()
{
{ "000", "General Knowledge" },
{ "100", "Philosophy" },
{ "200", "Religion" },
{ "300", "Social Sciences" },
{ "400", "Language" },
{ "500", "Natural Sciences and Mathematics" },
{ "600", "Technology (Applied Sciences)" },
{ "700", "Arts and Recreation" },
{ "800", "Literature" },
{ "900", "History and Geography" }
};
private List<string> shuffledKeys;
private Random random = new Random();
private int currentQuestionIndex = 0;
private int correctAnswers = 0;
public MainWindow()
{
InitializeComponent();
shuffledKeys = callNumbers.Keys.ToList();
ShuffleKeys();
ShowNextQuestion();
}
private void ShuffleKeys()
{
int n = shuffledKeys.Count;
while (n > 1)
{
n--;
int k = random.Next(n + 1);
string value = shuffledKeys[k];
shuffledKeys[k] = shuffledKeys[n];
shuffledKeys[n] = value;
}
}
private void ShowNextQuestion()
{
if (currentQuestionIndex >= shuffledKeys.Count)
{
// All questions answered
MessageBox.Show($"You answered {correctAnswers} out of {shuffledKeys.Count} questions correctly!", "Quiz Completed");
return;
}
string currentKey = shuffledKeys[currentQuestionIndex];
string currentDescription = callNumbers[currentKey];
List<string> answerOptions = shuffledKeys
.Where(k => k != currentKey)
.OrderBy(k => random.Next())
.Take(3)
.ToList();
answerOptions.Add(currentKey);
answerOptions = answerOptions.OrderBy(k => random.Next()).ToList();
questionTextBlock.Text = $"What is the description for call number: {currentKey} ?";
answersListBox.ItemsSource = answerOptions;
answersListBox.SelectedItem = null;
currentQuestionIndex++;
}
private void CheckAnswerButton_Click(object sender, RoutedEventArgs e)
{
string selectedAnswer = answersListBox.SelectedItem as string;
string correctAnswer = shuffledKeys[currentQuestionIndex - 1];
if (selectedAnswer == correctAnswer)
{
correctAnswers++;
feedbackTextBlock.Text = "Correct!";
feedbackTextBlock.Foreground = Brushes.Green;
}
else
{
feedbackTextBlock.Text = $"Incorrect. The correct answer is: {callNumbers[correctAnswer]}";
feedbackTextBlock.Foreground = Brushes.Red;
}
ShowNextQuestion();
}
}
}
Using Visual Studio, make the following modifications:
1. In Visual Studio, start a new WPF Application project.
2. Substitute the following XAML code for the MainWindow.xaml file's content:
<Window x:Class="DeweyDecimalSystemApp.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Dewey Decimal System Quiz" Height="400" Width="600">
<Grid>
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock x:Name="questionTextBlock" FontSize="20" Margin="0 0 0 20" TextWrapping="Wrap" TextAlignment="Center"/>
<ListBox x:Name="answersListBox" Width="200" Height="100" SelectionMode="Single" Margin="0 0 0 20"/>
<Button x:Name="checkAnswerButton" Content="Check Answer" Width="100" Click="CheckAnswerButton_Click"/>
<TextBlock x:Name="feedbackTextBlock" FontSize="16" Margin="0 20 0 0" TextWrapping="Wrap" TextAlignment="Center"/>
</StackPanel>
</Grid>
</Window>
3. Replace the contents of the 'MainWindow.xaml.cs' file with the C# code provided above.
4. Build and run the application to test it.
To learn more about software application link is here
brainly.com/question/4560046
#SPJ4
How is the main character in The Hobbit, Bilbo Baggins, described?
Question options:
A. adventurous
B.poor
C.not well-respected
D. wealthy
Answer:
b
Explanation:
A person's name, accent, usage of powerful and powerless speech, and affiliative language can affect their a. Attitude
b. Status
c. Intelligence
d. Responsibility
A person's name, accent, usage of powerful and powerless speech, and affiliative language can affect their Status.
The person's name, accent, usage of powerful and powerless speech, and affiliative language are social factors that influence the individual's social status. Social status refers to the social ranking of an individual in a group or society.
The accent is a manner of speaking a language that is characteristic of a specific region, group, or social class. The accent of an individual may reflect the social class or geographical region they come from. This, in turn, influences how they are perceived by others.
A person's name can also influence their social status. For instance, a name that is hard to pronounce or sounds foreign might lead to misinterpretations about the person's background, education, or status.
Powerful and powerless speech is a social factor that influences social status. The language used by individuals can be perceived as either powerful or powerless. For instance, powerful language is used by people who have authority, such as politicians, managers, or teachers. In contrast, powerless language is used by individuals who lack authority or are in a subordinate position.
Affiliative language is a social factor that influences social status. This type of language is used by individuals to show affiliation or belongingness to a group. For instance, people might use affiliative language to show their allegiance to a political party or a religious group. Hence, the person's name, accent, usage of powerful and powerless speech, and affiliative language can affect their status.
Learn more about social status here:
https://brainly.com/question/28436507
#SPJ11
Locate a participle not the entire participle phrase in the word it modifies. Reminding the younger children to walk carefully, the guy left the group into the cave. Participle modified
Answer:
Participle: Reminding
Word Modified: Guide
Explanation:
A participle is a verbal acting as an adjective in a sentence. There are two types of participles: the present participle, which ends in “-ing,” like “rising,” and the past participle which is formed from the past tense of a verb, such as “swollen” and “saved.”
In the sentence provided, “Reminding the younger children to walk carefully” is the entire participle phrase, since it is modifying or adding further information to the noun “guide” (adjectives modify nouns). Now, the participle of this phrase is “reminding” (it is a verbal ending in “-ing”) and all the other words of the phrase are their objects and modifiers.
Read this section the poem "White-Eyes."
I don't know the name of this bird,
I only imagine his glittering beak
tucked in a white wing
while the clouds—
which he has summoned
from the north—
which he has taught
to be mild, and silent—
thicken, and begin to fall
into the world below
like stars, or the feathers
of some unimaginable bird
How does the structure support the big idea in this section of the poem? Check all that apply.
The lines seem to float on the page like a bird’s feathers.
The stanzas seem to take the shape of bird wings.
The lines in the first stanza start long and then get short, as if they are moving down.
The stanzas seem to take the shape of a bird’s nest in a tree.
The lines are spread all over the page like stars in the sky.
Answer:
b c e
Explanation:
The answers are B, E, and C.
during andrew jackson’s presidency, the nullification crisis highlighted the controversies between what two ideas?
Answer:Although the nullification crisis was ostensibly about South Carolina's refusal to collect federal tariffs, many historians believe it was actually rooted in growing Southern fears over the movement in the North for the abolition of slavery.
Explanation:
MARKING BRAINLIEST! read the opening paragraphs in “a modest proposal” and find the satirical techniques, or how the author showed you satire in the beginning. i need this in a PQC. please answer asap, thank u
Swift provides a proposal in "A Modest Proposal" to end the Irish famine in the early 1700s.
What are the satires in "A Modest Proposal"?
Swift utilised satire in this instance to ridicule the affluent people's treatment of the impoverished people during the famine and to convey the issue of poverty in Ireland. To be clear, Swift is not advocating eating children as a feasible solution to the issue; rather, he is highlighting the problems he sees with the Irish government while illustrating the uncaring and harsh mentality of the privileged. Swift has an intense, sombre tone throughout "A Modest Proposal" as a whole.
A Modest Proposal makes its argument using a technique known as satire, which is the use of sarcasm, comedy, or exaggeration to critique the beliefs of others. Swift plainly has no true desire for the Irish people to sell their children as food, but he is attempting to make a point by utilising the absurd idea.
The pamphlets that were being distributed at the time are parodied in Swift's song "A Modest Proposal." He emphasises this by making fun of the fake modesty in the tone of many of his contemporaries' pamphlets through the use of language throughout the poem, including the term "modest" in the title. Although their approach appeared logical, their suggestions revealed a British ruling class arrogance toward their citizens in Ireland that is all too prevalent.
Swift expresses his mounting rage at the ineptitude of Irish politicians, the hypocrisy of the affluent, the oppression of the English, and the poverty and misery he seen so many Irish people experiencing in his proposal. Swift's disdain for the Irish people's seeming unwillingness to stand up for themselves is shown in "A Modest Proposal," which laments the grim predicament of an Ireland that is almost entirely exploited by England. He claims that the Irish themselves are also to blame for the level of poverty in their country, not only the English.
To learn more about "A Modest Proposal" from the given link
https://brainly.com/question/9066127
#SPJ1
read the opening paragraphs in “a modest proposal” and find the satirical techniques, or how the author showed you satire in the beginning. i need this in a PQC. please answer asap, thank u
Sort these statements by identifying whether they are objective or subjective.
Independence Day is July 4.
Objective
Everybody loves the summer.
Cold weather is awfull
Pumpkin-picking is fun!
Intro
Skiing is a sport.
Bears hibernate in winter.
Subjective
✓ Dong
The Objective statements are "Independence Day is July 4. Bears hibernate in winter. Skiing is a sport." and Subjective statements are "Everybody loves the summer. Cold weather is awful. Pumpkin-picking is fun!"
Objective statements are those that are founded on facts and can be supported by evidence. They are often created without bias or opinion and provide the facts exactly as they are. For instance, "The sun rises in the east every day."
Subjective statements are those that are based on personal opinion and cannot be shown to be true or untrue. They are usually biassed and can be impacted by sentiments, values, and beliefs. "The sunset, for example, is the most beautiful part of the day."
To learn more about objective and subjective statement link is here
brainly.com/question/22839811
#SPJ1
multiple language is better than single language why?
Answer:
Because when you go to a different country and they speak a different language that would be nice to know many languages so that you know how to speak them when you go to a different country.
Explanation:
Thats what I think I hope that helps
Which of the following sentences uses sequential organization?
O A. While I enjoy watching movies, I prefer to read books because I'd
rather visualize the story in my mind than watch it on the screen.
O B. When you arrive at the hotel you must check-in, unpack, and come
down to the dining room by 6:00 pm.
O C. If you cannot find any paper on the table, please look in the drawer
in the office.
O D. If you look to the north, you will see a large boulder on the right
and a pine tree on the left.
Answer:
D: and somehow B as well. Both are in sequences but B verbs are somehow incorrect so I would like to chose DD)
~sometimes all i think about you~
~late nights in the middle of june~
~heat waes been faking me outtt~
~cant make you happier now~
What fanfic is this from?
Answer:
Glass animals, its a song
Explanation:
Answer:
fartfic
Explanation:
What does the speaker reveal about the farm in stanza 2 of more love at first sight?
What the speaker reveals about the farm in stanza 2 of More Love at First Sight is:
The speaker describes what she loves about the farm.Let's understand "More Love at First Sight"
More Love at First SightIn the above poem, we discover that the speaker reveals what she loves about the farm.The use of the words, "my dazzled eyes absorb the lush beauty..." actually reveals that she loved what she saw.Actually, stanza 2 doesn't specifically reveal where the farm is located.Also, stanza 2 doesn't tell us all the animals raised in the farm.Learn more about poem on https://brainly.com/question/10508723
How to say good morning in korean?
Answer:
Jon‐eun achim or its written 좋은 아침
Greek historians changed the way history was written by
A. recording not just events but the reasons for those events.
B. checking multiple sources to record events accurately.
C. writing about recent events such as the Peloponnesian War.
D. drawing on the philosophical ideas of Plato and Aristotle.
Answer:
its a recording not just events but the reasons for those events.
What do watchdogs do in real life? ✔ guard places What does the watchdog do in the fantasy world that Milo has entered? Why is the name "the watchdog" an example of wordplay in the story? ✔ The dog is also a watch.
Answer:
What do watchdogs do in real life?
✔ guard places
What does the watchdog do in the fantasy world that Milo has entered?
✔ guards time
Why is the name "the watchdog" an example of wordplay in the story?
✔ The dog is also a watch.
Explanation: I got an 100%
Comparison between wherever I hang by grace Nichols and night mail by W.H Auden
"Wherever I Hang" by Grace Nichols and "Night Mail" by W.H. Auden are two poems that explore different themes and use different literary techniques.
"Wherever I Hang" is a reflective poem that explores the speaker's sense of identity and belonging. The poem is written in free verse, with no set rhyme or meter, which gives the poem a conversational tone. Nichols uses vivid imagery to create a sense of place and to explore the speaker's connection to her surroundings. The poem is also written in the first person, which gives it a personal and intimate feel.
In contrast, "Night Mail" is a more structured poem that describes the journey of a train carrying mail. The poem is written in a set rhyme scheme and meter, which creates a sense of rhythm and movement that mimics the motion of the train. Auden uses personification to give the train a sense of agency and to create a feeling of excitement and anticipation. The poem is also written in the third person, which gives it a more objective tone.
Overall, both poems use different techniques to explore different themes. "Wherever I Hang" is a personal and introspective poem that explores the speaker's sense of identity and belonging, while "Night Mail" is a more objective and descriptive poem that describes the journey of a train.
Identify the following figure of speech The Fire hungrily ate up the wooden foundation
Answer:
Personification
Explanation:
The fire in this sentence as an inanimate object takes the place of a living thing in this sentence.
Suppose you want to use an example in your speech to describe what it is like to be a child advocate. Which of the following suggestions would make the example more effective
Make it vivid and richly textured would make the example more effective to describe what it is like to be a child advocate.
A Child Advocate is a social worker who specializes in placing children in adoptive and foster homes. This includes ensuring that the safety and well-being of the child and family is emphasized from placement to case closure.
An individual or advocacy organization that seeks to protect the rights of children who may be restricted or abused in a variety of areas due to a variety of circumstances, including domestic, physical, and sexual abuse and/or neglect.
Hence, the correct answer is Make it vivid and richly textured.
Learn more about Advocate on https://brainly.com/question/2088194
#SPJ4
Choose the correct sentence
A) If I was younger, I would travel more.
B) If I was younger, I would be travelling more.
C) If I were younger, I would travel more.
Which of the following statements uses evidence to support an
interpretation?
O A. Sara's neutral reaction to being accepted into college suggests
that she has other dreams.
B. At times, Yusef openly disagrees with Laticia about how to take on
their rising debts.
C. Christina represents the drive to achieve the fading American
Dream in our society.
D. The biggest disappointment in the play is when the character Lola
dies.
Answer:
A. Sara's neutral reaction to being accepted into college suggests
that she has other dreams.
Explanation:
Choice A is the best answer. "Sara's neutral reaction to being accepted into college" is the evidence that creates the interpretation that suggests that she has other dreams.Choice B is incorrect. "Yusef openly disagreeing with Laticia about how to take on their rising debts" is a simple observation. There is no interpretation involved. Choice C is not the best answer. "Christina represents the drive to achieve the fading American Dream in our society" is an interpretation. However, there is no evidence that suggests why Christina represents the drive to achieve the fading American Dream.Choice D is incorrect. "The biggest disappointment in the play is when the character Lola dies" is an opinion. If we were told that people left the play after Lola's death it would be considered an interpretation.Please let me know if this helped!!!
write a summary of The diary of Anne frank act II
Answer:
Anne fires off a storm of repressed anger about being a teenager trapped in the war. She blames the grownups for her problems and explodes on her mother. But after slamming the door and forgetting her cake, she discovers an unlikely ally in Peter.
Explanation:
Read the excerpt from Jackie Robinson’s letter to President Eisenhower. I respectfully remind you sir, that we have been the most patient of all people. When you said we must have self-respect, I wondered how we could have self-respect and remain patient considering the treatment accorded to us through the years. Which best explains why Robinson includes this description of Black people? to warn the president that Black people are tired of waiting and will soon take action to point out that Black people have greatly suffered for far too long to assure the president that Black people would continue to wait patiently to show that he respects the president and all he has done to help Black people
In the letter that is written by Robinson to the president Eisenhower is about the civil rights that must be given to the black people and to eradicate the racialism.
Jackie Robinson writes a letter to the president on 13th May 1958 about the civil rights that must be given to the the people who were discriminated and who were not given the justice and equality in the society. He was frustrated about the treatment of the people towards the black people so Jackie reminds the presidents about there civil rights that had been waiting to get from many years. He question the president that there self-respect has reduced due to waiting for the verdict with patience.
Robison says that he is tired for waiting for the black people how had suffered for a long period of time and who are still suffering in the present and even now they are expecting that they will get freedom from the discrimination one day. So fought for the citizenship rights of the African Americans. He express the black people who are warm and are still in hope to get the help, the honor for the country and they also built the National league.
To know more about the Jackie Robinson’s letter to President Eisenhower follow link:
https://brainly.com/question/29795946
#SPJ4