Possible Answers:
- Medicemanto - Medicine, especially applied.
- Ingeniería - Engineering. Modern scientific engineering is making use of technology to help solve problems and understand cause and effects.
- Comunicación - Communication. Public broadcasting to raise awareness of environmental or other scientific concerns.
Answer:
Option D. Persuasive writing style
is correct answer.
Explanation:
- Alice should adopt the persuasive writing style as she wants to convince the people to adopt eco-friendly methods of living.
- When a person write persuasively, this means he/she will present justifications and reasons for that specific opinion he/she is trying to convince the audience.
- For the correctness of their opinion, different kinds of evidences are prepared so that the fact persuade the reader.
- Persuasive writing is used widely while writing academic papers, advertisements and argumentative essays as well.
<h2>
</h2><h2>
i hope it will help you!</h2>
Answer:
i think Make variables to represent the length and width of a rectangle, called length
and width
, respectively. You should set length
to 10 and width
to 5.
Then, write some mathematical expressions to computer the area and perimeter of the rectangle and save these values inside variables named area and perimeter
.Use print
statements to display the area and perimeter of the rectangle.
Your output should print the area on the first line and the perimeter on the second, like this:
50 30 Rectangle Area Formula:
Area = L * W
Explanation:
Answer:
Many occupations use mathematics, even if it is not the primary focus of a given job.
Explanation:
Think about software developers, they develop apps, websites, and other things, but they also use math in the process. Scientists use statistics. Mechanics use math to make sure their measurements are right. Therefore, I think your best bet would be
A. Many occupations use mathematics, even if it not the primary focus of a given job.
Answer:
#include <iostream>
using namespace std;
int main() {
int k;
double d;
string s;
cin >> k >> d >> s;
cout << s << " " << d << " " << k << "\n" << k << " " << d << " " << s; }
Explanation:
k is int type variable that stores integer values.
d is double type variable that stores real number.
s is string type variable that stores word.
cin statement is used to take input from user. cin takes an integer, a real number and a word from user. The user first enters an integer value, then a real number and then a small word as input.
cout statement is used to display the output on the screen. cout displays the value of k, d and s which entered by user.
First the values of k, d and s are displayed in reverse order. This means the word is displayed first, then the real number and then the integer separated again by EXACTLY one space from each other. " " used to represent a single space.
Then next line \n is used to produce a new line.
So in the next line values of k, d and s are displayed in original order (the integer , the real, and the word), separated again by EXACTLY one space from each other.
The program along with the output is attached.