how to make (All capital) enhancement in Ms word
while creating a style

Answers

Answer 1

Answer:

keyword involved

Explanation:

simple select the desired text and click SHIFT + F3


Related Questions

What is your idea for creating a new and fresh Gaming experience around viewing occasions for Mike's?

Answers

My idea on creating a new and fresh Gaming experience around viewing occasions is that one should incorporate emotions into games that people around  around viewing occasions can feel.

What is a gaming experience?

Gaming is known to be that experience or one can say the origin of identity and also the community that is made for gamers.

Note that the experience is one that goes far more than the game itself, and as such, My idea on creating a new and fresh Gaming experience around viewing occasions is that one should incorporate emotions into games that people around  around viewing occasions can feel.

Learn more about Gaming experience from

https://brainly.com/question/27355039

#SPJ1

HELP ASAP! Can someone help me identify the issue with my c++ code? My output looks like the given outcome but is wrong. Please help, I'll appreciate it.

#include //Input/Output Library
#include //Format Library
using namespace std;
const int COLS = 6;
const int ROWS = 6;
void fillTbl(int array[ROWS][COLS], int);
void prntTbl(int array[ROWS][COLS], int);
int main(int argc, char **argv)
{
int tablSum[ROWS][COLS];
prntTbl(tablSum, ROWS);
return 0;
}
void fillTbl(int array[ROWS][COLS], int numRows)
{
for (int row = 1; row <= numRows; row++)
{
cout << setw(4) << row;
}
}
void prntTbl(int array[ROWS][COLS], int print)
{
cout << "Think of this as the Sum of Dice Table" << endl;
cout << " C o l u m n s" << endl;
cout << " |";
for (int row = 1; row <= ROWS; row++)
{
cout << setw(4) << row;
}
cout << "" << endl;

cout << "---------------------------------" << endl;
for (int row = 1; row <= 6; row++)
{
if (row == 1)
cout << " ";
if (row == 2)
cout << "R ";
if (row == 3)
cout << "O ";
if (row == 4)
cout << "W ";
if (row == 5)
cout << "S ";
if (row == 6)
cout << " ";
cout << row << " |";
for (int col = 1; col <= 6; col++)
{
cout << setw(4) << row + col;
}
cout << endl;
}
}

HELP ASAP! Can someone help me identify the issue with my c++ code? My output looks like the given outcome
HELP ASAP! Can someone help me identify the issue with my c++ code? My output looks like the given outcome

Answers

I see that your code is missing the function call to fillTbl() which is responsible for populating the tablSum array. Y

The Program to use

fillTbl(tablSum, ROWS);

This will ensure that the array is properly filled before being printed.

Therefore, you need to call this function before calling prntTbl() in the main() function. Add the following line before prntTbl(tablSum, ROWS);:

To guarantee the correct filling of the array, it must be ensured prior to its printing.

Read more about debugging here:

https://brainly.com/question/18554491

#SPJ1

what are the difference between bit address 7ch and byte address 7ch

Answers

so a byte address can only send  a get bytes (8 bits)

when a bit address can be more detailed as it can send a get not only bytes but bits also

-scav

Consider a DMA module that is transferring characters (as bytes), one at a time, to main memory from some I/O device connected directly to the DMA device. Suppose that I/O device transfers bit-by-bit at a rate of 19200 bits per second. Suppose the CPU can fetch 1 million instructions per second (with constant use of the system bus and main memory). How much will the processor be slowed down due to the DMA activity

Answers

We have that the Processor speed reducing  will be  is mathematically given as

S=0.24 %.

From the question we are told

Consider a DMA module that is transferring characters (as bytes), one at a time, to main memory from some I/O device connected directly to the DMA device. Suppose that I/O device transfers bit-by-bit at a rate of 19200 bits per second. Suppose the CPU can fetch 1 million instructions per second (with constant use of the system bus and main memory). How much will the processor be slowed down due to the DMA activityProcessor

Generally we have that the processor fetches directions at a charge of 1m guidelines per 2d or 1 MIPS.

The  I/O machine switch records at a pace of 19200 bits per seconds.

