Permission must be sought in order to use a play that is in the public domain. True or False?

Answers

Answer 1

Answer:

False

Explanation:

Permission can't be sought in order to use a play that is in the public domain.


Related Questions

Write a program that lets the user play the game of Rock, Paper, Scissors against the computer. The program should work as follows. 1. When the program begins, a random number in the range of 1 through 3 is generated. If the number is 1, then the computer has chosen rock. If the number is 2, then the computer has chosen paper. If the number is 3, then the computer has chosen scissors. (Don’t display the computer’s choice yet.) 2. The user enters his or her choice of “rock”, “paper”, or “scissors” at the keyboard. (You can use a menu if you prefer.) 3. The computer’s choice is displayed. 4. A winner is selected according to the following rules: • If one player chooses rock and the other player chooses scissors, then rock wins. (The rock breaks the scissors.) • If one player chooses scissors and the other player chooses paper, then scissors wins. (Scissors cuts paper.) • If one player chooses paper and the other player chooses rock, then paper wins. (Paper wraps rock.) • If both players make the same choice, the game must be played again to determine the winner. Be sure to divide the program into functions that perform each major task. Include the code and the console output from running your program with test inputs in your report.

Answers

#include <iostream>

#include <ctime>

#include <conio.h>

using namespace std;

bool player_won (int player, int computer)

{

   switch (player)

   {

   case 1:

       if (computer==2)

           return false;

       else return true;

   case 2:

       if (computer==3)

           return false;

       else return true;

   case 3:

       if (computer==1)

           return false;

       else return true;

   }

}

main ()

{

   cout<<"Rock, paper scissors by TheMaster999"<<endl;

   srand (time(NULL));

   while (true)

   {

       int computer=rand()%3+1;

       int player;

       cout<<"If u choose rock type 1, if u choose paper type 2, if u choose scissors type 3"<<endl;

       cin>>player;

       if (player==computer)

           cout<<"Draw, play again"<<endl;

       else if (player_won(player,computer))

       {

           cout<<"Congratulations, you won!"<<endl;

           break;

       }

       else

       {

           cout<<"You lost :("<<endl;

           break;

       }

   }

   cout<<"Thank you, for playing my game"<<endl;

   getch();

   return 0;

}

If we were to replicate Dr. Stanley Milgram's obedience study today, do you think the results would be different?


Why or why not?

Answers

Answer:

Explanation:

The results would be exactly the same. We have learned little about authority and when to oppose it.

I'll give you an example. Last night I was in a restaurant like Taco Bell or Subway. Across from me was a girl with an ordinary backpack which was all I could see. It was quite common to see that in the University District where I was. I paid no attention until two policemen came in (both over 200 pounds -- she was tall but could not have been more than 130) and began arrest procedures. She started shouting very foul language but otherwise did not resist. They put handcuffs on her wrists which were behind her back. Again she she  used profane language only screaming that they were hurting her. It took the one police officers a moment to find his key and loosen the cuffs, which he did, but she was still uncomfortable and cursing.  

She was silent as they took her out. Nobody questioned the incident at all. Do you think Dr. Millgram would recognize this as an example of his theory? I'm sure he would. Trust me, this was not staged. There was a 3rd officer who drove the girl and one of the 2 arresting officers away.

A user is given Read permission to a file stored on an NTFS-formatted volume. The file is then copied to a folder on the same NTFS-formatted volume where the user has been given Full Control permission for that folder. When the user logs on to the computer holding the file and accesses its new location via a drive letter, what is the user's effective permission to the file?

a. Read
b. Full Control
c. No access
d. Modify
e. none of the above

Answers

Answer:

Explanation:

D

Modify can refer to changing user account permissions for file and folder access, thus giving or taking away the ability of a user to view and make changes to files or folders.

Modifying permissions can only be done by the administrator for a computer (or administrator account) or the owner of a file or folder.

The user's effective permission to the file is  d. Modify

What is modify program?

The Mentoring and Oversight for Developing Independence with Foster Youth (MODIFY) with the Center for Excellence in Disabilities (CED) provides on-going services to youth who are transitioning out of the foster care system.

