Emery needs to select a single word within a text box on a PowerPoin
Click and drag the mouse to grab a selection of text.
O Double-click the word.
O Triple-click the text.
O Press Ctrl+A.

Answers

Answer 1

Answer:

The first option is correct "Double click the word"

Explanation:

Emery should double click on the word she wanted to select while working on power point.  

Following are the instructions that tell what command should be used for what selection in a text:

if you want to select a word you can double click on it if want to select a line then triple click on it if want to select all data then you should use Ctrl+A command.

I hope it will help you!
Answer 2

Answer:

B

Explanation:

edg 2020


Related Questions

a page can have High needs met rating even if it is not related To the topic of the query​

Answers

Answer: A page can have the high needs met rating even being not related to the topic of the query is False. A needs met rating is completely based on how well the resulting landing page meets the related query.

Explanation:

A vector is based on...​

Answers

Answer:

Magnitude and direction

Explanation:

Vector quantity is a quantity which is described by magnitude and direction

Create a Java program that inputs a grade from the user. The grade input from the user will be an integer. Once the input is stored, use an if-else-if block of code to determine the letter grade of the inputted integer grade. Do not use a bunch of if statements by themselves to solve this problem. You will print an error message for inputs greater than 100 and for inputs less than 0. Both errors must be handled together by a compound conditional statement that is joined by a short circuit AND or OR operator. Assign your error message to a String variable and use that variable in a System.out.println statement to print the error. You must assign a char variable for each letter grade. Use System.out.printf to print the letter grade. Run your program several times using these inputs and ensure that you are receiving these outputs: input: 140 expected output: ERROR - You have entered an invalid input. Input: -45 expected output: ERROR - You have entered an invalid input. input: 82 expected output: You have earned the letter grade B. Run it a few more times using various other inputs. Part II Convert the if-else-if code block to a switch statement to solve the problem. Use modulus and/or integer division to convert the grade input so that the range of grades are converted to one value. All other requirements from Part I are still required for part two. Use the same inputs and the outputs should remain the same. My Code import java.util.Scanner; int grade; System.out.print("Enter your grade: "); grade = scnr.nextInt(); if (grade >= 90) { System.out.println("You have earned the letter grade A."); } else if (grade >= 80) { System.out.println("You have earned the letter grade B."); } else if (grade >= 70) { System.out.println("CYou have earned the letter grade C."); } else if (grade >= 60) { System.out.println("You have earned the letter grade D."); } else if (grade <= 59) { System.out.println("You have earned the letter grade F."); } else (0 >= grade >= 100) { System.out.println("You have entered an invalid input.") }

Answers

Answer:

Public static void main (string args []){

System.out.println("The grade is" + print grade (78));

System.out.println("The grade is" + print grade (59));

}

Public static char print grade (integer grade){

If ( grade >= 90)

System.out.println("You have earned the letter grade A");

Else if (grade >=80)

System.out.println("You have earned the letter grade B");

Else if (grade >=70)

System.out.println("You have earned the letter grade C");

Else if (grade >=60)

System.out.println("You have earned the letter grade D");

Else if (grade <=59)

System.out.println("You have earned the letter grade F");

else (0 >= grade >= 100) System.out.println("You have entered an invalid input.")

}

}

Explanation:

A python script to print fibonacci series first 20 elements

Answers

Answer:

   nterms =20

   # first two terms

   n1, n2 = 0, 1

   count = 0

   # check if the number of terms is valid

   if nterms <= 0:

      print("Please enter a positive integer")

   elif nterms == 1:

      print("Fibonacci sequence upto",nterms,":")

      print(n1)

   else:

      print("Fibonacci sequence:")

      while count < nterms:

          print(n1)

          nth = n1 + n2

          # update values

          n1 = n2

          n2 = nth

          count += 1

Explanation:

Here, we store the number of terms in nterms. We initialize the first term to 0 and the second term to 1.

If the number of terms is more than 2, we use a while loop to find the next term in the sequence by adding the preceding two terms. We then interchange the variables (update it) and continue on with the process.

output:

Fibonacci sequence:

0

1

1

2

3

5

8

Final answer:

To print the first 20 elements of the Fibonacci series in Python, a function can be used which iterates through a specified number of elements, updating and printing the next number in the sequence in each step.

Explanation:

The Fibonacci series is a sequence where each number is the sum of the two preceding ones, usually starting with 0 and 1. To print the first 20 elements of the Fibonacci sequence in Python, you can use the following script:

