How should you add a appointment to your outlook calendar

Answers

Answer 1

answer:

press on the date thing

Answer 2
Put a note on the date you have a appointment on in your calendar

Related Questions

You have a larger file but do not need it right away. In this scenario, you have to change the way a file is used to make it what?
O open
o closed
compressed
O usable

Answers

Answer:

Compressed

Explanation:

I hope this helps!

Answer:

usable

Explanation:

open doesnt make any sense, neither does closed and compressed is wrong i chose it and got it wrong. Its usable

Write a new method in the Rectangle class to test if a Point falls within the rectangle. For this exercise, assume that a rectangle at (0,0) with width 10 and height 5 has open upper bounds on the width and height, i.e. it stretches in the x direction from [0 to 10), where 0 is included but 10 is excluded, and from [0 to 5) in the y direction. So it does not contain the point (10, 2). These tests should pass:

Answers

Answer:

Explanation:

The Rectangle and Point class is not provided in this question but was found online. Using that code as guidance I created the following method named contains. This method takes in a Point object and checks to see if the x-axis point is inside the parameters of the Rectangle class and then checks the same for the y-axis. If it is inside the Rectangle then the method returns true otherwise it returns false.

def contains(self, point):

       return self.width > point.x >= self.corner.x and self.height > point.y >= self.corner.y

why the internet is not considered a mass medium in Africa​

Answers

I think the term “media” as used and understood by most people has more to do with content than with the means of disseminating said content.

“Mass media,” therefore, would be that content created by a few and copied to the many — a large circulation newspaper, for example, or a network television or radio program.

The internet’s content is anything but “mass” in that regard — there is mass media content on it, to be sure, but there is also a panoply of content created by many for dissemination to many — or the few who are attracted by the content created by a certain few, or a certain individual. The reasons why there is not an internet infrastructure like in other regions is because in Africa people have low levels of computer literacy, there is poor infrastructures in power supply and urbanism in general, and Internet services are offered only at a high cost. Hope this helps!

Answer:

the reason why internet not considered as a mass medium is probably because most of the African are not educated and civilized, thereby making them not common to the usage of the internet.

Plz hurry it’s timed

Answers

Micah and adayln hope this helps u

The given SQL creates a Movie table and inserts some movies. The SELECT statement selects all movies released before January 1, 2000 Modify the SELECT statement to select the title and release date of PG-13 movies that are released after February 1, 2008. Run your solution and verify the result table shows just the titles and release dates for The Dark Knight and Crazy Rich Asians. 3 6 1 CREATE TABLE Movie ( 2 ID INT AUTO_INCREMENT, Title VARCHAR(100), 4 Rating CHAR(5) CHECK (Rating IN ('G', 'PG', 'PG-13', 'R')), 5 ReleaseDate DATE, PRIMARY KEY (ID) 7); 8 9 INSERT INTO Movie (Title, Rating, ReleaseDate) VALUES 19 ('Casablanca', 'PG', '1943-01-23'), 11 ("Bridget Jones's Diary', 'PG-13', '2001-04-13'), 12 ('The Dark Knight', 'PG-13', '2008-07-18'), 13 ("Hidden Figures', 'PG', '2017-01-06'), 14 ('Toy Story', 'G', '1995-11-22'), 15 ("Rocky', 'PG', '1976-11-21'), 16 ('Crazy Rich Asians', 'PG-13', '2018-08-15'); 17 18 -- Modify the SELECT statement: 19 SELECT * 20 FROM Movie 21 WHERE ReleaseDate < '2000-01-01'; 22

Answers

Answer:

The modified SQL code is as follows:

SELECT Title, ReleaseDate FROM movie WHERE Rating = "PG-13" and ReleaseDate >  '2008-02-01'

Explanation:

The syntax of an SQL select statement is:

SELECT c1, c2, c...n FROM table WHERE condition-1, AND/OR condition-n

In this query, we are to select only the title and the release date.

So, we have:

SELECT Title, ReleaseDate

The table name is Movie.

So, we have:

SELECT Title, ReleaseDate FROM movie

And the condition for selection is that:

Ratings must be PG-13

And the date must be later than February 1, 2008

This implies that:

Rating = "PG-13"

ReleaseDate >  '2008-02-01'

So, the complete query is:

SELECT Title, ReleaseDate FROM movie WHERE Rating = "PG-13" and ReleaseDate >  '2008-02-01'