\(\frac{19200}{8} = 2400\)

Therefore

2400 bytes per sec

Since that CPU is fetching and executing guidelines at an common charge of one million directions per 2nd sluggish down or cycle wasted p.c in DMA switch = ( 2400 / 1000000) * 100

= 0.24%

Hence

The Processor speed reducing  down will be

S=0.24 %.

For more information on Processor visit

https://brainly.com/question/16517842

usually it is a rectangular box placeed or underneath your desk​

Answers

Answer:

Uh... there is no question here.

Explanation:

No question to answer.

Identify the two top benefits of using angel investors to start a business.

Answers

Answer:

Overcome financial obstacles. Reduced pressure to repay.

Explanation:

Overcome financial obstacles: the first advantage of having someone invest in your company is that they can help you overcome financial obstacles to develop and grow as a business.

Reduced pressure to repay: As an investment isn't classified as a loan, an investor usually won't restrict you the rules or loan. This means that you're not usually held to tight deadlines and upfront repayments, with interest added on top.

how would i do this?
Create a program that will do the following
• Ask the user to enter an unknown set of integers, and stop when they enter 9999
• Add up all the even numbers.
• After the loop, print the sum of the even numbers with a label

Answers

Answer:

#include <iostream>

using namespace std;

int main() {

   int num = 0, sum = 0;

   do {

       cin >> num;

       if (num % 2 == 0) {

           sum += num;

       }

   } while (num != 9999);

   cout << "The sum of the even numbers is " << sum;

}

Which of the following tasks are commonly performed in Restaurant and Food/Beverage Services jobs? Check all that apply.

Greeting customers
Handling luggage
Planning menus
Cooking food
Mixing drinks
Handling customer payments
Planning travel
Organizing fun activities

Answers

Answer:

a,c,d,e,f

Explanation:

Answer:

a,c,d,e,f

Explanation:

one edge

The internet allows you quick access to research and digital media what do you need to do if you want to use someone’s else’s work?

Answers

Answer:

You need to cite someone else's work

Explanation:

What Is the Purpose of a Web Browser? *

Answers

A web browser takes you anywhere on the internet. It retrieves information from other parts of the web and displays it on your desktop or mobile device. The information is transferred using the Hypertext Transfer Protocol, which defines how text, images and video are transmitted on the web.

Answer:

This is your answer. If I'm right so,

Please mark me as brainliest. thanks!!!

What Is the Purpose of a Web Browser?*

Difference between Python vs Pandas?

Answers

Python and Pandas are not directly comparable as they serve different purposes. Here's an explanation of each:

Python:

Python is a general-purpose programming language known for its simplicity and readability. It provides a wide range of functionalities and can be used for various tasks, including web development, data analysis, machine learning, and more. Python has a large standard library and an active community, making it versatile and widely used in different domains.

Pandas:

Pandas, on the other hand, is a powerful open-source library built on top of Python. It is specifically designed for data manipulation and analysis. Pandas provides easy-to-use data structures, such as Series (one-dimensional labeled arrays) and DataFrame (two-dimensional labeled data tables), along with a variety of functions for data cleaning, transformation, filtering, grouping, and aggregation.

In essence, Python is the programming language itself, while Pandas is a Python library that extends its capabilities for data analysis and manipulation. You can use Python to write code for a wide range of purposes, while Pandas is focused on providing efficient and convenient tools for working with structured data.

for similar questions on Python.

https://brainly.com/question/26497128

#SPJ8

How does a Cell is Addressed in MS Excel ?​

Answers

Cells are the boxes you see in the grid of an Excel worksheet, like this one. Each cell is identified on a worksheet by its reference, the column letter and row number that intersect at the cell's location. This cell is in column D and row 5, so it is cell D5. The column always comes first in a cell reference

Choose the word that matches each definition. A(n) is a statement that assigns a value to a variable.

Answers

An assignment statement is a statement that assigns a value to a variable.

What is a variable?

A variable can be defined as a specific name which refers to a location in computer memory and it is typically used for storing a value such as an integer.

This ultimately implies that, a variable refers to a named location that is used to store data in the memory of a computer. Also, it is helpful to think of variables as a storage container which holds data that can be changed in the future.