To learn more about Modify, refer

https://brainly.com/question/6021549

#SPJ2

A strategy for speeding up hard drive performance is _________.

Answers

Answer:disk caching

Explanation:

Disk caching speeds up hard drive performance

Answer:

A strategy for speeding up hard drive performance is disk caching.

Individuals suffering from technology overload feel distressed when deprived of computers and mobile devices.True/fasle

Answers

Answer:

False

Explanation:

1. Perform the following Binary Additions 101101 + 10100 *

Your answer

2. Perform the following Binary Additions 01010011 + 01110110 *

Your answer

3. Compute the following 101101 - 10100 *

Your answer

4. Compute the following 11001011 - 1010110 *

your answer

Answers

Answer:

1.         carry   1  1  1

                      1  0 1 1 0 1

                      +  1 0 1 0 0

                       ------------------------

   Answer: 1  0 0 0  0 0 1  

2.         carry  1 1  1 0 1  1  

                     0 1 0 1 0 0 1 1

                  + 0 1 1  1 0  1  1 0

                  --------------------------

    Answer: 0 1  1 0 0 1 0 0 1

3.                   1 0 1 1 0 1

                    -   1 0 1 0 0

                   -------------------------

       Answer: 0 1 1 0 0 1

4.                      1 1 0 0 1 0 1 1

                      -    1 0 1 0 1 1 0

                     -----------------------------

        Answer:   01 1 1 0 1 0 1

Explanation:

In Binary addition when you add 1 + 1 = 0, carry over the 1, i.e 10

in Subtraction when you subtract 0-1 = 1,  brow 1 from left side, resulting in -1 carried over.

Answer:

Solutions:

Ans#1:

   101101

+   10100

1000001  

Ans#2:

01010011

+01110110

11001001

Ans#3:

101101

- 10100

011001  

Ans#4:

11001011

- 1010110

10010100

Explanation:

The given answers are in Binary.

In binary we add the digits in 1 and 0 form.

Addition in Binary:

1 + 0 = 1

0 + 1 = 1

0 + 0 = 0

1 + 1 = 10

Subtraction in Binary:

1 - 0 = 1

1 - 1 = 0

