Which of the following is a reason to use a template?
a. To save time when creating a new presentation
b. To use a consistent design throughout your presentation
c. To get ideas for possible content for a presentation

Answers

Answer 1

Answer:

B, To use a consistent design throughout your presentation

Explanation:

Templates basically enforce overall consistency by having a pre-determined structure and layout. All documents made using a template will match its layout exactly. When it comes to your document's content, Word's Styles tool is a great way to maintain consistent formatting.


Related Questions

Use the drop-down menus to complete the sentences about the Calendar view Arrange command group.


Under the Calendar view, you will see your calendar as

by default.


When you create an appointment, you are creating an activity that will not send

to other people.


A meeting is an activity where individuals are invited and

are shared.



is an all-day incident placed on the calendar.

Answers

Answer:

Use the drop-down menus to complete the sentences about the Calendar view Arrange command group.

Under the Calendar view, you will see your calendar as  

✔ monthly

by default.

When you create an appointment, you are creating an activity that will not send  

✔ an invitation

to other people.

A meeting is an activity where individuals are invited and  

✔ resources

are shared.

✔ An event

is an all-day incident placed on the calendar.

Explanation:

edge 2021

The complete sentences about the calendar view arrange command group are as follows:

Under the Calendar view, you will see your calendar as monthly by default. When you create an appointment, you are creating an activity that will not send an invitation to other people.A meeting is an activity where individuals are invited and resources are shared. An event is an all-day incident placed on the calendar.

What do you mean by Calender view?

Calendar view may be characterized as a type of feature within calendar software in which the user can choose from various formats in order to view the calendar more accurately and interestingly.

A calendar view lets a user view and interacts with a calendar that they can navigate by month, year, or decade. A user can select a single date or a range of dates. It doesn't have a picker surface and the calendar is always visible.

Command and control functions are performed through an arrangement of personnel, equipment, communications, facilities, and procedures employed by a commander in order to execute its functions.

Therefore, the complete sentences about the calendar view arrange command group are well mentioned above.

To learn more about Calendar view, refer to the link:

https://brainly.com/question/17524242

#SPJ2

Write two alternate functions specified below, each of which simply triples the variable count defined in main. These two functions are: a. Function tripleByValue that passes a copy of count by value, triples the copy and returns the new value.b. Function tripleByReference that passes count by reference via a reference parameter and triples the original value of count through its alias(i.e. the reference parameter)For example, if count

Answers

Answer:

Following are the code to this question:

#include <iostream>//header file

using namespace std;

int triplebyValue(int count)//defining a method triplebyValue

{

int x=count*3;//defining a variable x that multiply by 3 in the count  

return x;//return value of x

}

void triplebyReference(int& count)//defining a method triplebyReference that hold count variable as a reference in parameter

{

count*=3;//multipling a value 3 in the count variable

}

int main()//main method

{

int count;//defining integer variable

count=triplebyValue(3);//use count to call triplebyValue method

cout<<"After call by value, count= "<<count<<endl;//print count value with message

triplebyReference(count);//calling a method triplebyReference

cout<<"After call by reference, count= "<<count<<endl;//print count value with message

return 0;

}

Output:

After call by value, count= 9

After call by reference, count= 27

Explanation:

In this code two methods "triplebyValue and triplebyReference" are declared, which accepts a count variable as a parameter, and in both multiply the count value by 3 and return its value.

Inside the main method, an integer variable "count" is declared that first calls the "triplebyValue" method and holds its value into count variable and in the next, the method value is a pass in another method that is "triplebyReference", and use print method to print both methods value with a message.

Create a Python program to solve a simple pay calculation.

Answers

Answer:

def weeklyPaid(hours_worked, wage):  

   if hours_worked > 40:  

       return 40 * wage + (hours_worked - 40) * wage * 1.5

   else:  

       return hours_worked * wage  

 

 

hours_worked = 50

wage = 100

 

pay = weeklyPaid(hours_worked, wage)  

 

print(f"Total gross pay: Rs.{pay:.2f} ")

Explanation:

provides gross pay

How do you change the slide layout?​

Answers

Answer:

1) In Normal view, on the Home tab, click Layout.

2) Pick a layout that best suits the content of your slide.

3) On the View tab, click Slide Master.

4) The slide layouts appear as thumbnails in the left pane below the slide master.

