Which element of presentation software can you use to add callouts and banners?

Answers

Answer 1
Answer: 1.)From the Insert tab, select the Shapes command. A drop-down menu will appear.
2.)Select the desired shape
3.)
Click and drag the slide to create the shape. You may need to move or resize the shape so it points to the desired part of the image.
4.)
f you want your callout to contain text, start typing while the shape is selected.
5.)
From the Format tab, you can use the options in the Shape Styles group to customize the appearance of the shape. You can also adjust the font from the Home tab
Answer 2
Answer:

the answer i can confirm is Shapes


Related Questions

What are the differences between the various EHRs?
Converting terminology via computers is called
Who are the people who direct traffic, give speeding tickets, fight crime, and even keep schools safe?
It is most important to ask questions when looking at media messages because doing soa. provides a higher level of entertainment value. b. helps you to prepare for a career in media. c. enables you to be an intelligent consumer. d. allows you to determine a product's quality.
ENG103 DISCUSSION BOARD 3 Take some time to use the various search engines discussed in Lesson Two. Choose a topic of your liking and useBing (common search engine)iSEEK Education (academic search engine)MetaLib (metasearch engine)What types of information did each search provide? Discuss what features you like and dislike about each of the search engines.can you help me please

What inventor patented the first american movie projector

Answers

 Woodville Latham and his sons, Otway and Gray.
Woodville Latham and his two sons, Otway and Grey demonstrated the first movie projector in the US 

What does the Bookmark/Favorites feature of a Web browser do?

Answers

It saves your favorite websites so that you can open them easily the next time you open you browser. 

C is the answer i hope that will help you with the question

for the employee class program in the unit 3 finishing the employee class program tutorial, what if we need to update the display menu and selections to add in a way to change the id of an employee? what code segments would need to be added to the display menu() method and the command while loop respectively to implement this?

Answers

To update the display menu and selections in the Employee class program tutorial to include the option to change an employee's ID, you would need to add code segments to the `display_menu()` method and the command `while` loop.

Here's a possible implementation:

```python

class Employee:

   def __init__(self, name, id):

       self.name = name

       self.id = id

   def display_menu(self):

       print("1. Change ID")

       print("2. Display Employee Details")

       print("3. Quit")

   def change_id(self):

       new_id = input("Enter new ID: ")

       self.id = new_id

       print("Employee ID changed successfully.")

   def run(self):

       choice = 0

       while choice != 3:

           self.display_menu()

           choice = int(input("Enter your choice: "))

           if choice == 1:

               self.change_id()

           elif choice == 2:

               self.display_details()

           elif choice == 3:

               print("Quitting...")

           else:

               print("Invalid choice. Try again.")

   def display_details(self):

       print("Employee Name:", self.name)

       print("Employee ID:", self.id)

```

In the updated code, the `display_menu()` method now includes the option "1. Change ID" to indicate the ability to change the employee's ID.

Inside the `run()` method, the `choice` variable is used to track the user's input. If the choice is 1, the `change_id()` method is called, which prompts the user to enter a new ID and updates the `id` attribute of the employee object accordingly.

With these additions, the updated Employee class program allows users to select the option to change the ID of an employee from the menu and executes the necessary code to facilitate the ID change.

Learn more about display menu:

brainly.com/question/31206277

#SPJ11

What is a database,file,record,field and data?

Answers

Data Base: a structured set of data held in a computer, especially one that is accessible in various ways.

File: a folder or box for holding loose papers that are typically arranged in a particular order for easy reference. (this is for the computer and not like paper)

Record: 
a thing constituting a piece of evidence about the past, especially an account of an act or occurrence kept in writing or some other permanent form. (so like a past item)

Data: 
the quantities, characters, or symbols on which operations are performed by a computer, being stored and transmitted in the form of electrical signals and recorded on magnetic, optical, or mechanical recording media.

What is the output of the following program?#include using namespace std;void doSomething(∫);int main(){int x = 2;cout << x << endl;doSomething(x);cout << x << endl;return 0;}void doSomething(int &num){num = 0;cout << num << endl;}

Answers

Answer:

The outputs of the code is

2

0

2

Explanation:

First, I'll arrange the code line by line. While arranging the code, I'll make some corrections

#include <iostream>

using namespace std;

void doSomething();

int main(){

int x = 2;

cout << x <<endl;

doSomething(x);

cout << x << endl;

return 0;

}

void doSomething(int &num)

{

num = 0;

cout << num << endl;

}

At line 6, the value of x which is 2 is printed and the line is terminated to prevent printing of value on the same line. So, the next print statement will start on the next line.

At line 7, the function doSomething () is called.

This statement will execute the instructions in the doSomething () function and print value 0. This line is also terminated.

At line 8, the value of x is printed which is also 2

In Windows, which menu allows you to view file characteristics?a. View menu
b. Start menu
c. Details menu
d. File menu

Answers

View Menu

Hope this helps ;)