fibonacci.py

def fibonacci(n):
   a, b = 0, 1
   for _ in range(n):
       print(a, end=' ')
       a, b = b, a + b

fibonacci(20)

This script uses a simple loop to generate the series and prints out each element. The variables a and b start with values 0 and 1, which are the first two numbers in the Fibonacci sequence. Each iteration of the loop updates the values of 'a' and 'b' to the next two numbers in the sequence, and 'a' is printed out each time. Running this script will output the first 20 numbers of the Fibonacci series.

Complete the sentence.

_______ modules in object-oriented languages like C++ enable developers to build programs quickly.

Answers

Final answer:

Reusable modules in object-oriented languages like C++ enhance developer efficiency and facilitate rapid application development.

Explanation:

Reusable modules in object-oriented languages like C++ enable developers to build programs quickly. Object-oriented programming (OOP) allows for the encapsulation of data and functions into objects which can make programming easier and more efficient. With the help of these modules, developers can save time by reusing code and utilizing polymorphism to create flexible and hierarchical structures.

High-level languages such as Python and R provide numerous built-in features to expedite complex program development. Thus, embracing OOP can result in more effective program architecture and rapid application development.

26. Give two properties of softwood

Answers

Answer:

softwood come from coniferous trees and have cone or needle shaped leaves. They are also known as the  group of Gymnopermae plants which contain exposed seeds. Softwood have a tall pointed profile and are evergreen. Their cell structure is less porous than Hardwood. The most comercial common ones are Cedar, Kauri, Fir, Larch, Pine, Spruce.

Explanation:

There is a great difference between hardwood and softwood. While hardwood have more density than softwood, the latter is known for its low density.

If you refuse to take a blood, urine, or breath test to determine if you are driving under the influence of alcohol or drugs, you will
automatically
be assigned to 50 hours of community service
1
be required to pay a $500 fine
have your driving privilege suspended for one year
have your motor vehicle insurance cancelled by the state

Answers

Answer:

have your driving privilege suspended for one year

Explanation:

What output will the look up formula below produce in relation to the following table?

Answers

Answer:

The VLookup checks a value inside a table through matching over the 1st column.

Lookup a value in a table by matching on the first column and the matched value is returned from the table.

Explanation:

The formula for the VLOOKUP is

=VLOOKUP (value to be matched in the first column, table from which the value will be looked for, col_index is the column inside the table from where the value is fetched, [range_lookup] is true for the approximate match, and false for exact match)

Answer:

Rainy

Explanation:

Got it right on test

What technology does a smart phone use, and how does it work? ​

Answers

The smartphone is using several technologies. Such technologies include:

1. Artificial Intelligence - this is the type of technology wherein gadgets can talk to you and provide you information when you communicate to them. Communicate means you give gesture to the device or you talk to the device. AI software normally has names depending on the hardware/ brand you are using.

2. Mobile device that can paired and sync with wearable devices - Sync is a process of saved information in the cloud can be accessed to multiple devices that has the same credentials to all your devices. These changes and data can also be saved on your wearable devices like smart watches. Smart watches can be paired and used with smartphones. Data in your watch can be seen in phones and vice versa. You can even see what music or movies are playing in your phones using your watch. You can send text message and accept phones using your watch.

3. Virtual Reality - you can play and experience Virtual Reality games on your mobile. You can even watch Virtual Reality movies on it. You just have to buy a device that plays or support Virtual Reality apps and movies to complete the experience.

Jason is computer professional who has access to sensitive information. He shares this information with another organization in the same industry. Which professional code of conduct did Jason violate?

Answers

Jason violated the confidentiality of information.

Part of information security is "confidentiality of information" wherein an employee must kept all the information he may acquire when he is working in a company, confidential. When we say confidential, he is not allowed to disclose anything that he may know about company's operation, sensitive information to anybody who is outside the company (like in the example, another organization). Because data that he might disclose may get on hands by company's competitors and it can be used against the company. They might steal ideas and strategies.

Before you take any medicine, _____ to see if it could affect your ability to drive.
a. test a small dose b. read the warning label c. search on the internet d. see if it contains alcohol

Answers

Answer: B. read the warning labels

Answer:

b. Read the warning label

Explanation:

In the warning label, most drug manufacturers put details concerning allergies, side effects and details to not if the symptoms keep occurring.

Also details about conditions under which a patient should avoid taking the particular drug is always stated there.