5) Do one or both of the following:

- Click the layout you want and customize it. You can add, remove, or resize placeholders, and you can use the Home tab to make changes to fonts, colors, and other design elements.

- Click Insert Layout to add a new slide and format it.

6) Click Close Master to stop editing layouts.

-Your revised slide layout will be available to insert as a new slide anywhere in your presentation.

7) Click Design and point to any theme.

8) Click the down arrow under that appears under the themes panel.

9) Click Save Current Theme, give the theme a name, and click Save. Your new theme will contain your newly revised slide layout and will be available in Themes gallery.

Write a user input program that simulates a game of a rolling pair of dice. You can create/simulate rolling one die by choosing one of the integers values of 1, 2, 3, 4, 5, or 6 at randomly. The number that the user chooses will represents the number on the dice after it is rolled. As a hint use Math.random Which will perform the computation to select a random integer between 1 and 6. Assign the value to a variable to represent one of the dice that are being rolled. Perform this operation twice then you will add the results in order to obtain the total roll. Your program should output the number showing on each dice as well as the total roll. For example:

Answers

Answer:

Follows are the program to this question:

public class Main//defining a class  

{

  public static void main(String[] bax)//main method

  {

       int d1,d2,r;   //defining integer variables  

       d1 = (int)(Math.random()*6) + 1;//defining d1 variables that use random method to store a random value  

       d2 = (int)(Math.random()*6) + 1;//defining d2 variables that use random method to store a random value

       r= d1 + d2;//defining r variable that adds d1 and d2 values

       System.out.println("On the first time die will gives: " + d1);//print values with the message

       System.out.println("On the second time die will gives: " + d2);//print values with the message

       System.out.println("The total roll value is: " + r);//print values with the message

   }  

}  

Output:

On the first time die will gives: 6

On the second time die will gives: 1

The total roll value is: 7

Explanation:

In this code three integer variable "d1,d2, and r" is declared, in which the "d1 and d2" variable is used, that uses the random method to hold a random value from 1 to 6 in its variable.

In the next step "r" variable is declared that calculates the addition of the "d1 and d2", and at the last, it uses the print method to print value with the message.  

Which TWO of the following are input devices that are parts of a laptop computer?

display screen
touch pad
scanner
mouse
keyboard

Answers

Answer:

Mouse and Keyboard.

its actually keyboard and touchpad!!

an algorithm to display multiplication table a number up to 12​

Answers

Explanation:

Explanation:They are

Explanation:They are 1) start the process

Explanation:They are 1) start the process 2) Input N, the number for which multiplication table is to be printed

Explanation:They are 1) start the process 2) Input N, the number for which multiplication table is to be printed 3) For T = 1 to 10

Explanation:They are 1) start the process 2) Input N, the number for which multiplication table is to be printed 3) For T = 1 to 104) print M = N*T

Explanation:They are 1) start the process 2) Input N, the number for which multiplication table is to be printed 3) For T = 1 to 104) print M = N*T5) End for

Explanation:They are 1) start the process 2) Input N, the number for which multiplication table is to be printed 3) For T = 1 to 104) print M = N*T5) End for6) Stop the process

What is the major difference between the intranet and extranet?
Question 36 options:

Intranets hold more importance

The major difference between the two, however, is that an intranet is typically used internally.

Extranets improve internal communications

None of the above

Answers

Explanation:

Iinternet is hudge graphicla network and intranet is small network as compare to internet

BitTorrent, a P2P protocol for file distribution, depends on a centralized resource allocation mechanism through which peers are able to maximize their download rates.
True or False?

Answers

Answer:

yes. it is true. mark as brainlest