The methods for passing variables.

In Computer technology, there are two main methods for passing variables to functions and these include the following:

Pass-by-value.Pass-by-reference.

In conclusion, an assignment statement refers to a type of statement which s typically used by computer programmers and software developers to assign a value to a variable.

Read more on assignment statement here: https://brainly.com/question/25875756

#SPJ1

Xander would like to add an action button to one of his slides. Where should he go to do this? Slide Master > Symbols > Action Buttons Insert > Symbols > Actions Buttons Insert > Shapes > Action Buttons Home > Media > Action Buttons

Answers

Xander should go to "Insert > Shapes > Action Buttons" to add an action button to one of his slides. This option allows him to choose from a variety of predefined action buttons that can be easily inserted onto the slide. Once the action button is inserted, he can customize its appearance and assign the desired action or hyperlink to it.

To add an action button to a slide, Xander should follow these steps:

Go to the "Home" tab in the PowerPoint menu.

Click on the "Shapes" button located in the "Drawing" group. A drop-down menu will appear.

In the drop-down menu, scroll down to the "Action Buttons" section.

Click on "Action Buttons" to expand the options.

Choose the desired action button from the available options. There are various pre-designed buttons, such as arrow shapes, play buttons, and more.

Click and drag on the slide to create the action button. A default placeholder text will appear.

Customize the appearance of the action button by resizing, changing colors, or applying any other formatting options.

Right-click on the action button and select "Edit Text" to change the placeholder text if desired.

Assign an action or hyperlink to the button by right-clicking on it and selecting "Hyperlink" or "Action" from the menu.

Save the presentation to retain the changes.

By following these steps, Xander can easily add an action button to his slide and customize its functionality as needed.

For more such questions on Action button

https://brainly.com/question/32057592

#SPJ11

what is a computer modem?​

Answers

Answer:

A modem modulates and demodulates electrical signals sent through phone lines, coaxial cables, or other types of wiring.

Write a program to prompt the user for hours and rate per hour using input to compute gross pay.

Pay should be the normal rate for hours up to 40 and time-and-a-half for the hourly rate for all hours worked above 40 hours.

Put the logic to do the computation of pay in a function called computepay() and use the
function to do the computation. The function should return a value. Use 45 hours and a rate of 10.50 per hour to test the program (the pay should be 498.75).

You should use input to read a string and float to convert the string to a number. Do not worry about error checking the user input unless you want to - you can assume the user types numbers properly. Do not name your variable sum or use the sum() function.​

Answers

def computepay(h,r):

   if h > 40:

       pay = 40 * r

       h -= 40

       pay += (r*1.5) * h

   else:

       pay = h*r

   return pay

print(computepay(float(input("How many hours did you work? ")),float(input("What is your rate of pay"))))

I hope this helps!

Describe how being a global citizen in the world of advanced technology can be beneficial to your success in meeting your personal, academic, and professional goals.

Answers

Answer:

well you could have more options of careers and more possibilities, online jobs can pay more and give more experience to the employees

why does computer need memory​

Answers

so that they can store your things you download.

Answer:

To Help you keep your cherisable and memorable moments.

6.
is the result of the computer processing the input you provide.

Answers

Explanation:

A computer is a machine that can be programmed to accept data (input), process it into useful information (output), and store it away (in a secondary storage device) for safekeeping or later reuse. The processing of input to output is directed by the software but performed by the hardware.

To function, a computer system requires four main aspects of data handling: input, processing, output, and storage. The hardware responsible for these four areas operates as follows:

Input devices accept data in a form that the computer can use; they then send the data to the processing unit.

what is super computer ? List out application area of super computer.​

Answers

Explanation:

Common applications for supercomputers include testing mathematical models for complex physical phenomena or designs, such as climate and weather, the evolution of the cosmos, nuclear weapons and reactors, new chemical compounds (especially for pharmaceutical purposes), and cryptology.

OR

A supercomputer is a computer that performs at or near the highest operational rate for computers. Traditionally, supercomputers have been used for scientific and engineering applications that must handle massive databases, do a great amount of computation, or both.