1) Create a class called Villain. Specifically, a Villain has the following fields: .name (String)
a number of evil plans (int) In addition, a Villain has the following methods: • a constructor that accepts an argument for each of the fields . a copy constructor
an equals method, which checks/returns whether all the fields are the same
a toString method
2) Create a class called Crazy Villain, which inherits from Villain. Specifically, a Crazy Villain has the following additional fields:
a crazy laughter (String)
a crazy idea (String In addition, write code for the following Crazy Villain methods:
a constructor that accepts an argument for each of the fields
a toString method that overrides the Villain toString method, in order to include the additional fields You do not need to instantiate/demo Villain or Crazy Villain objects.

Answers

Answer:

Explanation:

The following code is written in Java and creates both of the classes as requested with their variables and methods as needed. The crazyVillain class extends the Villain class and implements and overrides the needed variables and methods. Due to technical reasons, I have added the code as a txt file below.

Which security measure provides protection from IP spoofing?

A ______ provides protection from IP spoofing.

PLEASE HELP I need to finish 2 assignments to pass this school year pleasee im giving my only 30 points please

Answers

Answer:

An SSL also provides protection from IP spoofing.

Describing the One-to-Many Relationship
What is another name for the one-to-many relationship?
child-to-parent
O parent-to-child
O student-to-teacher
O teacher-to-student
Ve

Answers

Answer: B) Parent-to-child

Answer:

What is another name for the one-to-many relationship?

child-to-parent

Correct Answer: parent-to-child( B)

student-to-teacher

teacher-to-student

Explanation:

What kinds of components are tangible assets?

Answers

Answer:

Tangible assets are physical like cash, inventory, vehicles, equipment, buildings and investments.

Explanation:

1.
A unique characteristic of the sports industry is that it seeks to attract markets that will
perform which action?
A. Demand mostly tangible products
B. Have consumers with artistic talent
c. include spectators and participants
D. Are concerned with environmental issues

Answers

Answer:

D. Are concerned with environmental issues is the answer

PLEASE HELP ME ASAP ITS IMPORTANT

Answers

I’m 80% sure it’s the last one, I’ve studied this last year I cant quite grasp the memorie
The answer is E. Data encryption ensures the validity of the website and inserts blocks that prevent hackers and viruses from messing with the website.

Your assignment is to write an assembly language program which read a string and print it in uppercase. This program asks the user to enter a string which is subsequently displayed in uppercase. It is important to first ensure that string to be converted is in the a-z range. The program does not recognize any space, symbols or any kind of punctuation marks. Any time the user enters any of this character the program is going to repeatedly ask for the valid string.

An example execution of your program could be:
Please enter your string: 1winter
Invalid Entry!
Please enter your string: summer
Your capitalized string:SUMMER

Answers

Answer:

try this

Explanation:

MSG1 DB 10,13,'enter any string:-$'

MSG2 DB 10,13,'converted string is:-$'

P1 LABEL BYTE

M1 DB 0FFH

L1 DB?

P11 DB 0FFH DUP<'$'>

DATA ENDS

DISPLAY MARCO MSG

MOV AH,9

LEA DX,MSG

INT 21H

ENDM

CODE SEGMENT

ASSUME CS: CODE,DS:DATA

START:

MOV AX,DATA

MOV DS,AX

DISPLAY MSG1

LEA DX,P1

MOV AH,0AH

INT 21H

DISPLAY MSG2

LEA SI,P1

MOV CL,L1

MOV CH,0

CHECK:

CMP[SI],61H

JB DONE

CMP[SI],5BH

UPR: SUB[SI],20H

DONE: INC SI

LOOP CHECK

DISPLAY P11

MOV AH,4CH

INT 21H

CODE ENDS

END START


1. Tracy is studying to become an esthetician. Give three reasons why she needs to have a thorough
understanding of facial machines.

Answers

Estheticians should study and have a thorough understanding of facial machines so that they can operate the machines safely, provide the best results for their clients, and enhance their service menu.

Write a program that lets the user enter the total rainfall for each of 12 months into a vector of doubles. The program will also have a vector of 12 strings to hold the names of the months. The program should calculate and display the total rainfall for the year, the average monthly rainfall, and the months with the highest and lowest amounts.

Answers

Answer:

Explanation:

#include<iostream>

#include<iomanip>

#include<vector>

using namespace std;

double getAverage(const vector<double> amounts)

{

   double sum = 0.0;

   for (int i = 0; i < amounts.size(); i++)

       sum += amounts[i];

   return(sum / (double)amounts.size());

}