use of multimedia in business sector...​?

Answers

Answer:

Advertisement or Marketing

Explanation:

Most products are marketed or advertised through the use of multimedia content such as videos and pictures.

Multimedia in the business sector is pivotal for engaging and effective communication. It includes text, audio, and video, and is integrated in presentations and training materials to enhance audience engagement and efficiency.

The term 'multimedia' encompasses a variety of content forms such as text, audio, images, animations, video and interactive content. The integration of multimedia in business communications allows for more dynamic presentations, potentially leading to increased engagement from the audience. In presentations, for instance, utilizing software like PowerPoint to create multimedia presentations that include pictures, movies, and sounds can help convey messages more effectively.

Furthermore, multimedia convergence has transformed various industries, merging previously distinct sectors like publishing and filmmaking into interconnected fields with information as their shared product. This transformation, facilitated by the digitization of information processing, has significant implications for employment, vocational training, and computer literacy. In the business context, multimedia can enhance learning through varied training materials, grab the audience's attention, and even assist in media multitasking, thereby increasing efficiency and engagement.

Which best describes why some elderly people do not access mental health care?
A. Their family members discourage them from seeking professional care,
B. They feel that mental health symptoms are normal for their age.
C.
They do not know any other people who are accessing mental health care.
D.
Psychiatrists typically only provide care for adolescents and middle-aged adults.
E. Mental health care services are too expensive for many senior citizens.
Reset
Next

Answers

Answer:

I choose B

Explanation:

old people are stubborn

Answer:

i believe the answer is E

Explanation:

user intent refers To what the user was trying To accomplish by issuing the query​

Answers

User intent is the purpose behind a user's query in search engines or databases, aiming to find specific information or results. Queries must be crafted clearly and consider user characteristics and technology traits to be effective. With skill and familiarity, user interactions with technology become more intuitive.

When discussing user intent, we are referring to the objective or purpose a user has when entering a query into a search engine or database. The intent encapsulates the outcomes or information the user desires. Knowing user intent is crucial because well-crafted queries are more likely to yield relevant results, sparing the user from filtering through unnecessary information.

The wordings of queries can affect the clarity and effectiveness of the search. For example, instructions should be crystal clear; instead of using passive constructions or vague subjects, actions should be mentioned first and subjects should be specific. Taking into account user characteristics, technology traits, and desired functions and purposes for technology use is important to tailor the technology effectively to the user's intentions.

Understanding queries ranges from simple database requests to complex search directives, all centered around the needs and intentions of the user. Queries become more seamless and intuitive as the user gains proficiency and familiarity with the technology, much like a player mastering control over his avatar in a virtual environment. Ultimately, queries are communication - they convey our needs, desires, and purposes to a system designed to serve us.

A machine that is used to print newspaper is a

Answers

Answer: it's a printer.

Answer:

Printing press

Which workplace task can be best addressed by using e-mail?
alerting your boss of an emergency that needs immediate attention
sending a status report to all employees working on one project
giving a coworker some advice on how to better do her job
informing your boss and coworkers that you are quitting

Answers

Answer:

the best answer is option B).

Explanation:

The work place task that can be best addressed by using e-mail is sending a status report to all employees working on one project

Explanation:

Email can be used to convey your message at workplace when:

When you need to get in touch with a person who is not responding to your calls.When you need to contact someone who is located geographically in a different location.when the information you want to convey/share is not time sensitive(time bond)E-mails are used at workplace to convey electronic files such as word documents,spreadsheets.Emails are also used for communications where a written record of the same is required.When a employer need to address large number of employees an email is used to communicate such information

Which segment of society introduced the grunge look?
A. artistic and experimental college students
B. middle-aged men who wanted to look younger
C. young people with limited income
D. housewives who wanted to look fashionable

Answers

Answer:

The answer is not a it is c

Explanation:

I took the test

The segment of society that introduced the grunge look is:

C. young people with limited income

The grunge look was introduced by young people with limited income. Originating in the Pacific Northwest, particularly Seattle, during the late 1980s and early 1990s, the grunge fashion style was heavily influenced by the grunge music scene. This style was characterized by its casual, unkempt, and thrift-store aesthetic, often featuring flannel shirts, ripped jeans, and worn-out clothing. These fashion choices were partly a reflection of the financial constraints faced by many young people at the time, who shopped at second-hand stores and prioritized comfort and practicality over conventional fashion trends. This anti-fashion statement quickly gained popularity and was embraced by youth culture across the country.

