place the features or components under the correct location. powerpoint start screen or power point user interface: online templates, dialog box launchers, thumbnail pane, slide pane, themes search field, recent files

Answers

Answer 1

Answer:

PP start screen: Recent Files, Online templates, Themes search field

Pp user interface: Side Pane, Thumbnail pane, Dialog box launches.

Explanation: Edg 2021

Answer 2

Answer:

Answer:

PP start screen: Recent Files, Online templates, Themes search field

Pp user interface: Side Pane, Thumbnail pane, Dialog box launches.

Explanation:

Edg 2021 just took test. Good Luck, Keep Going!!


Related Questions

which of the following is the best example of an installation issue

Answers

Answer:

A user made an error while trying to set up a software program.

Answer:

A computer can't find the file that it needs to perform an operating system function. A computer displays error messages, and then the Blue Screen of Death appears. A user made an error while trying to set up a software program.

Explanation:

What are the steps for creating a bookmark? 1. Place the insertion point where the bookmark should appear. 2. Click the tab. 3. In the group, click Bookmark. 4. When a dialog box opens, name the bookmark, and click . 5. To see bookmarks within the document, go to Backstage view and click Options. 6. In , select Show Bookmarks to have them appear as a locked cursor within the document.

Answers

Answer:

2. Insert

3. Links

4. Add

6. Advanced

Explanation:

HTML is an acronym for hypertext markup language and it is a standard programming language which is used for designing, developing and creating web pages.

A website refers to the collective name used to describe series of web pages linked together with the same domain name.

On the other hand, a webpage is the individual HTML document (single page) that makes up a website with a unique uniform resource locator (URL).

A bookmark can be defined as a placeholder or saved shortcut for a webpage and for future reference. Thus, it avails an end user the ability to quickly access a bookmarked webpage by automatically directing the web browser to the webpage.

Basically, the steps for creating a bookmark are;

1. The insertion point of the webpage should be placed at the point where the bookmark should appear.

2. Click the "INSERT" tab.

3. In the "LINKS" group, click "Bookmark"

4. When a dialog box opens, the bookmark should be named with a specific title, and then click "ADD"

5. To see bookmarks within the HTML document, you should go to Backstage view and click on "Options"

6. In ADVANCED, select Show Bookmarks to have them appear as a locked cursor within the HTML document.

Write an application program in C++ to implement a class Fibonacci to print Fibonacci series upto N using member function series() .

Answers

Answer:

Program approach:-

Using the header file.Using the standard namespace I/O.Define the main function.Display the number of terms.Display the Fibonacci series.Print the first two numbers.

Explanation:

Program:-

//header file

#include <iostream>

//using namespace

using namespace std;

//main function