Please have a look at the screenshot below

Please have a look at the screenshot below

Answers

C. Reliability

Because of the network and recovery time



Plz give brainliest

Describe two types of storage devices?​

Answers

Answer:

Central Process Unit and Random Access Memory

As you learned in the Learning Activity titled, "What is a Database?" databases are used by organizations to manage large amounts of data. Assume you are the database administrator for a small company and you have been asked to merge data from a new supplier into your inventory. Based on the various types of databases discussed in the Learning Activity titled, "Knowing Databases", what type of database would be most appropriate for your company and why? What factors would influence your decision? What are some considerations you would consider if you want to ensure your database is scalable and could support future growth?​

Answers

For the given scenario, a relational database would be the most suitable choice

How can this be used?

Structured data management and intricate interconnections between entities, such as suppliers and inventory items, are efficiently handled by relational databases.

The decision is being influenced by various factors such as the coherence of data, its reliability, and the potential to execute intricate inquiries. In order to guarantee the potential for expansion and accommodate future development, it is crucial to make thoughtful decisions such as selecting a database management system that facilitates horizontal scaling, enhancing the design of the schema, improving indexing and query efficiency, and supervising the system for performance adjustments and capacity forecasting.

Implementing these measures would facilitate the effective management of growing amounts of data without compromising scalability.


Read more about relational database here:

https://brainly.com/question/13262352
#SPJ1

0.6 tenths of an hour would be how many minutes?

Answers

Answer: 3.6 minutes

Explanation:

Critical Thinking
6-1
Devising a DC Strategy
Problem:

This project is suitable for group or individual work. You're the administrator of a network of 500 users and three Windows Server 2016 DCs. All users and DCs are in a single building. Your company is adding three satellite locations that will be connected to the main site via a WAN link. Each satellite location will house between 30 and 50 users. One location has a dedicated server room where you can house a server and ensure physical security. The other two locations don't have a dedicated room for network equipment. The WAN links are of moderate to low bandwidth. Design an Active Directory structure taking into account global catalog servers, FSMO roles, sites, and domain controllers. What features of DCs and Active Directory discussed in this chapter might you use in your design?

Answers

The Active Directory (AD) database and services link users to the network resources they require to complete their tasks.The database (or directory) holds crucial details about your environment, such as how many computers and users there are, as well as who has access to them.

What is the features of DC refer ?

By verifying user identity through login credentials and blocking illegal access to those resources, domain controllers limit access to domain resources.Requests for access to domain resources are subject to security policies, which domain controllers apply. To create and administer sites, as well as to manage how the directory is replicated both within and between sites, utilize the Active Directory Sites and Services console.You can define connections between sites and how they should be used for replication using this tool. All of the information is safeguarded and kept organized by the domain controller.The domain controller (DC) is the container that Active Directory uses to store the kingdom's keys (AD). Administrators and users can easily locate and use the information that Active Directory holds about network objects.A structured data store serves as the foundation for the logical, hierarchical organization of directory data in Active Directory. A networking appliance designed specifically for enhancing the performance, security, and resilience of applications provided over the internet is known as an application delivery controller (ADC). Distributed Control Systems (DCS.   Automatic regulation.    Program (logic) control   Remote control (start, shutdown, change of set points),  Alarms and notifications management,Collection and processing of process and equipment data. Graphic presentation of process and equipment condition data.Applications like production scheduling, preventative maintenance scheduling, and information interchange are made possible by the DCS.The global dispersion of your plant's subsystems is made easier by a DCS.A DCS may effectively monitor or enhance operational qualities like: Efficiency. Industrial processes are controlled by DCS to raise their dependability, cost-effectiveness, and safety.Agriculture is one process where DCS are frequently employed.chemical factories.refineries and petrochemical (oil) industries. The DCS is interfaced with the corporate network in many contemporary systems to provide business operations with a perspective of production.View Next:DCS Wiring Plans.Test on instrumentation.Secure Control System.dustrial communication, automation, and remote function. As the name implies, the DCS is a system of sensors, controllers, and associated computers that are distributed throughout a plant. Each of these elements serves a unique purpose such as data acquisition, process control, as well as data storage and graphical display.

       To learn more about Active Directory refer

      https://brainly.com/question/24215126

       #SPJ1

       