Snippet 1: check_file_permissions.c #include
1
#include
#include
int main (int argc, char* argv[])
{ char* filepath = argv[1];
int returnval;
// Check file existence returnval = access (filepath, F_OK);
if (returnval == 0) printf ("\n %s exists\n", filepath);
else { if (errno == ENOENT) printf ("%s does not exist\n", filepath);
else if (errno == EACCES) printf ("%s is not accessible\n", filepath);
return 0; }
// Check read access ...
// Check write access ...
return 0;
}
0.
(a) Extend code snippet 1 to check for read and write access permissions of a given file
(b) Write a C program where open system call creates a new file (say, destination.txt) and then opens it. (Hint: use the bitwise OR flag)
1. UNIX cat command has three functions with regard to text files: displaying them, combining copies of them and creating new ones.
Write a C program to implement a command called displaycontent that takes a (text) file name as argument and display its contents. Report an appropriate message if the file does not exist or can’t be opened (i.e. the file doesn’t have read permission). You are to use open(), read(), write() and close() system calls.
NOTE: Name your executable file as displaycontent and execute your program as ./displaycontent file_name
2. The cp command copies the source file specified by the SourceFile parameter to the destination file specified by the DestinationFile parameter.
Write a C program that mimics the cp command using open() system call to open source.txt file in read-only mode and copy the contents of it to destination.txt using read() and write() system calls.
3. Repeat part 2 (by writing a new C program) as per the following procedure:
(a) Read the next 100 characters from source.txt, and among characters read, replace each character ’1’ with character ’A’ and all characters are then written in destination.txt
(b) Write characters "XYZ" into file destination.txt
(c) Repeat the previous steps until the end of file source.txt. The last read step may not have 100 characters.

Answers

Answer:

I don't know  you should figure that out good luck

Explanation:

good luck

Scenario
You are sitting on a chair in a large room. You see an empty chair, facing you, across the room and it looks like it is very comfortable and reclines. You can probably get a power nap in on it. You need to get to that chair on the other side of the room and sit in it.

Answers

Answer:

Just sit on the better chair

Margie has found a stock template to use. She changes a few things about the formatting and then saves the
template in the Templates Folder to use again. The next time Margie wants to access this template, she will go to
File, New, Sample templates.
File, New, My templates.
File, Open, My Documents.
File, Open, New Folder

Answers

Answer:

file open my documents

Explanation:

because if she saved it she would have to go to her documents to open it

Answer:

I listened to the other person and got the question WRONG. Had I gotten that question right I would have ended with all A's this semester. So thanks a lot and the answer is File, New, My Templates

Explanation:

Suppose you have a string matching algorithm that can take in (linear)strings S and T and determine if S is a substring (contiguous) of T. However,you want to use it in the situation where S is a linear string but T is a circularstring, so it has no beginning or ending position. You could break T at eachcharacter and solve the linear matching problem|T|times, but that wouldbe very inefficient. Show how to solve the problem by only one use of thestring matching algorithm.

Answers

Answer:

no seishsssssssssssssssssssss

i have no clue how this app works

Create a text file content.txt and copy-paste following text (taken from Wikipedia) into it: A single-tasking system can only run one program at a time, while a multi-tasking operating system allows more than one program to be running in concurrency. This is achieved by time-sharing, dividing the available processor time between multiple processes that are each interrupted repeatedly in time slices by a taskscheduling subsystem of the operating system. Now, write a C program that opens content.txt file for reading and calls fork() function. The child process in the program will print first 150 characters from the file and the remaining characters will be printed by the parent. However, at the

Answers

Answer:

s0 you should figure that out because I don't know how to

Explanation:

good luck

How do you reflect yourself in the topic (filters)​

Answers

In what topic ?? Please explain more

The local library dealing with a major computer virus checked its computers and found several unauthorized programs, also known as ______.

A. Software
B. Hardware
C. Malware
D. Torrents

Answers

Answer:

malware

Explanation:

Answer: C. Malware

i just did it

For what reasons do readers use text-to-speech tools? Check all that apply.

to read difficult material
to highlight specific details
to support new language learning
to focus on important information
to hear a word’s pronunciation
to better follow a text

Answers

Answer: to highlight specific details

to focus on important information

to better follow a text

Explanation:



to highlight specific details
to focus on important information
to better follow a text

Suppose a Java method receives a List and reverses the order of the items it contains by removing each item from the front of the list, pushing each item onto a Stack, and after all items are pushed, popping the items from the stack and inserting each item at the end of the list. Assume push and pop are O(1). What is the expected Big-O running time if: a. If an ArrayList is passed. Explain your answer. b. If a Linked List is passed. Explain your answer.

Answers

Answer:

poop poop poopoop poop pooop


The purpose of Appetizers on the menu​

Answers

Answer:

An appetizer is meant to stimulate your appetite, making you extra hungry for your meal.

Explanation:

Usually an appetizer is a small serving of food, just a few bites, meant to be eaten before an entree, and often shared by several people.