int main() {

   int n, s1 = 0, s2 = 1, nextTerm = 0;

//display the number of terms

   cout << "Enter the number of terms: ";

   cin >> n;

//display the Fibonacci series

   cout << "Fibonacci Series: ";

   for (int j = 1; j <= n; ++j) {

       // Prints the first two terms.

       if(j == 1) {

           cout << s1 << ", ";

           continue;

       }

       if(j == 2) {

           cout << s2 << ", ";

           continue;

       }

       nextTerm = s1 + s2;

       s1 = s2;

       s2 = nextTerm;

       

       cout << nextTerm << ", ";

   }

Which of the following best explains how symmetric encryption are typically used?

Answers

A: Symmetric encryption uses a single key that should be kept secret. The same key is used for both encryption and decryption of data.

The option that best  explains how symmetric encryption are typically used is; A: Symmetric encryption uses a single key that should be kept secret. The same key is used for both encryption and decryption of data.

Understanding Symmetric Encryption

Symmetric encryption is one of the oldest and best-known technique which makes use of secret key that could be a number, a word, or just a string of random letters, applied to the text of a message in order to change the content in a particular way.

Symmetric encryption involves the use of a key, which is known as the Symmetric Key which contains a series of numbers and letters.

Finally, Symmetric Key is used to encrypt a message as well as the same key is also used to decrypt it.

Looking at the given options from online, the correct option is A: Symmetric encryption uses a single key that should be kept secret. The same key is used for both encryption and decryption of data.

Read more about symmetric encryption at; https://brainly.com/question/20262508

In today's digital world, companies have created software that makes business communication and productivity more efficient and effective. Explain why it is important for you to know how to use business communication tools such as the Microsoft Office Suite (i.e., Word, PowerPoint, Excel, etc.).


Include examples of some scenarios you faced or may face in the future (as both a student and in your career) that will require you to use these business communication tools.
300 + words

Answers

Answer:

Business communications tools are widely used and the world is becoming increasingly digital so not having those skills will hinder you.

Explanation:

Many jobs require knowledge of Microsoft tools as a qualification. By not having that expertise, I will be viewed as less qualified for a position and may be passed up for job. In corporate America, presentations are a staple and Microsoft PowerPoint is the primary software. If I deliver a poor presentation due to inexperience, I will make myself look bad and as a result get a bad quarterly review and possibly stunted any future promotions. On the flipside, as a business owner Excel is a handy tool for tracking expenses. Very customizable, quick and easy to understand.

Identify the correct way to cite the Occupational Outlook Handbook's "How to Become a Dentist" web page.
A.Occupational Outlook Handbook. "How to Become a Dentist." Bureau of Labor Statistics and US Department of Labor, 2012.
B."Occupational Outlook Handbook." How to Become a Dentist. Bureau of Labor Statistics and US Department of Labor, 29 March 2012. Web. 1 May 2013.
C."How to Become a Dentist." Occupational Outlook Handbook. Bureau of Labor Statistics and US Department of Labor, 29 March 2012. Web. 1 May 2013.
D.How to Become a Dentist, Occupational Outlook Handbook. Bureau of Labor Statistics and US Department of Labor, 2012. Web. 1 May 2013.

Answers

Answer:

C."How to Become a Dentist." Occupational Outlook Handbook. Bureau of Labor Statistics and US Department of Labor, 29 March 2012. Web. 1 May 2013.

Explanation:

When citing an online publication without a known author, the title of the article is first stated and encapsulated in italics. This is then followed by the name of the website or book. The organization responsible for the write-up is indicated. A comma separates the name of the organization and the date when the article was written. 'Web' is written to show that the material was obtained online. Finally, the date that tells when the article was retrieved is noted.

This guideline applies to both the Modern Language Association and the American Psychological Association citation styles.

Answer:

Identify the correct way to cite the Occupational Outlook Handbook's "How to Become a Dentist" web page. awser:C Explanation: How to Become a Dentist." Occupational Outlook Handbook. Bureau of Labor Statistics and US Department of Labor, 29 March 2012. Web. 1 May 2013.

Given a string, an integer position, and a character, all on separate lines, find the character of the string in that position and replace it with the character read. Then, output the result.

Ex: If the input is:

warn

0

e

the output is:

earn

Note: Using a pre-defined string function, the solution can be just one line of code.​

Answers

Answer:

The program in Python is as follows:

myStr = input()

pos = int(input())

chrr = input()

myList=[]

myList[:0]=myStr

myList[pos] = chrr

myStr =""

for i in myList:

   myStr+=i

print(myStr)

Explanation:

This gets input for the string

myStr = input()

This gets input for the character position

pos = int(input())

This gets input for the incoming character

chrr = input()

Create an empty list

myList=[]

Convert the string to a list

myList[:0]=myStr

Replace the character

myList[pos] = chrr

Empty the string

myStr =""

Get the new string

for i in myList:

   myStr+=i

Print the new string

print(myStr)

Following are the C++ program to replace the first index value of the string.

Program Explanation:

Defining header file.Defining the main method.Inside the main method three variable "Sval, Spos, Subchar" is declared in which "string, int, and char".After input variable value a string variable is declared with the at (method), which replaces the first index value with the character value.After replacing the first index value that is "0" use the prints method that prints its value.

Program:

#include <iostream>//header file

#include <string>//header file

using namespace std;

int main() //main method

{

 string Sval;//defining string variable

 int Spos;//defining integer variable

 char Subchar;//defining char variable

 cin>>Sval>>Spos>> Schar;//input value

 Sval.at(Spos)  =  Subchar; //using string variable that replaces the first index value with the character value

 cout << Sval << endl;//printing the replaced value

 return 0;

}

Output:

Please find the attached file.

Learn more:

brainly.com/question/24494143

Need an answer as soon as possible please!


The lesson discusses ten "best practices" for digital recordings. Identify three of them and explain why they are important for ensuring a quality product.


(For a Digital Media Course)

Answers

Solution :

Digital recording may be defined as the preservation of an audio or some visual signals like the series of a binary numbers which can be stored on a magnetic tape or on an optical disc or some other digital storage media.

Some of the best practices for doing digital recording are :

1. We should always take permission from those who are being recorded. It is not right to shoot others without their permission. It is against the right to privacy.

2. We should record audio at about 44.1 kHz/16 bit in an uncompressed wave format.

3. A High quality MP3 (192 kbps or higher) is often accepted due to the limitations of a recorder or for a storage space.

The MP3 recordings are considered as the best option for certain recorders  and when the storage space is severely limited. It produces a good quality recording.

Read the integer numbers in the text file "1000 Random Number from 0 to 100.txt" into a list

PLEASE HELP THANK U!!

Answers

Answer:

random_number_file = open("1000 Random Number from 0 to 100.txt", 'r')

random_number_list = random_number_file.readlines()

print('random_number_list)

Explanation:

The name of the file containing the random integer text is ; "1000 Random Number from 0 to 100.txt"

The random_number_file variable stores the opened file ("1000 Random Number from 0 to 100.txt") using the open keyword and reads it ('r')

This file stored in the random_number_file variable is the read into a list by using the readlines() method on the random_number_file

como se genera la electricidad con energias no renovables
porfa alguien me ayuda llevo muchas horas buscando la respuesta
doy corona y todos lo puntos que pueda

Answers

Answer:

efeiueur eiuube erferve

Explanation:

Answer:

La energia no renovable proviene de fuentes que se agotaran o no se repondran durante miles o incluso millones de años.

Los combustibles fósiles se queman para generar energía y electricidad. Por ejemplo, carbón.

Transferring data from a remote computer to a local computer is .....​

Answers

The answer is uploading

of the following potential benefits, which is LEAST likely to be provided by the upgraded system?
A Human representatives will not be needed to respond to some inquiries.
B
The company will be able to provide a human representative for any incoming call.
с
Customers are likely to spend less time listening to information not relevant to their issue.
D
Customers will be unable to mistakenly select the incorrect department for their particular issue.

Answers

Answer:

The company will be able to provide human representative for any incoming call

Explanation:

The upgrade of a system is meant to resolve identified issues in an initial system and given that the available human representative is usually less than the number of incoming call at a given time, due to a constant drive for a larger customer base, we have;

The upgraded system will provide technologies such that human representative will not be required for some inquiries, customers will listen to mainly relevant information with regards to their issues and customers will be properly directed to the correct department that are concerned with their current issue

Therefore, the LEAST likely goal of the upgraded system from among the options and therefore the least likely to be provided by the upgrade is the company will be able to provide human representative for any incoming call

Q.No.2. A study of the effect of smoking on sleep patterns is conducted. The measure observed is the time, in minutes, that it takes to fall asleep. These data are obtained: [3] Smokers:69.3 56.0 22.1 47.6 53.2 48.1 52.7 34.4 60.2 43.8 23.2 13.8 Non Smokers: 28.6 25.1 26.4 34.9 28.8 28.4 38.5 30.2 30.6 31.8 41.6 21.1 36.0 37.9 13.9

Answers

Answer:

(a) [tex]\bar x_1 = 43.7[/tex]     [tex]\bar x_2 = 30.25[/tex]

(b) [tex]\sigma_1 = 16.93[/tex]    [tex]\sigma_2 = 7.14[/tex]

(c) Smoking increases the time to fall asleep

Explanation:

Solving (a): The sample mean of each group

Mean is calculated as:

[tex]\bar x = \frac{\sum x}{n}[/tex]

So, we have:

Smokers

[tex]n_1= 12[/tex] and

[tex]\bar x_1 = \frac{69.3 +56.0+ 22.1 +47.6+ 53.2+ 48.1+ 52.7 +34.4+ 60.2 +43.8 +23.2 +13.8}{12}[/tex]

[tex]\bar x_1 = \frac{524.4}{12}[/tex]

[tex]\bar x_1 = 43.7[/tex]

Non Smokers

[tex]n_2 = 15[/tex] and

[tex]\bar x = \frac{28.6 +25.1 +26.4 +34.9 +28.8 +28.4 +38.5 +30.2 +30.6 +31.8 +41.6 +21.1 +36.0 +37.9 +13.9}{15}[/tex]

[tex]\bar x_2 = \frac{453.8}{15}[/tex]

[tex]\bar x_2 = 30.25[/tex]

Solving (b): The standard deviation of each group

This is calculated as:

[tex]\sigma = \sqrt{\frac{\sum(x - \bar x)^2}{n-1}}[/tex]

For smokers

[tex]n_1= 12[/tex]

So:

[tex]\sigma_1 = \sqrt{\frac{(69.3 -43.7)^2+(56.0-43.7)^2+..........+(13.8-43.7)^2}{12-1}}[/tex]

[tex]\sigma_1 = \sqrt{\frac{3152.04}{11}}[/tex]

[tex]\sigma_1 = \sqrt{286.5491}[/tex]

[tex]\sigma_1 = 16.93[/tex]

For non-smokers

[tex]n_2 = 15[/tex]

So:

[tex]\sigma_2 = \sqrt{\frac{(28.6 -30.25)^2+(25.1 -30.25)^2+..........+(13.9 -30.25)^2}{15-1}}[/tex]

[tex]\sigma_2 = \sqrt{\frac{713.2575}{14}}[/tex]

[tex]\sigma_2 = \sqrt{50.9469}[/tex]

[tex]\sigma_2 = 7.14[/tex]

Solving (c): Impact of smoking on time to sleep

In (b), we have:

[tex]\sigma_1 = 16.93[/tex] --- smokers

[tex]\sigma_2 = 7.14[/tex] --- non-smokers

Smokers have larger standard deviation (i.e. large variability) than non-smokers. This means that smokers require more time to fall asleep.

Five uses of the start button

Answers

Starting something

Possibly turning it off

Making something work

Fixing the Start Button

Beginning something

what is meant by cyber law​

Answers

Explanation:

Cybercrime is criminal activity that either targets or uses a computer, a computer network or a networked device

Can anyone help me with a mental ability work plzz

Answers

choose the correct option:

1) using

2) is