. What projects would Excel best be used for?

Answers

Answer:

Projects that require spreadsheet organization and/or calculations between data

Explanation:

That is why Excel is a spreadsheet program

Match the technology to its description.
facsimile
smartphone
HDTV
Internet
VoIP

Answers

Facsimile machine - Sends copies from one place to another

Personal Digital Assistant - sends e-mails and makes phone calls

High Definition Television - transmits digital signals for better-quality sound and pictures

The internet - makes web pages, music, and videos accessible

Voice over internet protocol - makes phone calls using computers

In a library database, where would you have the potential for repeating groups? What are the potential problems? Explain.

Answers

In a library database, repeating groups can potentially occur in the following scenarios:

A book can have multiple authors

A book can have multiple subjects

A patron can borrow multiple books

A patron can have multiple addresses or phone numbers on file

The potential problem with repeating groups is that they can lead to data redundancy and inconsistency. For instance, if a book has multiple authors, the title and other book-related data may need to be repeated for each author. This can lead to inconsistencies in data, as any changes made to the book data may not be reflected accurately for each author. Similarly, if a patron has multiple addresses on file, changes made to one address may not be reflected for the other address.

Another problem with repeating groups is that they can lead to difficulties in searching and querying the database. For instance, if a book has multiple subjects, it may be difficult to search for all books related to a particular subject. In such cases, normalization techniques may be used to reduce the redundancy and inconsistencies associated with repeating groups.

mark me as brainliest if that helps

explain the impact of effectively understanding the various formatting options available in the word processing software application which you are using​

Answers

The formatting tool is very important. When one effectively understands the various formatting options available in the word processing software application, one can be able to;

Make more accessible options for readers through creating and use of headings, highlighting key words or ideas etc.

Formatting any document helps one to have a  presentable and professional document.

It makes the document easier and a lot interesting to read.

It helps in Proper punctuation marks and spelling usefulness.

What is formatting in MS Word?

Formatting text is simply known as the act of controlling how one wants a particular text to appears in your document. This includes the control of the size, color, etc.

Learn more about word processing software  from

https://brainly.com/question/1022352

Drivers are concerned with the mileage their automobiles get. One driver has kept track of several tankfuls of gasoline by recording the miles driven and gallons used for each tankful. Develop a C# application that will input the miles driven and gallons used for each tankful. The application should calculate and display the miles per gallon obtained for each tankful and display the total combined miles per gallon obtained for all tankfuls up to this point. Additionally, the application should categorize and display the consumption rate of gasoline as follows: Low, if the total miles per gallon is greater than 30. • Normal, if the total miles per gallon is between 20 and 30. High, if the total miles per gallon is less than 20. All averaging calculations should produce floating-point results. Display the results rounded to the nearest hundredth. c# program ​

Answers

To solve this problem with the help of C++ programing language, you must know concepts like variables, data type, if-else and while loop.

Step-by-step coding for the problem:

using System;

namespace GasOfMiles

{

   public class Gas

   {

       static void Main(string[] args)

       {

           int miles; // miles for one tankful

           int gallons; // gallons for one tankful

           int totalMiles = 0; // total miles for trip

           int totalGallons = 0; // total gallons for trip

           double milesPerGallon; // miles per gallon for tankful

           double totalMilesPerGallon; // miles per gallon for trip

           // prompt user for miles and obtain the input from user

          Console.Write("Enter miles (-1 to quit): ");

           miles = Convert.ToInt32(Console.ReadLine());

           // exit if the input is -1 otherwise, proceed with the program

           while (miles != -1)

           {

               // prompt user for gallons and obtain the input from user

               Console.Write("Enter gallons: ");

               gallons = Convert.ToInt32(Console.ReadLine());

               // add gallons and miles for this tank to totals

               totalMiles += miles;

               totalGallons += gallons;

               // calculate miles per gallon for the current tank

               if (gallons != 0)

               {

                   milesPerGallon = (double)miles / gallons;

                   Console.WriteLine("MPG this tankful: {0:F}",

                      milesPerGallon);

               } // end if statement

               if (totalGallons != 0)

               {

                   // calculate miles per gallon for the total trip

                   totalMilesPerGallon = (double)totalMiles / totalGallons;

                   Console.WriteLine("Total MPG: {0:F}\n", totalMilesPerGallon);

               } // end if statement

               // prompt user for new value for miles

               Console.Write("Enter miles (-1 to quit): ");

               miles = Convert.ToInt32(Console.ReadLine());

           } // end while loop  

           Console.ReadKey();

       }

   }

}