0 - 1 = 1 (it's because the 0 borrows a 1)

0 - 0 = 0

Write an expression that evaluates to true if the integer variable x contains an even value, and false if it contains an odd value

Answers

Answer:

Explanation:

I don't know what language you use, but mod is a common command in almost all of them. You could write it like this

for x = 1 to 10 do begin

 if x mod 2 = 0 then print x " is even."

 id x mod 2 = 1 then print x  " is odd."

end;

what are the three parts to physical security standards for various types of army equipment and the risk level

Answers

The three parts to physical security standards for various types of army equipment and the risk level is access control, surveillance, and security testing.

Further explanation

Physical security is the part of security concerned with physical measures designed to protect the assets and facilities of the organization.  

The three parts to physical security standards for various types of army equipment and the risk level is access control, surveillance, and security testing.

Access control is a security technique in which regulates who/what can view/use resources in a computing environment. The example of physical access control is the locks, badge system, and security guard.

Surveillance is the condition in which the architects seek to build spaces that are more open to security personnel and authorized users. It is also the continuous monitoring of, for example, the disease occurrence. The example of surveillance is Closed-circuit television cameras (CCTV) placed in the streets.

Security testing is the evaluation and testing the information security of hardware, software, networks, and IT environment. Error handling and specific risky functionalities are examples of security testing

Learn more

1. Learn more about the security practice in electronic banking https://brainly.com/question/7668763

 

Answer details

Grade:  9

Subject: Computers and Technology

Chapter:  Physical security standards

Keywords:  physical security, access control, surveillance, security testing

Physical security is indeed the element of insecurity that is concerned with performance barriers designed to protect both assets or infrastructure of the corporation."Access control, monitoring, and security testing" are the three components of physical security standards for various types of armed equipment or risk levels.The access control technique is a security technique that controls who/what can view/use resources in cloud computing. Locks, badge systems, & security guards are types of active access control laws.As a result of surveillance, architects construct spaces that are more easily accessible to security officials or authorized users. It involves, for instance, the continuous monitoring of illness outbreaks. Closed-circuit television cameras put throughout the street are an instance for surveillance.Tests of data security on hardware, programs, or networks were conducted as part of security testing. Studies of security of error checking or certain potentially dangerous operations are instances of security testing.That's why "Access control, monitoring, and security testing" are the three components of physical security standards for various types of armed equipment or risk levels is the correct answer.

Learn more:

security in electronic banking: brainly.com/question/7668763

Most computers today support the _________ standard, in which the computer automatically configures new devices as soon as they are installed and the PC is powered up.

Answers

Answer:

Plug and Play

Explanation:

In a display device, response rate is the time it takes for one pixel to change from black to white then back to black.​

a. True

b. False

Answers

Answer:

True

Explanation:

While looking to purchase a new monitor, it is worth considering an essential factor called response time. You might never notice this transition, but response time in monitors is the time the input signal of your monitor switches colors from “black” to “white” and then back again to black. It is time it takes to change, that can be measured and determined, and thus, a low response rate is preferred. It is an essential aspect of display devices since it is somehow dependent on the rendition of motion of the monitor screen.

Write a program to convert a person's height in inches into centimetres #and their weight in stones into kilograms. (1 inch = 2.54 cm and 1 stone = 6.364 kg)

Answers

(Using python)

When running:

measure(the height you want to enter, the weight you want to enter)

When the input is printed you have to re-enter the data (couldn’t fix that)

It will print the conversions as a result

Following are the program to convert height and weight values:

Program:

#include <iostream>//header file

using namespace std;

int main ()//main method

{

  double height, weight,h,w; //defining a doubale variable

  cout<<"Following are the converter of Weight and height: "<<endl;//print message

  cout<<"Enter the height in inches: ";//print message

  cin>>height;//input value

  cout<<"Enter the weight in stones: ";//print message

  cin>>weight;//input value

  h=height* 2.54;//converting height value into centimetres and holding its value in h variable

  w= weight* 6.364;//converting weight value into kilograms and holding its value in w variable

  cout<<"The converted height is "<<h<<" cm."<<endl;//printing the converted value

  cout<<"The converted weight is "<<w<<" kg."<<endl;//printing the converted value

  return 0;

}

Program Explanation:

Defining header file.Defining the main method.Inside the main method defining four double variables that are "height, weight, h, and w".Inside this, the "height, weight" variable is used for input value is the from user-end, and "h, w" is used to convert height and weight value into centimeters and kilograms.After converting the value using the print method that prints its values.

Output:

Please find the attached file.

Find out more information about the conversion here:

brainly.com/question/26240757

Which of the following is an example of an input device?A barcode readerAn organic light-emitting diodeAn inkjet printerA cathode ray tube

Answers

A barcode reader since it inputs data into the computer


Mary's manager told her she should insert a graphic into her documentWrite Mary a brief note describing how to insert a graphicin a word processing document.

Answers

Answer:

go to your tools bar then select insert and insert the graphic with one of the tools in the select bar.

Explanation:

Final answer:

To insert a graphic into a word processing document, choose 'Insert' from the application menu, then 'Picture' or 'Image', and browse for your graphic file. After selecting the file, click 'Insert' or 'Open' to place it in the document. Adjust its size and placement as needed.

Explanation:

Hi Mary,

To insert a graphic into your document, you'll first need to locate the appropriate graphic file on your computer or online. In your word processing program, select 'Insert' from the menu at the top of the screen. From the drop-down menu, choose 'Picture' or 'Image', and then browse for the graphic file you want to insert. Once you've selected the file, click 'Insert' or 'Open' to add it to your document. You can also adjust the size and placement of the image by clicking on it and dragging the corners or edges.

Remember, appropriate use of graphics can enhance your document and make it more interesting to read!

Good luck!

Learn more about Inserting Graphics here:

https://brainly.com/question/32881218

#SPJ2

Java and C++ are examples of _____.assembly languagehigh-level languagesmachine languagecompiler languages

Answers

Answer:

High-level languages.

Explanation:

A high-level language is a computer programming language that are closer to human language and enables a computer scientist to write definite computer instructions that are independent of a particular type of computer.

Java is a compiled as well as interpreted language, while C++ is a compiled language only. But both are high-level languages.

According to the order of operation in Excel: a. Excel performs exponentiation, then multiplication, then division, then subtraction, and then addition. b. Excel performs exponentiation, then multiplication and division, then addition, and subtraction. c. Excel performs multiplication, then exponentiation, then division, then addition, and then subtraction. d. Excel performs multiplication, then division, then exponentiation, then addition, and then subtraction.

Answers

Answer:

Option is b is correct answer. Excel performs exponentiation, then multiplication and division, then addition, and subtraction, it is correct order of operation in Excel. It is important to remember when you write any formula in Excel having different mathematical operators like +/ -/ ^/  etc, it follows a specific order and performs calculations in specific order which is termed as order of operator precedence. Each of mathematical operator has its precedence and executes in a special order set by Excel.

Explanation:

As we already know order of precedence of each mathematical operator is different in Excel. The order of operations for Excel is as follows:

Evaluate elements in parentheses.Evaluate 'ranges' ().  Evaluate 'intersections' (empty spaces).  Evaluate 'unions' (,). Perform negation (-).  determine percentages (%).  Perform exponentiation (^).  Perform multiplication (*) and division (/), both are of equal precedence.  Perform addition (+) and subtraction (-), both are of equal precedence.  Evaluate text operators like (&).  Perform comparisons like (=, <>, <=, >=).

 

Answer details  

Grade: Middle

Subject: Computers and Technology

Chapter: Order of precedence of mathematical operators

Keywords: precedence in Excel, operators precedence etc

Option (B) Excel's order of operations performs tasks in the sequence of parentheses, exponents, multiplication and division (left to right), and addition and subtraction (left to right). This sequence matches option B in the original question. Understanding the correct order ensures accurate results in Excel computations.

According to the order of operations in Excel, the correct process is: parentheses (grouping), exponents, multiplication and division (left to right), and finally, addition and subtraction (left to right). Therefore, the correct answer is:

B. Excel performs exponentiation, then multiplication and division, then addition, and subtraction.

In Excel, operations are performed based on the established order of operations rules:

Parentheses (Grouping): Operations inside parentheses are completed first.

Exponents: Powers and roots are calculated next.

Multiplication and Division: These operations are performed from left to right.

Addition and Subtraction: Finally, these operations are performed from left to right.

Harold has been working as a real estate agent. He has a lot of housing data to report and needs help organizing his data sheet for an effective presentation. In one of Harold's columns there are too many numbers after the decimal place. Harold does not need this level of detail. It is distracting from the data and he really only needs two numbers after the decimal. How could Harold make the data appear cleaner in the most efficient way?

a) decrease the column width
b) re-enter all numbers and only enter two decimal places
c) decrease the font size
d) use the Number group to decrease number of digits displayed