int getMinimum(const vector<double> amounts)

{

   double min = amounts[0];

   int minIndex = 0;

   for (int i = 0; i < amounts.size(); i++)

   {

       if (amounts[i] < min)

       {

           min = amounts[i];

           minIndex = i;

       }

   }

   return minIndex;

}

int getMaximum(const vector<double> amounts)

{

   double max = amounts[0];

   int maxIndex = 0;

   for (int i = 0; i < amounts.size(); i++)

   {

       if (amounts[i] > max)

       {

           max = amounts[i];

           maxIndex = i;

       }

   }

   return maxIndex;

}

int main()

{

   vector<string> months;

   vector<double> rainfalls;

   months.push_back("January");

   months.push_back("February");

   months.push_back("March");

   months.push_back("April");

   months.push_back("May");

   months.push_back("June");

   months.push_back("July");

   months.push_back("August");

   months.push_back("September");

   months.push_back("October");

   months.push_back("November");

   months.push_back("December");

   cout << "Input 12 rainfall amounts for each month:\n";

   for (int i = 0; i < 12; i++)

   {

       double amt;

       cin >> amt;

       rainfalls.push_back(amt);

   }

   cout << "\nMONTHLY RAINFALL AMOUNTS\n";

   cout << setprecision(2) << fixed << showpoint;

   for (int i = 0; i < 12; i++)

       cout << left << setw(11) << months[i] << right << setw(5) << rainfalls[i] << endl;

   cout << "\nAVERAGE RAINFALL FOR THE YEAR\n" << "Average: " << getAverage(rainfalls) << endl;

   int minIndex = getMinimum(rainfalls);

   int maxIndex = getMaximum(rainfalls);

   cout << "\nMONTH AND AMOUNT FOR MINIMUM RAINFALL FOR THE YEAR\n";

   cout << months[minIndex] << " " << rainfalls[minIndex] << endl;

   cout << "\nMONTH AND AMOUNT FOR MAXIMUM RAINFALL FOR THE YEAR\n";

   cout << months[maxIndex] << " " << rainfalls[maxIndex] << endl;

   return 0;

}

what is a web client​

Answers

Answer:

A Web client typically refers to the Web browser in the user's machine or mobile device. It may also refer to extensions and helper applications that enhance the browser to support special services from the site.

hope this helps

have a good day :)

Explanation:

A Web client typically refers to the Web browser in the user's machine or mobile device. It may also refer to extensions and helper applications that enhance the browser to support special services from the site.

Here's an example:

Your web browser is an example of a web client. The remote machine containing the document you requested is called a web server. The client and server communicate using a special language (a "protocol") called HTTP.

Good luck!

How do u and justify a document

Answers

The answer is, firstly In the or a certain paragraph group, click the Dialog Box Launcher, and select the Alignment drop-down menu to set your justified text, and lastly you can just click on these certain keys on your keyboard, also known as shortcuts, and that shortcut is Ctrl + J to justify your great text. Hope this helps!

PLEASE HELP ME ASAP!!!!

Answers

The answer is A. Spyware describes software with malicious behavior that aims to gather information about a person or organization and send such information to another entity in a way that harms the user. For example by violating their privacy or endangering their device's security.

Determining Uses for Outer Joins
Which situation would most benefit from an outer join?
a query that shows only customers who placed orders
a query that shows all duplicate customers from both tables
O a query that shows only the orders that have customers attached
a query that shows all customers, whether or not they placed an order
ve

Answers

Answer:

a query that shows all customers, whether or not they placed an order

Explanation:

EDG 21

Write a program that reads in a text file, infile.txt, and prints out all the lines in the file to the screen until it encounters a line with fewer than 4 characters. Once it finds a short line (one with fewer than 4 characters), the program stops. Your program must use readline() to read one line at a time. For your testing you should create a file named infile.txt. Only upload your Python program, I will create my own infile.txt using break

Answers

Answer:

Explanation:

f=open("infile.txt","r")

flag=True

while(flag):

s=f.readline().strip()

if(len(s)>=4):

print(s)

else:

flag=False

Who first demonstrated the computer mouse?
O Microsoft
O Alan Turing
O Douglas Engelbart
O Apple, Inc.
FAST PLEASEEE THANK YOUUU

Answers

Answer:

C. Douglas Engelbart

Explanation:

Answer: C

Explanation:

Select the correct answer from each drop-down menu.