Charlotte was a big fan of her new operating system because she was able to use the same OS at home as she did at
work. She liked the new Media Player it introduced and was thrilled with the ease that new hardware devices could be
connected. Her new OS was most likely
Windows 98
Windows NT
Windows ME
Windows XP

Answers

Answer:

The new operating system is Window XP.

Explanation:

The latest operating system in the list is Window XP. It has many new features such as it can support new hardware easily. It has also the new media player facility.

In previous operating systems, whenever we install OS on system, drivers for all hardware need to be installed before use. In this Operating System, device drivers automatically install along with OS. This will make hardware usage easy.

Which software can Maria use to create animation?
A. Adobe Flash
B. Audacity
C. Adobe Audition
D. Inkscape

Answers

Answer: A. Adobe Flash

Adobe Flash, software can Maria use to create animation. Thus, option (a) is correct.

What is software?

Software is the term for the intangible. The software is the most important aspect. Software is a collection of rules, data, or algorithms used to run machines and perform certain tasks. Apps, scripts, and programs that run on a mobile device are referred to as software.

Maria is proficient in Adobe Flash. Rich Internet applications (Bias), games, and vector graphics can all be made using the multimedia software platform Adobe Flash. The creation of 2D animations frequently uses Adobe Flash, which is widely utilized in the animation business.

As a result, the significance of the software can Maria use to create animation are the aforementioned. Therefore, option (d) is correct.

Learn more about on software, here:

https://brainly.com/question/985406

#SPJ2

Green Field county stadium is planning to conduct a cricket match between two teams A and B. A large crowd is expected in the stadium as 10000 tickets have already been sold. To fulfill the viewers’ requirements, the match administrators are willing to install large display screens inside the stadium which should display the match “Live” through several cameras installed on different angles in the stadium.



After carefully reading and analyzing the given scenario, tell me “most suitable serial transmission mode” with two strong reasons.

Answers

Answer:

RS-485 2 wires, half-duplex for serial data transmission

Explanation:

The option mentioned in the answer section is certainly the correct option. And we do not need 4 wire RS-485 here as the half-duplex mode is going to work fine here, as the screen is never going to talk to the server, and hence at a time, it is only required for the receiver to receive and transmitter to transmit. However, you cannot certainly opt for fewer number receivers, and the multidrop option is required. And with RS-422A we are limited to 10, and hence, the best option is RS-485.

The first reason is it's noiseless due to the use of a twisted pair of cables. And the second reason is, the number of receivers can be as high as 32.

Which resources can help you learn more about specific careers?

Answers

Try these websites:

1. https://www.careerbuilder.co.uk

2. https://nationalcareersweek.com

3. https://kudos.cascaid.co.uk/#/

4. https://www.careercompanion.co.uk/#12

Answer:

1 4 5

Explanation:

Peter is software designer working at a big software company. He just found out that he has been shifted to their downtown branch. Peter is upset because his manager did not consult him over this move. What kind of environment is prevalent in Peter’s company?

The managers at Peter’s company have an __ environment.

Answers

The managers at Peter’s company have an Autocratic environment.

Explanation:

The managers who are autocratic in nature make decisions on their own. They will never get insights of their employees and they will not take the inputs of them in taking any decisions. This type of management is suitable in an organisation where there is an urgent need to taking decisions to any matter.

Managers who are autocratic in nature will make decisions without consulting anyone's advice.  This type suits those organisations wherein there are very less number of employees. Here, the manager of Peter did not consulted peter in making decisions related to him, the environment is authoritarian or autocratic.  

Answer:

autocratic

Explanation:

Jason needs to create a storyboard for his school's web page. Which should he include? A:Code B:Exact text C:HTML D:Purpose

Answers

Answer:

He should include Purpose of the storyboard.

Explanation:

A website storyboard contains all the information provided on website. This information is just on single page that contains all  important images, text, navigation and graphics. It is just the layout of the website to present it before clients.

The only things that is important, to create the storyboard of the website is why someone creating the storyboard. The purpose should be added in storyboard to present it before the users or client so that they can understand the purpose of storyboard.

Answer:

I just did the test and its Purpose.

Explanation:

Consider the following method intended to modify the parameter names by removing all instances of the String n.

public static void removeNames (ArrayList names, String n) { for (/* Missing Code */) { if (names.get(i).equals(n)) { names.remove(i); } } }