1-5. Discuss briefly the function and benefits of computer network. (5pts​

Answers

Computer networks allow an unlimited amount of computers to communicate with each other. This is especially useful in enterprise environments, as technicians have to deal with hundreds of computers at a time. Computer networks make it easier to share files, increase storage capacity, better communication, easier to to control computers remotely, easier to share resources, ability to share a single internet connection on multiple devices. Computer networks also have a lot of cost benifits too, as network administration is centralised, meaning that less IT support is required, and you can cut costs on sharing peripherals and internet access.

Hopefully this helps you out!

what is the impact of technology to the mankind​

Answers

Modern technology has revolutionized the way people all over the world communicate and interact. This revolution has led to a system of globalization which has fundamentally changed modern society in both good and bad ways.

The most important technological change over the past 20 years is the advent and popularization of the Internet. The Internet connects billions of people around the globe and allows a type of connectivity in ways which the world has never seen. Companies are able to do business with consumers from other countries instantaneously, friends and families are able to talk to one another and see each other regardless of location, and information sits at the fingertips of every person with a computer, tablet or phone.

Outside of the digital world, modern advances in machinery and science have also impacted everyday life. The modernization of travel has allowed humans to span more miles in their lifetime than at any point in history, and the advancement of medicine has given people longer lifespans.

While these changes have certainly been for the better, there are also plenty of negative results of modernization and globalization. Because the Internet streamlines massive amounts of information, it can easily be exploited. The loss of privacy is one of the most pressing issues in the modern world.

Technology has also had an impact on the natural world. Industrialization has led to the destruction of natural life and has possibly caused negative effects on our climate.

When preparing a photo for a magazine, a graphic designer would most likely need to use a program such as
-Microsoft Excel to keep track of magazine sales.
-Microsoft Word to write an article about the photo.
-Adobe Photoshop to manipulate the photo.
-Autodesk Maya to create 3-D images that match the photo.

Answers

Answer:

C. Adobe Photoshop To Manipulate The Photo.

Explanation:

:)

Answer:

C

Explanation:

integral 3t+ 1 / (t + 1)^2​

Answers

Answer:

[tex]3ln|t+1|+\frac{2}{t+1} +C[/tex]

Explanation:

We'll be using u-substitution for this problem.

Let

[tex]u=t+1\\du=dt[/tex]

Substitute

[tex]\int\limits {\frac{3u-2}{u^2}} \, du[/tex]

Split the fraction

[tex]\int\limits {\frac{3u}{u^2} } \, du -\int\limits {\frac{2}{u^2} } \, du[/tex]

Move the constants out