As a technical writer, you should state your purpose in the 1. ________ of your summary. In addition, you must _
2.______ the words used in the original document while writing a summary.

1. Last sentence
1. First sentence

2. Paraphrase
2. Copy
2. Quote

Answers

Answer:

1. First sentence

2. Paraphrase

Explanation:

Just took it

Please help me ASAP!

Answers

Answer:

security hacker

Explanation:

security hackers are people who hack software to check for vulnerabilities. most of the time security hackers are white hat hackers who work to perform penetration tests to see if a software is secure.

tell me if this is wrong :)

The person previous to my response is correct. The answer is security hacker. In the description it specifically states that her job involves hacking into the companies system.

What are the difference between data and information?​

Answers

Answer

The terms data and information can mean different things in different contexts, but the main differences between them are: Data is a collection of facts. Information is how you understand those facts in context. Data is unorganized, while information is structured or organized.

List to String (0.5 points) Since we are often dealing with a list of strings, it would be useful to have a function to tum a list of strings back into one single concatenated string, This function will return a string that is each element of input_list concatenated together with each separated by the string Separator For example, the following function call: list_to_string('This', 'is's 'fun' should return; "This is fun To do this, write a function called list_to_string This function should have the following inputs, outputs, and internal procedures: Input(s) input_list - list of strings . separator - string Output(s); . output - string Procedure(s): - assign a variable called output to be the first (index 0) element from input_list - loop through the rest of input_list, looping from the 2nd element index 1) through to the end of the list - Within the loop, use string concatenator to combine output with the current element, separated by separator • Assign the output of this to be the new value of output • return output, which should now be a list of the elements of input_list joined together into a single string

Answers

Answer:

The function is as follows:

def list_to_string(input_list,separator):

   output = ""

   for inp in input_list:

       output+=inp+separator

       

   output = output[:-1]

   return output

Explanation:

Given

See attachment for instruction

Required

A function to convert list to string

This defines the string

def list_to_string(input_list,separator):

This initializes the output to an empty string

   output = ""

This iterates through the input list

   for inp in input_list:

This concatenates every string in the list including the separator

       output+=inp+separator

This removes the last character of the string

   output = output[:-1]

This returns the output string

   return output

4. Ito ay ang lugar kung saan nagtatagpo ang bawat column at
row.
A. cell
B. data
C. file tab
D. sheet tab

PATULONG ​PO PLS

Answers

Answer: A. Cell

Explanation:

A cell is the point on the worksheet that results from the intersection of a column and a row.

This is why cells can be identified by the column and row that they are the result of. For instance, a cell can be called "A12" which is also known as its "address". This means that it is a result of the intersection of "Column A" and "Row 12".

n
What options are available in the Lookup Wizard? Check all that apply.
label the field
sort the records
filter the records
o adjust the column width
O adjust the header height
reduce the number of columns
Je
set where to get lookup field values

Answers

Answer:

Label the field

sort records

adjust the column width

set where to get lookup fields

Explanation:

write a object oriented c++ program

Answers

Answer:

I don't know how to code C++

Explanation:

You have configured a LAN with 25 workstations, three network printers, and two servers. The workstations and printers will have dynamically assigned IP addresses, and the printers always need to have the same IP address assigned. The servers will have static IP addresses. What should you install on one of the servers, and what are some of the configuration options

Answers

Answer:

install and configure on the server DHCP (Dynamic Host Configuration Protocol)

Explanation:

In this scenario, you should install and configure on the server DHCP (Dynamic Host Configuration Protocol), this protocol automatically assigns each individual PC a unique IP address and DNS server information. This protocol has various configuration options such as being able to set a range for the IP addresses so that they can be used by different devices in the system. It also allows you to directly set the subnet and passage gateway so that all of the workstations can quickly communicate with one another and quickly be targeted by the administration.

Answer quick plzzz I only have 2 hours

Answers

Answer:

option 2

Explanation:

Answer:

B. Kathy performs tasks common to the Engineering and Technology pathway and Sean and Joan perform tasks common to the Science and Math pathway.

A security technician is configuring a new firewall appliance for a production environment. The firewall must support secure web services for client workstations on the 10.10.10.0/24 network. The same client workstations are configured to contact a server at 192.168.1.15/24 for domain name resolution.

Required:
What rules should the technician add to the firewall to allow this connectivity for the client workstations

Answers

Answer:

Explanation:

Based on the information provided in the question, the best rules that the technician should add to the firewall would be the following

Permit 10.10.10.0/24 0.0.0.0 -p tcp --dport 443

Permit 10.10.10.0/24 192.168.1.15/24 -p udp --dport 53

This is because port 443 is used for "Secure webs services" while UDP port 53 is used for queries and domain name resolution. Both of which are the main configurations that the security technician needs to obtain.

Other Questions
Options 2-21 -1PLEASEE HELP ME After-Tax Profit Targets Olivian Company wants to earn $300,000 in net (after-tax) income next year. Its product is priced at $300 per unit. Product costs include: Direct materials $90.00 Direct labor $66.00 Variable overhead $15.00 Total fixed factory overhead $405,000 Variable selling expense is $12 per unit; fixed selling and administrative expense totals $255,000. Olivian has a tax rate of 40 percent. Required: 1. Calculate the before-tax profit needed to achieve an after-tax target of $300,000. $fill in the blank 9853e801101c04e_1 2. Calculate the number of units that will yield operating income calculated in Requirement 1 above. If required, round your answer to the nearest whole unit. fill in the blank 9853e801101c04e_2 units Feedback What is the midpoint of the segment shown below?10O A. (-1,-1)(-11,0)- 1010O B. (-1,-2)O C. (-2, -1)(9,-1)- 10OD. (-2,-1) Now Moses kept the flock of Jethro his father-in-law, the priest of Midian: and he led the flock to the backside of the desert and came to the mountain of God, even to Horeb. And the angel of the Lord appeared unto him in a flame of fire out of the midst of a bush: and he looked, and, behold, the bush burned with fire, and the bush was not consumed. And Moses said, I will now turn aside, and see this great sight, why the bush is not burnt. And when the Lord saw that he turned aside to see, God called unto him out of the midst of the bush, and said, Moses, Moses. And he said, Here am I.Exodus 3:16,Holy BibleWho called to Moses out of the burning bush?a.Godc.Midianb.Jethrod.Pharaoh Three-year-old Henry has noticed that every time his father hugs or kisses his mother, she smiles. Henry has started to hug his mother when he gets up in the morning, and he is happy that he can generate such a big smile from her. Albert Bandura has suggested that four cognitive processes are necessary for imitation to occur. Henry is exhibiting each of them. They are what's the best movie ever? C-Qui est-ce?1. Le mari de ma grand-mre est mon________________.2. Le frre de ma mre est mon___________________.3. La soeur de ma mre est ma____________________.4. Le fils de mes parents est mon___________________.5. Le fils de mon oncle est mon___________________.6. Le frre de mon mari est mon___________________.7. Je suis le_____________de mes grands-parents.8. La fille de mon frre est ma____________________.9. La fille de ma belle-mre est ma____________________.10. Nous sommes les_________de nos parents.11.La mre de ma mre est ma____________________.12. La________________de mon frre est ma belle-soeur. The map above supports the conclusion that the partition of India resulted in:demands by Pakistan to seek unification with India under one government.an equal distribution of Hindus and Muslims in India.the creation of a Muslim minority in Pakistan.heavy migration of Hindu refugees from Pakistan to India. find the value of x 9 and 5 I don't know if I chose the correct answer can someone help please Based on the above financial statements, calculate the following ratios for 2021: income statement Sales 480,000 cost of goods sold 243,200 salaries expense 55,200 depreciation expense 24,000 interest expense 4,500 rent expense 36,000 gain on equipment 0 loss on equipment disposal 1,400 364,300 net income 115,700 Statement of Retained Earnings Beginning Balance - Retained Earnings $ 36,300 Plus - Net Income 115,700 Less - Dividends (18,000) Ending Balance - Retained Earnings $ 134,000 Balance sheets 2020 2021 change Assets: Cash 27,500 72,600 45,100 Accounts Receivable 32,600 47,600 15,000 Inventory 48,000 54,800 6,800 prepaid expenses 7,200 5,200 (2,000) Equipment 56,000 77,000 21,000 Accum. Depr - Equipment (26,500) (32,500) (6,000) total assets 144,800 224,700 Liabilities: Accounts Payable 12,700 25,700 13,000 accrued Liabilities 3,800 5,000 1,200 Bonds Payable 72,000 40,000 (32,000) total liabilities 88,500 70,700 shareholders Equity: Common Stock 20,000 20,000 0 Retained Earnings 36,300 134,000 97,700 total equity 56,300 154,000 total liabilities and shareholder equity 144,800 224,700 A. Current Ratio B. Gross Profit Percentage C. Debt Ratio D. Debt to Equity Ratio 1 7.1.2 Exam: Semester Exam Question 36 of 42 What tends to happen to a sound wave as air temperature increases? O A. The wave's speed decreases. B. The wave stands still. . O C. The wave vibrates more slowly . D. The wave's speed increases 19. Which of the following statements about varying your sentence structure is true?A. Use a similar structure at the beginning of several sentences in a row for consistency.B. Pick one type of sentence (simple, compound, complex, or compound-complex) and stick with it.C. Keep your sentence structure formal to avoid sounding too conversational.D. Alternate short sentences with longer sentences. There are 4 blueberry, 6 raisins, and 2 plain bagels in a bag. Mike randomly selects two bagels without replacing the first bagel. Find the probability that he selects a raisin bagel and then a plain bagel We use reasoning to _____.write what we want to saycollect evidencemake a decision or develop an opinion 1. Sadie knows a few words in German, so she should put that she is a fluent German speaker on her resume.Select one:a.Trueb.False2.An in-person interview usually takes place after a successful phone interview.Select one:a.Trueb.False Which of the first four radioisotopes in the decay series has the longest half-life? Pa-234 Th-234 U-234 U-238 Expansionary spending takes place when a government makes the decision toput a freeze on the number of its employees.raise taxes to balance its budget.raise taxes to run a budget surplus.raise spending to stimulate the economy.. 1- How did heavy casualties affect the course of the Civil War? 2-How could Lincoln free the South's enslaved people if the Constitution did not give him the power to do so?3- How did the Emancipation Proclamation change the focus of the war?4- what were the immediate consequences of the Emancipation Proclamation? Read this excerpt from "Rikki-Tikki-Tavi" by Rudyard Kipling. Rikki-tikki knew better than to waste time in staring. He jumped up in the air as high as he could go, and just under him whizzed by the head of Nagaina, Nag's wicked wife. She had crept up behind him as he was talking, to make an end of him; and he heard her savage hiss as the stroke missed. What is the best way to paraphrase this section of the story? She had crept up behind him as he was talking, to make an end of him; and he heard her savage hiss as the stroke missed. x Darzee tried to warn Rikki-tikki, but he was too late. The cobras crept up behind him and waited for him to let down his guard. Now that Rikki-tikki had defeated the cobras yet again, they were really angry. Rikki-tikki knew he was in for some trouble. Rikki-tikki leapt over the head of Nag's evil wife, who had snuck up behind him to try to kill him. The answer is the last option: "Rikki-tikki leapt over the head of Nag's evil wife, who had snuck up behind him to try to kill him". Bonjour,Lisez svp chapitre numro cinq du Petit Prince. Ici vous trouveriez le lien: st_exupery_le_petit_prince.pdf download Rpondez chaque question avec une phrase complte, with the exception of question #1. 1. "Je ne compris pas pourquoi il tait si important que les moutons mangeassent les arbustes."Faites des recherches, et indiquez quel (in which) mode, tense, or voice are the two verbs below conjugated? Rpondez en francais. No full sentence needed, just indicate which mode, tense, or voice these are conjugated in in French. Hint: is it in the pass compos? le prsent? le futur proche? etc.a) comprisb) mangeassent2. Expliquez comment vous tes arriv votre rponse pour la question #1. Expliquez comment vous avez trouv la rponse, et si vous tes confiant de votre rponse? (Rpondez en anglais)3. De quel taille est la planete du Petit Prince? Rpondez en francais4. "Et en effet, sur la plante du petit prince, il y avait commesur toutes les plantes, de bonnes herbes et de mauvaisesherbes. Par consquent de bonnes graines de bonnes herbes etde mauvaises graines de mauvaises herbes."Etes-vous d'accord ou pas d'accord avec la proposition de l'auteur: qu'il y a de bonnes plantes, et de mauvaises plantes? (Rpondez en francais) Expliquez en francais votre rponse. "oui, je suis d'accord parce que..." ou "non, je ne suis pas d'accord parce que..." OR you could say "je pense que...". This is an opinion question, I'm looking for your opinion. 5. "Quand on a termin sa toilette du matin, il faut fairesoigneusement la toilette de la plante." Expliquez en anglais "la toilette" dans ce contexte-ci. 6. Pourquoi c'est un problme sur la plante du Petit Prince les baobobs? (Rpondez en francais)