Which of the following could correctly replace /* Missing Code */ so that removeNames works as intended?

int i = 0; i < names.size(); i--

int i = names.size() - 1; i >= 9; i++

int i = 0; i < names.size(); i++

int i = names.size() - 1; i >=0; i--

none of the above. The code has an error.

Answers

Final answer:

Replace the missing code with 'int i = names.size() - 1; i >=0; i--' to correctly iterate backwards through the ArrayList, preventing skipping elements after removals.

Explanation:

The correct code to replace /* Missing Code */ is int i = names.size() - 1; i >=0; i--. This is because we need to iterate backwards through the list to avoid skipping elements after removing one. If we iterate forwards and remove an element, the next element will shift to the position we just removed, and the loop will skip it when i increments. By iterating backwards, we ensure that after an element is removed, it does not affect the iteration since we are moving to previous elements that have already been checked.

Final answer:

The correct iteration pattern for removing elements from an ArrayList without skipping any elements is to iterate backwards. The iteration syntax 'int i = names.size() - 1; i >=0; i--' allows the method to function as intended.

Explanation:

The correct code to replace /* Missing Code */ in the removeNames method should allow the removal of all instances of a specific String n from the ArrayList names. To achieve this, the iteration should go backwards through the ArrayList to avoid skipping elements after removal. Therefore, the correct replacement is:

int i = names.size() - 1; i >=0; i--

When you remove an item from an ArrayList while iterating forward, the next item shifts into the current index, which your loop just passed over, potentially causing you to miss elements. By iterating backwards, you can ensure that the removal of an item does not affect the items you've not yet checked.

Complete the following table.
Definition Example
Define problem
Generate Concepts
Design a solution
Build and Test Prototype
Evaluate Solution
Present Solution

Answers

Answer:

Only one aspect is left, and that is to record the solution

Explanation:

When we study software architecture these days, we also study design patterns. You must have got the message like let so and so company know what problem you faced or your findings, for research purposes. And this is what gives an insight into the requirement of the design pattern. Always make an habit to record your findings in proper world, and also tick mark the option mentioned above while installing the IDE. Your design pattern will be automatically picked. And if its awesome, you can be rewarded as well.

Unlike artistic drawings, which communicate self-expression and
emotional content,
communicate how to manufacture or construct a product, system, or
device(14th ed.) OR communicate size, shape and feature information
(15th ed.).

Answers

Answer:

The artistic drawings communicate self-expression and emotional content. However, when we come to manufacture or to construct a product, system, or device then you need to communicate its applications firstly, and then its features to prove why its the best choice as a product, system or device. And finally, you need to prove its affordable, if possible prove its still a luxury. And when we communicate size, shape and feature information, we need to prove its the best fit, and according to the requirement as well. Also, you need to prove its domain being quite vast such that more and more people with varied requirements show interest in buying it. And the shape is good in look as well. and features must be the best. If you are able to ensure these, your product, system or device is going to rock.

Explanation:

Please check the answer.

4. How do artistic designing and engineering designing differ? How do they overlap?

Answers

Answer: design is art, art is design.

Any good artist is designing their work. Any good designer has an art to their work. The artist "designs" the composition of any piece they create, be it a painting, sculpture, furniture, etc. There is design even in a child's drawing.

Explanation:

why should you avoid using cincinnati’s in a domain name?

Answers

Answer:

It is often misspelled

Explanation:

We could use cincinnati’s like a domain name and doesn't matter if it is the name of a city, even we can use it, if we're of another country or city, in addition, we can use other cities or towns if this is available. But this word is commonly misspelled, people can write sinsinnnati or cincinati, we should use words easier to remember.

What is the best practice to do an SEO for a HTML website? Is there any plug-in for this?

Answers

Listed below are best practices to do HTML websites that are SEO-friendly:

1. Make neat layout design for the website. - Creating a neat layout for HTML pages can make spider crawlers to navigate to your page easily. The messier the page, the harder the spider could navigate.

2. Pages should have unique and keyword rich links. - Rename your page with keywords and include these keyword in the URL.  

3. Content must be written with keywords. - the more keywords that can be seen in the content, the more possibilities that the spiders can reach your website.

There is no plug-ins needed. Just good practices.

Jonathan works with a team of photographers. They have a collection of photos and have divided the photo editing work among them. They
have their individual computers to work with. Jonathan suggests that the storage device for sharing their work should be of the plug-and-play
type. Which storage device is he talking about?
A
B,
USB drive
CF card
C
SD card
D. MMC