Answers

Answer:

d: use the Number group to decrease the number of digits displayed.

Explanation:

Click on the home tab and choose Number from the ribbon. Make sure the Number tab is selected and choose the number of decimal places you want

You are to write a series of steps that anyone could follow to solve the following three problems: 1. Even Odd a. Assume that someone tells you a number (an integer number) b. You hear the number and respond with the word even or odd 2. Average a. Assume that someone tells you between 3 and 5 numeric values. b. You hear the numbers and respond with the average is some number 3. Dog or Cat a. Explain to a child the differences between a dog and a cat. b. Your explanation could be used by a child or anyone to distinguish the difference between a dog and a cat

Answers

Answer:The image distance is found using the lens equation, 1/f=1/p+1/q, so 1/1=1/2+1/q 1, so q 1 =2; the magnification is m 1 =-q/p=-1 and the image is real since q 1 >0. Now, as you suggest, insert a diverging lens (red) with f 2 =-3 cm ( f 2 <0) 1 cm to the right of the first lens so that the first image never actually forms.

Explanation:

"Which of the following will help protect against a brute force attack?
a. A password that has six characters.
b. A password that consists of a mixture of letters, numbers, and symbols.
c. A password that consists of all capital letters.
d. A password that includes at least three consecutive letters of part of the user’s name"