3) use

4) to eat

5) use

Planning to finance higher education helps people prepare for their financial future because it teaches them about

Loans and interest
Savings and accounts
Filing taxes
Short term goals

Answers

Answer:

savings and account

Explanation:

because that will convince them

Answer:

Loans and Interests.

Explanation:

Edge

Which of the following describes a recording scout's job in the music industry?

A) They are responsible for marketing and promotion.

B) They act as an editor for new recordings.

C) They are in charge of producing recordings.

D) They act as a manager for newly signed talent.

Answers

Answer:

They act as a manager for newly signed talent. D

Explanation:

Answer:

They act as a manager for newly signed talent.

Explanation:

hope this helps!

what type of data type is 1+78-5​

Answers

Answer:

Integer

Explanation:

Given

[tex]1 + 78 - 5[/tex]

Required

The datatype

1, 78 and -5 are all numbers and they are without decimal points,

When a number is without decimal, such number is referred to as integer.

Hence, the datatype is integer

Phishing is ____________. When hackers overwhelm a website with too many requests. A network of private computers infected with malicious software and controlled as a group without the owners' knowledge. A piece of code that is capable of copying itself and typically has a detrimental effect, such as corrupting the system or destroying data. Emails designed to trick users into sharing private information.

Answers

Answer:

Emails designed to trick users into sharing private information.