To learn more about C++ Programming, visit: https://brainly.com/question/13441075

#SPJ9

Other Questions
At a school there are six lessons in a day. In total, the six lessons last for 4 hours.a) Assume that each lesson lasts the same amount of time How many minutes long is the final lesson? which hormone is a very effective antioxidant, one that may protect cns neurons from free radicals such as nitric oxide (no) or hydrogen peroxide (h2o2)? dr. bole is studying the relationship between background noise and college students' ability to study. he randomly assigns students to one of two groups. the first group studies in a noisy room; the second group studies in a quiet room. which is the experimental group? parental overvaluation or abuse/neglect is associated with the development of which personality disorder? group of answer choices A. narcissistic B. antisocial C. histrionic D. borderline The new-product process starts with new-product strategy development. Place the steps that follow this one in order. how do i solve this equation Albany International Corporation, originally the Albany Felt Company, is an industrial-goods company based in Rochester, New Hampshire. On June 30, Year 1, Albany International sold merchandise to its good customer ABC Inc. and accepted a noninterest-bearing note in exchange. The note requires payment of $45,000 on March 31, Year 2 The fair value of the merchandise exchanged is $42,300. Albany International views the financing component of this contract as significant.Required:1. Please prepare journal entries for Albany International to record the sale of merchandise (please omit any entry that might be required for the cost of the goods sold), any December 31, Year 1 interest accrual, and the March 31, Year 2 collectionrecord the sale of merchandiserecord the interest accrual on 12/31record the interest accrual on 3/31record the cash collection2. What is the effective interest rate on the note? Several bakeries in a town were asked the price for different amounts of donuts at their shop. The scatter plot with a line of best fit was created from the data gathered.Part A: Estimate the correlation coefficient. Explain your reasoning for the given value. (4 points)Part B: How many positive and negative residuals are there? Explain your reasoning. (3 points)Part C: State the point with the largest absolute value residual and interpret the point in terms of the context of the data. (3 points) The Native Amercian "round dance" is an American Dance tradition? which one is right, i need to knowwwwwwwwwwwwwwwww!!!!!!!!!!!!!!!!!!!1 Equilibrium price and quanity!! The demand for large-screen TVs is P=1,30020Q D . The supply of large-screen TVs is P=1,250+75Q S . What is the equilibrium price of a large-screen TV and what is the equilibrium quantity of large-screen TVs per day? The equilibrium price is $ a large-screen TV, and the equilibrium quantity is large-screen TVs per day. Answer to the nearest whole number. The demand for winter coats is P=3502Q D . The supply of winter coats is P=125+4Q S . What is the equilibrium price of a winter coat and what is the equilibrium quantity of winter coats? The equilibrium price is $ a winter coat, and the equilibrium quantity is winter coats per day. Answer to the nearest whole number. Question 3 (1 point)Which of the following is not a manner of prewriting according to your book?freewritingbrainstormingrevisingclustering What is 3(b+8) in Distributive Property Why real output increases when both taxes and government purchases increased by the same amount? Find the lateral surface area of the cylinder. Round your answer to the nearest tenth. Find the distance between the two numbers on a number line. 2.7 , 5.9 30 POINTS!!! Reference Image A. Describe an example of a GMO that is used to improve agricultural practice in a region with a less than ideal climate. A 5 kg ball is thrown into the air. It is going 6m/s whenthrown. How much potential energy will it haveat the top? In the diagram below, What are their duties and responsibilities who are the game officials?