Answers

Answer:

B

Explanation:

A complex and unpredictable password would prove very hard to guess or deduce for any attacker.

When would you use the "enable low-resolution video" option?

Answers

Answer:

Typically, when internet connection is not fast enough where you can watch 1080p videos, you would lower the screen resolution.

Explanation:

Higher quality videos take up more space, and if your connection is not fast enough that will lead to the video buffering.

__________bits equal one byte.EightTenSixty-fourThirty-twoSix

Answers

There are eight bits in one byte.

Hope this helps!

Which view in a presentation program displays a split window showing the slide in the upper half and a blank space in the lower half?

Answers

Final answer:

The view in a presentation program that displays a split window showing the slide in the upper half and a blank space in the lower half is called the Outline and Slide view.

Explanation:

In a presentation program, the view that displays a split window showing the slide in the upper half and a blank space in the lower half is called the Outline and Slide view.

This view allows you to see a preview of your slides in the upper half of the window, while providing a space for writing notes, creating an outline, or inserting additional content in the lower half.

By using the Outline and Slide view, you can easily plan and structure your presentation while simultaneously reviewing each slide.

jean has kept the content of her website limited to what is important; she has also ensured that the text follows a particular style and color all throughout her website. which website features has jean kept in mind?


jean has limited the content of her website to what is important; this ensures ____ (clarity, simplicity, harmony and unity) of the content. she has also formatted the text in a particular style and color throughout her website, ensuring ___ (balance, simplicity, consistency)

Answers

Answer:

clarity and balance

Explanation:

this is because firstly a website is mainly used by the public. jean reduced the content of her website so it would take people to the main reason of the why the website was created.

secondly she formatted the text and color on her website to a particular colour so it would look professional and more reasonable.

The website features has jean kept in mind is simplicity and consistency.

Simplicity in web designs is the act of removing all unwanted elements from a particular website.

It is called sleek and clean layout and a uniform colour scheme to maintain consistency.

Design consistency is the act of keeping all of the repeating elements of your website the same in the whole site.

This contains all from the placement of buttons and icons to the colors and fonts you do use.

Conclusively, a good website must be optimized for Mobile, fresh, have good quality content. etc.

Learn more from

https://brainly.com/question/14849342

Different research papers written according to the same set of style guidelines will



be formatted and structured similarly.


contain the same number of citations.


share common sources.


cover the same material.

Answers

Your answer will be A

Answer:

Different research papers written according to the same set of style guidelines will be formatted and structured similarly.

Explanation:

The set of style guidelines establishes the format in which the papers are written, despite the number of citations, the sources and the materials used in the investigation.  

The set of style guidelines generally determines: the size of the paper sheet; recommended fonts; the size of the letters; the size of the margins; how to make citations; which sections are essentials; how to include graphs, equations and tables; within others.

ramp charts are generally created in
word
lotus
excel
powerpoint​

Answers

Answer: Ramp Chrts are generally created in Excel

Ramp charts are generally created in excel

While the project seems to have an interesting approach in extracting maximum value for investors, the token has performed pretty dismally over the past year.

How does ramp work crypto?

A cryptocurrency on-ramp refers to an exchange or similar service where you can offer fiat money in return for cryptocurrency. For anyone to become involved in cryptocurrency, their first step will often be to simply buy some.

What is Excel use for?

Microsoft Excel enables users to format, organize and calculate data in a spreadsheet. By organizing data using software like Excel, data analysts and other users can make information easier to view as data is added or changed.

To learn more about Microsoft Excel, refer

https://brainly.com/question/21382498

#SPJ2




Spoons are designed to be used for:




spring hammering.



applying body filler.



identifying high and low spots.



sanding highly formed areas.

Answers

Answer:

2. Applying Body Filler

B is the answer! Hope this helped

When keyboarding, if you want to be fast and accurate you should _____. return your hands on home row with your fingers relaxed and your eyes on the text use only your index fingers to hunt and peck keep your fingers stiff and your eyes on the keys slouch in your chair and keep your fingers hovering over all of the keys