Explanation:

if that is a multiple choice question and the other sentences is the answer choices.

Which is a true statement about automation?

A)human intervention is needed to control all sequences of operations of a task.

B)human intervention is not needed at anytime in initiating or controlling sequences of operations.

C)using computer to control sequences of operations without human intervention.

D)computers are not needed to initiate or control any sequence of operations of a task.

Answers

Answer:

im guessing its a?

Explanation:

A professional-looking portfolio gives a clear message. What does it convey?
Ο Α. .
that you like to build up a sales pitch
OB. that you like to flaunt your work
OC. that you are serious about your work
OD.
that you put on a show for effect
Ο Ε.
that you only care about appearances
Reset
Next

Answers

Answer:a

Explanation:

A professional-looking portfolio gives a clear message that you put on a show for effect. Thus, the correct option is D). that you put on a show for effect.

What is a professional portfolio?

Professional portfolio refers to the collection of work and other documents that make clear the abilities of the candidate to the potential employers.  It can be created in both digital and physical format.

A portfolio is an collected album of all work samples and professional documentation that provides proof about the accomplishments, skills, potential and samples of an individual's work.  

In order to give portfolio a professional look, there are several categories to be consider such as Personal Information, Values, Personal Goals and History, Accomplishments and Job History, Skills and Attributes, Education and Training as well.

Learn more about professional portfolio here:-

https://brainly.com/question/20411709

#SPJ2