[tex]3\int\limits {\frac{u}{u^2}du -2\int\limits {u^{-2}} \, du[/tex]

Simplify

[tex]3\int\limits {\frac{1}{u}du -2\int\limits {u^{-2}} \, du[/tex]

Integrate

[tex]3ln|u|+\frac{2}{u} +C[/tex]

Substitute

[tex]3ln|t+1|+\frac{2}{t+1} +C[/tex]

Trace the output of this code

Answers

Answer:

The output is 5

Explanation:

Given

Dim x As Integer

x = 5

If x <=5 Then x = x + 1

Label1.text = x -1

Required

The output

On the second line of the code, x=5

The third line is an if condition which checks if x<=5

So, we have:

5 <= 5 ....This is true

So, x = x + 1 will be executed

[tex]x = 5 + 1[/tex]

[tex]x = 6[/tex]

The last line of the program subtracts 1 for x and outputs the result on Label1

Label1.text = x -1

Label1.text = 6 -1

Label1.text = 5

Hence, the output is 5

Read the following statement and state whether True or False.
A. Fateh Burj is located in Mohall (Punjab).__________
8. Pongal is celebrated in West Bengal.__________
C. Chand minar is also known as the Tower of Moon'.________
D. Rabindra Nath Tagore stared the 'Shanti Niketan' school.__________
E The national sport of India is football.________​

Answers

Answer:

A. false

8. false

c. true

d. true

e false

Answer:

A. False

B. False

C. True

D. True

E. False

HTML, the markup language of the web, specifies colors using the RGB model. It uses a two-digit hexadecimal (that is, base 16) representation for each component of the vector, and concatenates the three numbers together to form one large, six-digit number. For instance, the HTML color code #80FF3B has red component 80, green component FF, and blue component 3B. In hexadecimal, the digits 0 through 9 have their usual meanings, but the letters A through F also function as digits, and have the meanings 10 through 15, respectively. Because hexadecimal means base 16, a two-digit number such as 3B thus has the meaning 16⋅3+11=59. The 16 is used because the 3 is in the 16s place, and the 11 is the meaning of the digit B. (If you found this introduction to hexadecimal notation too brief, consult the web for more details.) What is the maximum number representable with two hexadecimal digits?

Answers

Solution :

It is given that :

The digits 0 through 9 in hexadecimal have their usual meanings. But letters A through F function like the digits and it means digits 10 through 15, respectively.

Now the base of a hexadecimal is 16.

Now we know from 0 to 9  [tex]$\rightarrow$[/tex] A, B, C, D, E, F

Now the maximum two digits hexadecimal numbers are =  F F

So, F F  [tex]$= 16 \times 15 + 16^0 \times 15$[/tex]

            = 255

Service and software companies typically have a high return-on-assets ratio because they require lower blank as compared to manufacturing companies.

Answers

Answer:

So whats the question here? Your just saying a statment ...

Explanation:

Answer:

Resources

Explanation:

The logical answer would be resources. As someone who has ran both, a software company requires less physical resources such as materials, tools, a large labor force, etc. With a manufacturing company, it requires a lot more tangible resources to be successful. Not sure if that is the correct answer, but it is the most logical one.

what is the processing speed for the second generation of computers​

Answers

10mbp

I hope it helps you

visual media that gives the appearance of a movement can be a collection of graphics

Answers

its called animation, a collection of a movement of graphics.

describe the conventional method of data processing​

Answers

Answer:

The data processing is broadly divided into 6 basic steps as Data collection, storage of data, Sorting of data, Processing of data, Data analysis, Data presentation, and conclusions. There are mainly three methods used to process that are Manual, Mechanical, and Electronic.

The data processing is broadly divided into 6 basic steps as Data collection, storage of data, Sorting of data, Processing of data, Data analysis, Data presentation, and conclusions. There are mainly three methods used to process that are Manual, Mechanical, and Electronic.

Other Questions
Find the solution set of the inequality- 4x +35> 24x+35>2minus, 4, x, plus, 35, is greater than, 2xxx CAN SOMEBODY ANSWER THIS QUESTION PLZZZZZZZ PLZ PLZZ I NEED YOUR HELP PLZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ I WILL GIVE BRAINLIEST PLLLLLLLLLZZZZZZZZ HELP Me I NEED YOUR HELP PLZZZZZZZZZZ HELP ME How do I solve this? I need step by stepy=2xx=-y+6 I washed your t-shirt because it was---- 9. April's test scores in physics are 78, 85,65, 82, 90, and 95. Find the meanand standard deviation of the data. factorise x squared - 2 x - 24 2.)what is the place value of 7 in 970 123 8853.)in 292.145,what number is in the thousands place? 4.)what is the place value of 9 in 6547.965?5.)in 476.8976,what is thevalue of underline digi?...si number 7 po naka underline. guys help me please! im struggling! Show mathematically why the ratio 15:10 is not equal to 10:15 what is the combined weight of all the kittens? 1/4 = 4 3/8=2 1/2=2 5/8=2 What type of business organization generates the most total sales Which makes viral infections difficult to defeat? Find the slope of the line that passes through: (2, 4) and (6, 12) Which of the following is an example of imagery?1. The sun was sunny2. Her dress was really, really, really nice.3. The color was yellow.4. Her dress sparkled as it reflected the sun. Which is The most suitable theme for the metamorphosis The intensity of a sound wave increases as the wave spreads out from the source of the sound Your restaurant bill is $28.35. Find the amount of TAX you would pay for your dinner if the tax is 6%. (Round to the nearest cent.) find the first four terms of the sequence given by the following an=57-4(n-1),n=1,2,3 Which sentences use the i before e rule correctly? Select three answers.The frieght train rumbled by noisily.The car's ceiling is surprisingly dirty.A receipt is important for returning an item to the store.That piece of pie made Oscars mouth water.Sams beleif in himself helped his confidence. Please please please answer this and show the steps. Ill give Branliest to whoever replies first