<span>si la sustancia es droga, cárcel</span>
1. Less picture less distraction, but where to put pictures ? At the start of your presentation just to initially get the attention of the audience.
2. Use bullets for texts, never use paragraphs. Use short text or even words only which captures the subject of the presentation.
3. In conjunction with point 1. Use less animations as well. Especially for formal presentations
Additionally : Make sure to know your audience, for professionals, make the presentations short and precise. For much informal audiences you can be playful but always keep in mind not to overshadow the attention from the speaker.
<span>Looking at the first two vertices, A and B, we see that the x values have a difference of (-1 - 13) units, or 14 units. This gives us the base of the parallelogram. Next, we look at the difference between the y values between B and C to find the height. In this case, they are (12 - [-5] ) units, or 17 units. The area of a parallelogram is simply base multiplied by height, which is (14 * 17), or 238 square units.</span>
Answer:
The solution code is written in Python:
- name = input("Enter your name: ")
-
- name_components = name.split(" ")
-
- first_name = name_components[0]
- middle_name = name_components[1]
- last_name = name_components[2]
-
- print(last_name + ", " + first_name[0] + "." + middle_name[0])
Explanation:
Firstly, prompt user to enter name (Line 1).
Next, use the string <em>split()</em> method and use space " " as separator to split the input string into individual component, first name, middle name, last name and assign to variable <em>first_name, middle_name </em>and<em> last_name </em>(Line 5-7).
Display the output as required by the question.