Emilio has created a document in Word and needs to print labels. He is shopping at a store and finds Avery labels
and another brand that is less expensive. What does Emilio need to do before buying the less expensive labels?
O He needs to make sure the number of labels is the same.
O He needs to make sure that the dimensions match the Avery labels.
O He needs to check to see if they are compatible with Word.
O He needs to check to see if Word has a setting for that label.

Answers

Answer:

He needs to check to see if they are compatible with Word

Explanation:

A label is a attachment to an object, with the aim of identifying the object such as the mail to address on an envelop, In MS Word, there several label templates to choose from, which are located under the Mailings tab

To create a label in MS Word, we have the following steps

1) Select Labels under the Mailings tab

2) Select the Options button in the Labels dialogue box, then select the label vendor and the product of the vendor to be used

3) Enter the address of the mail in the Address box after selecting the vendor

Therefore, Emilo being at the shopping center rathe then on his computer will only have access to check if the cheaper label is also compatible with MS Word, from the label vendor's specifications

An organization's Finance Director is convinced special malware is responsible for targeting and infecting the finance department files. Xander, a security analyst, confirms the files are corrupted. Xander is aware the Director possesses privileged access but not the security knowledge to understand what really happened. What does Xander believe happened

Answers

Answer: Malware infected the Director's machine and used his privileges

Explanation:

Malware simply means malicious software variants, which consists of spyware, viruses, ransomware etc. These can be used by cyberattackers to cause damage to data or in order to have access to a network.

With regards to the question, Xander believed that malware infected the Director's machine and used his privileges which results in the corrupt of the files.

in a dark place you have only a match , a twig , campfire logs , and oil lamp and a candle which do you literally first /
a twig
a campfire
none of the above

Answers

Answer:

You would use a twig first :)

Explanation:

Answer:

The glowing embers from the crackling campfire lit up the nighttime sky.

Explanation:

SOMEONE HELP 60 POINTS!!!!! When creating business publications, these two factors must be determined before planning the layout.

Answers

Answer:Audience and Goals

Explanation:

Answer:

I hope This will help you... Please mark me as Brilliant

Please

Explanation:

You want to make sure you prepare thoroughly before starting a business, but realize that things will almost certainly go awry. To run a successful business, you must adapt to changing situations.

Conducting in-depth market research on your field and the demographics of your potential clientele is an important part of crafting a business plan. This involves running surveys, holding focus groups, and researching SEO and public data.

Before you start selling your product or service, you need to build up your brand and get a following of people who are ready to jump when you open your doors for business.

This article is for entrepreneurs who want to learn the basics steps of starting a new business.

Tasks like naming the business and creating a logo are obvious, but what about the less-heralded, equally important steps? Whether it's determining your business structure or crafting a detailed marketing strategy, the workload can quickly pile up. Rather than spinning your wheels and guessing at where to start, follow this 10-step checklist to transform your business from a lightbulb above your head to a real entity.

1. Refine your idea.

If you're thinking about starting a business, you likely already have an idea of what you want to sell online, or at least the market you want to enter. Do a quick search for existing companies in your chosen industry. Learn what current brand leaders are doing and figure out how you can do it better. If you think your business can deliver something other companies don't (or deliver the same thing, only faster and cheaper), or you've got a solid idea and are ready to create a business plan. 

Define your "why."

"In the words of Simon Sinek, 'always start with why,'" Glenn Gutek, CEO of Awake Consulting and Coaching, told Business News Daily. "It is good to know why you are launching your business. In this process, it may be wise to differentiate between [whether] the business serves a personal why or a marketplace why. When your why is focused on meeting a need in the marketplace, the scope of your business will always be larger than a business that is designed to serve a personal need." 

Consider franchising.

Another option is to open a franchise of an established company. The concept, brand following and business model are already in place; all you need is a good location and the means to fund your operation.

After migrating the company’s entire datacenter infrastructure to a private IaaS solution, while at the same time maintaining the current network and server logical configuration, the IT director eliminated 50% of the IT engineering staff. The remaining staff has now shifted focus from a daily server maintenance and upkeep role, to more of a service provisioning, performance, and reporting role. Which of the following was MOST impacted by this migration?
A. Service design
B. Service strategy
C. Service operation
D. Service transition

Answers

Answer: C. Service operation

Explanation:

Based on the information given in the question, the service operation will be mostly impacted by the migration.

Service operation simply means the day-to-day activities, and processes which are responsible for the delivery of value through technology to the business.

Since the the company’s entire datacenter infrastructure has been migrated to a private IaaS solution, this will affect the service operation.