Answers

Answer:

return your hands on home row with your fingers relaxed

Explanation:

Answer:

relax fingers on the home row.

Explanation:

Assume that x is a variable that has been declared as an int and been given a value. Assume that oneMore is a function that receives a single integer parameter and returns a value that is one greater than its argument. (So if you pass 7 to oneMore it will return 8. Thus, the expression oneMore(9) has the value 10. Write an expression whose value is four more than x without using the standard Java arithmetic operators (*,+, etc.). Instead, use calls to oneMore to accomplish this. In this exercise you must write this as a single expression-- you must not write any statements. Also, you may only use the oneMore function-- no other functions or operators.

Answers

oneMore(oneMore(oneMore(oneMore(x))))


_____ are special combinations of keys that tell a computer to perform a command.

Keypads
Multi-keys
Combinations
Shortcuts


Answers

Answer: the answer would be shortcuts

Explanation:

Answer:

shortcuts

Explanation:

The narrative structure of the popular movies can be broken down into

Answers

Answer:

Three acts

Explanation:

ACT 1 is the Set up (25%): This act is what grabs the audience and within the first 10 minutes or so of the movie, they will decide whether they like the film or not.

ACT 2 is confrontation (Midpoint 50%): Act 1 ends and we jump to act 2. The main character in this section has to face problems that escalate and become more and advanced. This is where they confront their enemies quite helplessly up until a certain point where things start to turn around.

ACT 3 is the Resolution (25%): The hero takes control and achieves a final, decisive victory.

Final answer:

The narrative structure of popular movies typically follows a plot arc, which includes exposition, rising action, climax, falling action, and resolution, though variations exist such as flashbacks or theme-centered anecdotes. These structures are chosen to engage audiences and build emotional connections with the characters.

Explanation:

Narrative Structures in Popular Movies

The narrative structure of popular movies can be quite dynamic and diverse. Most narratives, including those in film, follow a general structure known as an arc. This arc typically includes the exposition, rising action, climax, falling action, and resolution, allowing for character and plot development and building the emotional impact of the story. Various movie genres, whether it be tragedy, comedy, history, or romance, usually adhere to the traditional structure of act, scene, and line, albeit with creative variations in how the plot unfolds—the sequence of events is essential for engaging the audience. For instance, a plot might evolve through flashbacks, anecdotes centered around a theme, or even in reverse chronological order, all aiming to maintain the tension and the viewer's curiosity. The movie business often influences certain repetitive elements seen in films, such as action, drama, and romance, which are believed to keep the audience engaged and coming back for more.

In the realm of narrative cinema, the plot-driven arc is only one facet of storytelling. Character-driven narratives prioritize the development of an individual, typically the protagonist, and focus on showcasing an emotional connection between this character and the audience. Therefore, when examining the structure of a narrative in popular movies, it is important to consider how both plot and character arcs play a role in shaping the story's progression and the viewers' experience.

If an image has only 4 colors, how many bits are necessary to represent one pixel’s color?

Answers

Answer:

4 colors can be represented by 2 bits and the mode CGA

Explanation:

To represent one pixel’s color in an image with 4 colors, you need 2 bits.

To determine the number of bits necessary to represent one pixel's color in an image with only 4 colors, we need to understand some basic concepts about bit representation and binary values.

A bit is the smallest unit of data in computing, representing a binary value of either 0 or 1. The number of unique colors that can be represented is calculated by the formula 2n, where n is the number of bits.

If an image has only 4 colors, we set up the equation as follows:

[tex]2n = 4[/tex]To find n, we calculate the base-2 logarithm of 4:[tex]n = log2(4)[/tex]Since 4 is 22, we see that:[tex]log2(4) = 2[/tex]

Other Questions
What is the simplest form of hi hellppp me asap with these questions plz (100 POINTS AND BRAINLIEST IF ALLL ANSWERS ARE CORRECT) 1) Read the passage and then answer the question that follows.When Mike adjusted his bicycle, I thought I was watching a chess game. He would stare at a part for a while before he acted. Then we would wait for his opponent's response. For example, he stared for ten minutes before tightening the rear sprockets. Then he rode the bike for a minute, analyzing the change in the bike's performance. At first, I thought he was too careful. Now, I realize he didn't want the bicycle to become his Waterloo.Which is a true statement about the passage?A) It contains technical language but no analogy or allusion.B) It contains an analogy, an allusion, and technical language.C) It contains an analogy and technical language but no allusion.D) It contains an allusion and technical language but no analogy.2) Select the best description for the statement:The snake we discovered hiding in the woodshed was nearly seven feet long.A) Positive tone, literalB) Neutral tone, literalC) Positive tone, figurativeD) Neutral tone, figurative3) Which statement uses the denotative form of the word *snake*?A) He took my savings, the *snake*, and then seemed to totally disappear.B) The salesman seemed smooth and deadly as a *snake* to the customers.C) She moved fast like a *snake* but fortunately did not enjoy eating live mice.D) The *snake* we discovered hiding in the woodshed was nearly seven feet long.4) Which statement uses the word *snake* in a positive and figurative way?A) He took my savings, the *snake*, and then seemed to totally disappear.B) The salesman seemed smooth and deadly as a *snake* to the customers.C) She moved fast like a *snake* but fortunately did not enjoy eating live mice.D) The *snake* we discovered hiding in the woodshed was nearly seven feet long.5) Select the best description for the statement:I should start calling her Pollyanna. She found a way to make me feel better about what happened, finding the good that came out of it.A) Positive tone, analogyB) Positive tone, allusionC) Negative tone, analogyD) Negative tone, allusion6) Select the best description for the statement:The salesman seemed smooth and deadly as a snake to the customers.A) Positive tone, analogyB) Positive tone, allusionC) Negative tone, analogyD) Negative tone, allusion7) Vocabulary specific to a certain activity is a type of A) Literal languageB) Context languageC) Technical languageD) Figurative language8) An implied meaning of a word is a(n)A) AllusionB) MetaphorC) DenotationD) Connotation9) Positive or negative connotation is common in A) Literal languageB) Context languageC) Technical languageD) Figurative language10) An allusion is a type of A) Literal languageB) Context languageC) Technical languageD) Figurative language REPORTERA Buenas tardes, les saluda la (1) Carmen Marcos (2) desde los Estudios Molinillo donde la (3) , Luis Vega, acaba de (4) su ltimo video musical. Luis, qu nos puedes contar de tu nuevo trabajo? LUIS VEGA Estoy muy contento con mi nuevo lbum. En este video no podan faltar (5) , como marcan las nuevas tendencias. Muy pronto estar en todos los (6) , espero que sea bien recibido por el (7) . REPORTERA Estoy segura, tu nueva cancin ya suena en todas las (8) de radio. Luis, es cierto lo que publican las (9) ? Dicen que tienes un romance con la actriz (10) Mercedes Pelez. Vuestras fotos estn en todas las (11) . Fill in the blanks with the preterite of ser or ir. Then write the infinitive form of the verb you used. June 19 11:59 PM 2 attempts remaining Grade settings External referencesVocabulary list Grammar explanation Questions Modelo Alejandro y yo fuimos al museo el ao pasado. (ir) Ayer Mara y Javier a la playa con sus amigos. ( ) La pelcula del sbado por la tarde muy bonita. ( ) El fin de semana pasado (nosotros) al centro comercial. ( ) La abuela y la ta de Maricarmen doctoras. ( ) (nosotros) muy simpticos con la familia de Claribel. ( ) Manuel a la universidad en septiembre. ( ) Los vendedores al almacn muy temprano. ( ) Lima la primera parada (stop) de nuestro viaje. ( ) (yo) a buscarte a la cafetera, pero no te encontr. ( ) Mi compaera de cuarto a la tienda a comprar champ. ( ) Consider the equilibrium system:2ICl(s) I2(s) + Cl2(g)Which of the following changes will increase the total amount of of Cl2 that can be produced? All of the listed answers are correct decreasing the volume of the containerremoving the Cl2 as it is formedadding more ICl(s)removing some of the I2(s) This statement was one of the terms of the Potsdam Declaration in July 1945: "We call upon the government of Japan to proclaim now the unconditional surrender of all Japanese armed forces, and, to provide proper and adequate assurances of their good faith in such action. The alternative is prompt and utter destruction." What does this statement indicate about the use of the atomic bomb in World War II? A. Japanese leaders wanted to surrender before the bomb was dropped.B. The leaders of Great Britain and the Soviet Union supported dropping the bomb.C. Great Britain and the Soviet Union had also developed atomic weapons.D. The Allies did not ask the Japanese government to surrender before dropping the bomb. Which of the following is an aspect of setting in a literary work?1. timeII. placeIII. social/historical contextI onlyI and 11ll and IIII, II, and III Convection currents transfer thermal energy ___? A. Between continents B. From cooler regions to warmer regions C. From warmer to cooler regions D. As a result of buoyancy Where Julie works, every morning, she gathers with other professionals and discusses goals and collaborates on patient care. What type of structure does Julies organization MOST likely follow?a hierarchical structure because there are different members representeda team structure because they share goals and collaboratea hierarchical structure because their focus in on common goalsa team structure because one individual is in charge of goal setting A bell tower is 17 meters tall. It casts a long shadow on the ground below. The tip of the shadow of the bell tower is 51 meters from the base of the bell tower. At the same time, a tall elm tree casts a shadow that is 63 meters long. If the right triangle formed by the tower and its shadow is similar to the right triangle formed by the elm and its shadow, how tall is the elm to the nearest tenth? What was a factor in President Ford's loss in the election of 1976? A. Ford expanded US involvement in Vietnam. B. Ford failed to lower inflation. C. Ford got involved in the Iran-Contra scandal. D. Ford engaged in dtente with the Soviet Union. A solution of the equation f(x)=g(x) is the same as PLEASE HELP. Give the orbital configuration of the phosphorus (p) atom. describe switzerlands economy Read this passage from A Worn Path. What can the reader infer about Phoenix from this passage? In the paved city it was Christmas time. There were red and green electric lights strung and crisscrossed everywhere, and all turned on in the daytime. Old Phoenix would have been lost if she had not distrusted her eyesight and depended on her feet to know where to take her.A) Phoenix has never had very good eyesight.B) Phoenix thinks it is a waste of money to burn the Christmas lights.C) Phoenix has taken this journey many, many times.D) Phoenix loves Christmas time in Natchez. Rainsford needs control of his emotions to overcome Zaroff, who is Rainsford's "steep hill." When he finds out he is going to be hunted, his instinct is to run in a panic, but he stops to look around and get a handle on the situation. Then, when Zaroff finds him hiding in a tree, Rainsford panics again, knowing Zaroff is playing with him. Once more, he controls his emotions and focuses on forming a plan. Even when the general is hot on his heels with a pack of dogs, Rainsford keeps his calm. His self-control helps him win the game.Read the paragraph. Which revision of the sentence in bold effectively incorporates the literary term conflict?A. Rainsford needs to control his conflict to overcome Zaroff, who is Rainsfords steep hill.B. Rainsford needs control of his emotions to overcome his largest conflict, General Zaroff.C. Rainsford is conflicted about whether he should control his emotions to overcome Zaroff. Does the speaker provide sufficient evidence in this excerpt that the Paycheck Fairness Act should have been passed? A.No, because she does not provide statistics or facts supporting her position in this excerpt. B.Yes, because most people reading this excerpt would agree that women deserve the same pay as men.C.No, because this excerpt does not make clear how Warren feels about the legislation's failure to pass.D.Yes, because she speaks for all women who have been treated unfairly in this excerpt. Reduction of oxygen to formwater occurs during A)photosynthesis only. B)respiration only. C) bothphotosynthesis and respiration. D)neither photosynthesis norrespiration. E) photorespirationonly What are the characteristics of a developing nation? If log(a) = 1.2 and log(b)= 5.6, what is log(a/b)?a. 4.4b. 6.8c. not enough informationd. -4.4