Answers

Answer:

I think it's B

USB drive

Answer:

USB drive.

Explanation:

USB drives can be plugged into the computer to hold files and then play them back on any device. You can transfer data from a USB drive onto any computer. Not just the one you took the files from.

Other Questions
How did the african american civil rights movement affect the development of other movements? An account should have an account title, account number, a place for the date of transaction, and two columns for:_________a. Assets and liabilitesb. Closing and post-closingc. Revenues and expensesd. Debits ans credits Which makes viral infections difficult to defend?A.) the immune system must attack the bodys own cellsB.) viruses are attacked by a nonspecific immune responseC.) viruses live outside of cells D.) macrophages work slowly Rasheed is memorizing his multiplication tables by using flash cards. He does this frequently enough that eventually he does not need the visual stimulation of the cards to remember his times tables for a test. Rasheed is then taking advantage of __________ memory A sample of radioactive material has a half life of 20 years and an activity level of 4 curies. After how many years will the activity level of the sample be at 0.25 curie? where would you expect to find a storm How and when to assess mental status baseline and complete mental status exam (what questions do we ask for a basic mental status exam)? Figure LMNO is a parallelogram. Parallelogram L M N O is shown. Angle M is (3 x) degrees and angle N is (8 x minus 40) degrees. What is the value of x? 8 10 13 20 Part complete How long must a simple pendulum be if it is to make exactly one swing per five seconds? A bicycle manufacturing company makes a particular type of bike. Each child bike requires 4 hours to build and 4 hours to test c e que tousbuild and 4 hours to test. With the number of workers, the company is able to have up to 120 hours of building time and 100 hours of testing in therepresents child bikes and a represents adult bikes, determine which system of inequality best explans whether the company and tes and 150bikes in the weekNo, because the bike order does not meet the restrictions of 40 + 6a s 120 and 4C + 4a s 100No, because the bike order does not meet the restrictions of 40 + 4a s 120 and 6C + 4a 5 100Yes, because the bike order meets the restrictions of 40 + 6a s 120 and 4C + 4a s 100Yes, because the bike order meets the restrictions of 40 + 4a s 120 and 6c + 4a 5 100 The notion that every stimulus pattern is seen in such a way that the resulting structure is as simple as possible is called the law of:_______ a. common fate.b. similarity.c. pragnanz.d. continuity. CHOOSE 2!Why did Governor Eugene Talmadge strongly oppose President Franklin D. Roosevelt's New Deal programs? Select TWO. Talmadge opposed limiting executive authority.Talmadge opposed expanding states' rights.Talmadge opposed programs that benefited African Americans.Talmadge opposed increasing government spending.Talmadge opposed programs that threatened the environment. The legs of a weight lifter must ultimately support the weights he has lifted. A human tibia (shinbone) has a circular cross section of approximately 3.6 cm outer diameter and 2.30 cm inner diameter. (The hollow portion contains marrow.)If a 90.0 kg lifter stands on both legs, what is the heaviest weight he can lift without breaking his legs, assuming that the breaking stress of the bone is 150 MPa ? What information is coded in the complex molecule? If the concentration of salt in the fluid surrounding cells decreases and the concentration of other solutes remains constant? Topic is Monroe Doctrine:what did it state?why was it written? The powerful survival impulse that leads infants to seek closeness to their caregivers is called:A)attachment.B)imprinting.C)habituation.D)assimilation.E)the rooting reflex What can you infer from the following phrases in the opening paragraph, "there seemed an intangible pall" and "a subtle gloom that made the day dark"? (in "To Build a Fire") What are two examples of the size scale and the time scale in Earth science that are at opposite ends of the spectrum.Choose one answer for size and one answer for time:O Spatial scales in Earth science can range from the atomic level to the size of the entre Earh O Time scales in Earth science can range from the fraction or a second that it takes igtnng to stke to the baons of years ago when the uness was created. O Spatial scales in Earth science can range from the size of a single rock to large portions of the universe. O Spatial scales in Earth science can range from the atomic level to large portions of the universe. O Time scales in Earth science can range from the traction of a second that it takes lightning to strike to the 4.6 bilion years that encompass Earth's entire history. Brokers primary objective as a property manager is to:______. a) oversee the maintance of rentai property.b) fill vacancies with suitable tenants.c) account to the landlord. Steam Workshop Downloader