an_is a sepuence of precise instructions which result in a solution​

Answers

Answer:

algorithm.

Explanation:

An algorithm can be defined as a standard formula or procedures which comprises of set of finite steps or instructions for solving a problem on a computer. The time complexity is a measure of the amount of time required by an algorithm to run till its completion of the task with respect to the length of the input.

Furthermore, the processing symbols and their functions used in developing an algorithm are oval (start or stop), diamond (decision-making), circle (on-page connector), parallelogram (input and output), rectangle (calculation), arrow (flow or direction) and pentagon (off-page connector).

Some of the characteristics of an algorithm include the following;

I. An algorithm can be written using pseudocode. A pseudocode refers to the description of the steps contained in an algorithm using a plain or natural language.

II. An algorithm can be visualized using flowcharts. A flowchart can be defined as a graphical representation of an algorithm for a process or workflow.

In conclusion, an algorithm is a sequence of precise instructions which result in a solution​ for solving problems using a computer system.

You have just been hired by a large organization which uses many different AWS services in their environment. Some of the services which handle data include: RDS, Redshift, ElastiCache, DynamoDB, S3, and Glacier. You have been instructed to configure a web application using stateless web servers. Which services can you use to handle session state data

Answers

Answer:

Elasticache and DynamoDB

Explanation:

The session data can be stored on Elasticache and DynamoDB

ElastiCache is the best fit for front end data stores thereby ensuring a high performance with extremely high request rates and/or low latency requirements

what is meant by versatility in terms of features of computer?​

Answers

Answer:

Versatility refers to the capability of a computer to perform different kinds of works with same accuracy and efficiency.

Explanation:

thank me later

Versatility refers to the effort or ability of a computer to carry out different kinds of works and it is done that is done on the same level of accuracy and efficiency.

What is versatility in computer?

Computer is known to be a machine that is said to be versatile machine as it is made up of a lot of field and also involves in Multi-tasking.

Therefore, Versatility refers to the effort or ability of a computer to carry out different kinds of works and it is done that is done on the same level of accuracy and efficiency.

Learn more about Versatility from

https://brainly.com/question/26285269

#SPJ2

Other Questions
The director chose (whom, who) for the role what is the simplify answer to 4 3/5 + 15 1/5 = Which is most likely the first step in a basic food chain?1. The snake obtain energy by eating the mouse 2. Plants make energy-rich food using sunlight3. The hawk obtains energy by eating the snake 4. The sun emits energy. Please please please helppp!!!!!!Okay so I have to write a essay on Privacy issues between children and parents I just need help with 4 ideas of paragraphs. And I will do the rest thank youuuu Read these lines from "Annabel Lee," a poem by Edgar Allen Poe about someone who is missing a lost love. For the moon never beams, without bringing me dreams Of the beautiful Annabel Lee; And the stars never rise, but I feel the bright eyes Of the beautiful Annabel Lee What poetic devices are used to create the rhythm in these lines? consonance and assonance assonance and dissonance rhyme and repetition imagery and theme What are 4 producers of the boreal forest which angles are vertical to 2 ? Select all that apply Assume that a, b, and c have been declared and initialized with int values. The expression!(a > b || b b && b = ce. a < b && b >= c Hunter is 9 years older than 3 times the age of his nephew.Hunter is 33 years old. How old is his nephew? Read the chart.HOMOPHONE MEANINGby beside or nearbuy to purchase somethingbye expression that is short for goodbyeChoose the correct homophones to complete the sentence.Jiya went to the shop _____ the dentists office to _____ materials for her project.by, buybye, byby, byebye, buy FILIPINO ONLY!THANK YOU IN ADVANCE:)) what is the area of this rectangle? What is the traditional symbol of Judaism?the Star of Davidthe TorahYom Kippurthe synagogue Sample Food ChainLeaf------> Caterpillar--------> Chameleon---------> Snake-----------> MongooseLooking at the above picture, what is true? A) The Mongoose is the tertiary consumerB) The chameleon eats the snakeC) The chameleon is an autotrophD) If Mongoose is removed, snake population would increase. What are the best uses of extrinsic motivation? Write and equation for a line that is parallel to the line 4y + 3x = 12 Which type of weather is associated with the eye of the hurricane? calmstormy windy weather what should people do to save water Which south american leader attempted to prevent people reading his thoughts? (Please dont help with file it doesnt open nor help) explain the difference between a prokaryotic cell and a eukaryotic cell.