1) Raj wants to create a presentation of 20 slides on MS PowerPoint. He wants that all the slides should have uniform background and theme. Suggest him which option in MS PowerPoint makes it possible.​

Answers

Answer 1
Raj wants to create a presentation of 20 slides on MS PowerPoint. He wants that all the slides should have uniform background and theme. Suggest him which option in MS PowerPoint makes it possible. Ans:- Slide Master option.

Related Questions

The cash register program will have items. For each item, the name and cost are saved. For a transaction, it will accept any number of items (not known in advance) and any number of payments of different payment types (not known in advance). For each transaction, it calculates the total including a 7% sales tax and keeps prompting for a payment until the total has been paid. It also determines if any change is required. Thus, a transaction is responsible for calculating the amount of money that needs to be paid, accepting money, and generating a receipt. A receipt holds information about a transaction so that it can display how much each item cost, how the transaction was paid for, etc. (see example outputbelow).Payment type includes CASH, DEBIT_CARD, CREDIT_CARDandCHECK. Each payment consists of an amount and payment type
Hints
1. All fields should be private.
2. The PaymentType class should be an enum class with values: CASH, DEBIT_CARD, CREDIT_CARD, CHECK
3. Payment type information should not print the enum directly
4. Use final to store the transaction for each receipt.
5. Output:
A. The values for subtotal, tax, total, and payment information are all aligned. You can achieve this by using the tab character '\t' in your Strings. The item lines do not need to be aligned.
B. Do not worry about only using 2 decimal places. Let Java decide how many decimal places to use.
6. Create a main class to house the main method. In the main method, create some items, a transaction, and display the receipt.
A. Example outputs
Example: Pay everything with one payment
Transaction listing the items and asking for payment:
Item 1: apple: 0.5
Item 2: pear: 0.75
Item 3: pineapple: 0.75
Total: 2.14
Please enter payment type.
1. Cash
2. Debit card
3. Credit card
4. Check
2
Enter the amount to pay with this type.
2.14
Total after payment: 0.0
Receipt printed:
apple: 0.5
pear: 0.75
pineapple: 0.75
----------------------------------------------------------
Subtotal:
Tax:
Total:
Debit:
Change: 2.0 0.14 2.14 2.14 0.0
Example: Paying with multiple payments and payment type
Item 1: refrigerator: 800.71
Total: 856.7597000000001
Please enter payment type.
1. Cash
2. Debit card
3. Credit card
4. Check
1
Enter the amount to pay with this type.
400
Total after payment: 456.75970000000007
Please enter payment type.
1. Cash
2. Debit card
3. Credit card
4. Check
2
Enter the amount to pay with this type.
475
Total after payment: -18.240299999999934
refrigerator: 800.71
3
Subtotal: 800.71
Tax: 56.04970000000001
Total: 856.7597000000001
Cash: 400.0
Debit: 475.0
Change: 18.240299999999934
Example: Using the same payment type multiple times
Item 1: apple: 0.5
Item 2: pear: 0.75
Item 3: pineapple: 0.75
Total: 2.14
Please enter payment type.
1. Cash
2. Debit card
3. Credit card
4. Check
1
Enter the amount to pay with this type.
1.25
Total after payment: 0.8900000000000001
Please enter payment type.
1. Cash
2. Debit card
3. Credit card
4. Check
1
Enter the amount to pay with this type.
10.50
Total after payment: -9.61
apple: 0.5
pear: 0.75
pineapple: 0.75
Subtotal: 2.0
Tax : 0.14
Total: 2.14
Cash: 1.25
Cash: 110.5
Change: 9.61

Answers

Answer:

Explanation:

package sample;

import java.util.Scanner;

public class Main extends newOrder{

   public static void main(String[] args) {

       newOrder order = new newOrder();

       order.newOrder("apple", 0.5);

       order.newOrder("pear", 0.75);

       order.newOrder("pineapple", 0.75);

       double newTotal = order.getTotal();

       order.printItems();

       order.printTotal();

       while (newTotal != 0) {

           Scanner in = new Scanner(System.in);

           System.out.println("Please enter payment type.\n" + "Cash \nDebit card \nCredit card \nCheck");

           String paymentType = in.nextLine();

           System.out.println("Enter the amount to pay with this type: ");

           double amount = in.nextDouble();

           newTotal -= amount;

           System.out.println("Total after payment: " + newTotal);

       }

       System.out.println("Receipt Printed:");

       order.printItems();

       order.printSubtotal();

       System.out.println("Tax: 7%");

       order.printTotal();

   }

}

------------------------------------------------------------------------------------------------------------

package sample;

public enum PaymentType {

   CASH, DEBIT_CARD, CREDIT_CARD, CHECK

}

-----------------------------------------------------------------------------------------------------------

package sample;

import java.util.HashMap;

class newOrder {

   private String name;

   private double cost;

   private double total;

   private double subtotal;

   HashMap<String, Double> itemList = new HashMap<>();

   public void newOrder(String name, double cost) {

       this.name = name;

       this.cost = cost;

       this.total += cost;

   }

   

   public void printItems() {

       for (String i: itemList.keySet()) {

           System.out.println( i + ": \t" + itemList.get(i));

       }

   }

   public double getTotal() {

       return (total * 1.07);

   }

   public void printSubtotal() {

       for (double i : itemList.values()) {

           subtotal += i;

       }

       System.out.println("Subtotal: " + subtotal);

   }

   

   public void printTotal() {

       double total = subtotal * 1.07;

       System.out.println("Total: " + total);

   }

}

A license plate has 7 characters. Each character can be a capital letter or a digit except for 0. How many license plates are there in which no character appears more than once and the first character is a digit?

a. 9 P(35, 6)
b. 9 P(34,6)
c. 9.(35)^6
d. 9.(35)^6

Answers

Answer:

b. 9 P(34,6)

Explanation:

Since the 1st character of the number plate is the digit, therefore, there are nine possible ways to select them from digits 1 to 9.

And in the license plate there are 7 characters, the first character is counted before and the remaining 6 characters that can either be a digit or a letter has to be considered.

Now there are in total 34 symbols remaining form a total of 26 letters and 8 digits. They can be placed as 34x33x32x31x30x29 ways = P(34, 6) ways.

Therefore in total for all the characters there are 9 x P(34, 6) different ways.

Design a software system for a bookstore that keeps an inventory of two types of books: Traditional books and books on CD. Books on CD may also contain music. The bookstore purchases books from publishers and sets a price for each book. Customers can purchase books from the bookstore, using either cash or a credit. The bookstore keeps track of which books it has in its inventory, and the books purchased by each customer

a. What are the objects in your object- oriented Solution?
b. What are the interactions between objects in your solution?
c. Which objects "have" other objects?
d. Which Objects "Use" other objects?
e. Which objects are other objects?

Answers

Answer:

Explanation:

a. In this scenario, the best solution would have an Object of Traditional Books, CD, Music, Bookstore and Customer.

b. All five objects would be able to be called by the main program loop and the Customer Object would call upon and use either the Books or CD object, While the Bookstore object would call upon all of the other objects.

c. Both the Bookstore object and Customer object will "have" other objects as the Bookstore needs to hold information on every Book or CD in the Inventory. While the Customer object would call upon the Book and CD object that they are purchasing.

d. The Music Object will extend the CD object and use information on the CD object as its parent class.

e. Since the Music Object extends the CD object it is also considered a CD since it is in CD format like the Books on CD and therefore is both objects.

You can write a function to find Fibonacci numbers using recursion.

How do you find the next number?


add five to the previous number

add one to the previous number

multiply the two previous numbers

add the two previous numbers

Answers

Answer:

Add the two previous numbers

Explanation:

A recursive definition of the Fibonacci sequence would look like this, in python:

def fibonacci(n)

   if n <= 1:

       return n

   else:

       return(fibonacci(n-1) + fibonacci(n-2))

Why did Elena Gilbert Turn her humanity off when she was sired to Damon? (In The Vampire Diaries)

Answers

Answer:

Ok, so when her brother died she couldn't take it and was in denial for like the longest time. And since she was still sired to Damon bofre her humanity was off she could still listen to him.

Explanation:

What is the first step in finding a solution to a problem? Choose a solution. Think of options to solve the problem. Try the solution. Turn the problem into a question.\

Answers

Answer: Summarize the six steps of the problem solving process.

Explanation:

Answer:

turn the problem into a question

Explanation:

I got it right on a test!

A mathematical process of coding information so that only the intend user can read it

Answers

Answer:

asymmetric encryption with the intended user's public key.

Explanation:

Only that user will be able to decrypt the information.

It is for employees to make mistakes that compromise the security of an organization’s computer devices and sensitive information.

impossible
difficult
easy

Answers

Answer: Easy

Explanation: Correct on my Edg 2021.

It is simple for employees to make mistakes that jeopardize a company's computer system security and sensitive data.

What exactly is sensitive data?

Sensitive information has been defined as personal data that includes facts or opinions concerning a person's race or ethnicity. political affiliations or beliefs. beliefs in religion or philosophy. Data that needs to be shielded from unwanted access in order to protect the security or privacy of a person or organization is considered sensitive information.

Pattern-based classifiers called sensitive information types (SIT) are used. To see a complete list of all SITs, see Sensitive information types entity definitions. They look for sensitive information like social security, credit card, or bank account numbers to identify sensitive things.

Therefore, It is simple for employees to make mistakes that jeopardize a company's computer system security and sensitive data.

To know more about sensitive information visit;

brainly.com/question/26191875

#SPJ3

You were just hired as an IT Specialist for Smalltown School District. Your first assignment is to review a problem area& in student records processing. It seems that the program currently used to compute student grade point averages and class rankings runs terribly slow and as a result end of year reports are habitually late. Your are asked to come up with a list of items that should be checked in order to determine if a modification to code is in order. The IT department head is asking you to do this without the opportunity to actually see the current application/programs in use. What questions would you ask about the current code? What areas of code would you look at? What would you need to know about the student data?

Answers

Answer:

Explanation:

There are various questions that you can ask in this scenario, such as

What grading policies are being implemented?

How many student grades are being calculated by the program?

What is the requirements for a student to pass?

All of these questions would allow you to get an idea of how extensive the code may be and its complexity. Once you know this you would look at the code revolving around actually looping through the data and doing the necessary calculations. You can then determine how to manipulate the code and make it much more efficient.

You would also need to know how the student data is being saved, which will help determine if it is the best data structure for saving this type of data or if it can be replaced in order to maintain the data secure while increasing the speed of the program. Mainly since this information needs to be continuously used from the data structure.

On the MarketingConsultants worksheet, in cells D10:H13, use a PMT function to calculate the end of the month payment amount. Enter one formula that can be entered in cell D10 and filled to the remaining cells. To calculate the amount for the pv argument, subtract the down payment amount from the retainer amount. The formula results should be positive.
Hiring Marketing Consultants Analysis ainted Paradise RESORT&SPA $ 125,000 5 4 Retainer Amount Term (Years) Monthly Loan Payments Down Payment $ 10,000 15,000 20,000 $25,000$30,000 2.0%, 2.5% 3.0% 3.5%. 10 12 13 15 16

Answers

Answer:

sdddddddde22

Explanation:

Other Questions
For what industry was the BessemerConverter used?A. Ship buildingB. Making textilesC. Steel manufacturingD. Meat packing A rock is dropped down from the top of a 500-foot cliff. After 1 second, the rock is traveling 32 feet per second. After 5 seconds, the rock is traveling 160 feet per second.a. Assume that the relationship between time, t, and speed, s, is linear, and write an equation describing this relationship. Use ordered pairs of the form (time, speed).b. Use this equation to determine the speed of the rock 7 seconds after it is dropped. 1Fill in the blanks to complete the sentences.The offer ofamnestyto former Confederates reflected AbrahamLincoln'smoderatevision for ReconstructionWhile thewas dedicated to helping African Americans, theKu Klux Klandid everything in its power to terrorize them.Poll taxes and Meracy tests deniedVoting Rightsto many African Americansand helped establishsegregationas a way of life in the South1. Which of the following words would best fill in the blank above?A. Freedmen's BureauB. Red ShirtsC. KKKD. Redeemers someone help meee nowww pleasee What is the area of the triangle? Tema 1. Lee el poema de Miguel Hernndez y luego responde las cuestiones. 15 ptos.Umbro, por la pena, casi bruno,porque la pena tizna cuando estalla,donde yo no me hallo no se hayahombre ms apenado que ninguno.Sobre la pena duermo solo y uno,pena es mi paz y pena mi batalla, pero que ni me deja ni se calla, siempre a su dueo fiel, pero importuno.Cardos y pena llevo por corona, cardos y penas siembran sus leopardosy no me dejan bueno hueso algunoNo podr con la pena mi personarodeada de pena y de cardos:cuanto penar para morirse uno.Qu palabra se repite en el verso? cuantas veces?Escribe dos metforas de penaSubraya el paralelismo de la estrofa nmero tres.Cul es el significado del verso tres en la estrofa nmero 1?Cules versos riman en la primera estrofa?Tema 2 Identifica los nexos y el antecedente en las siguientes oraciones subordinadas adjetivas. 20 pts.A la factura que me entreg le faltaban un montn de datos. El avin en el que viaj a Tucumn era un Boeing 727. Mi suegra, que nunca se calla nada, esa vez no abri la boca.Siempre hay algn vivo que hace lea del rbol cado.El decorador que te recomend se mud a Mar del Plata.Mi amiga Mabel, que nunca se fija en gastos, esta vez fue muy medida.Me gusta la gente que es optimista y emprendedora.La manera como vistes habla mucho de ti.La persona de quien te habl ya no trabaja ms all. El barrio donde me cri se ha transformado en una zona muy comercial.Tema 3. Subraya la oracin subordinada en los siguientes enunciados. 18 pts.Quiero que llegues a la misma hora.Pregunte si poda ayudarme con la tarea.No sabes si llegara a tiempo.Estaba donde me dijiste Ada sabe cundo abrirn la tienda nueva.Prefiero que vengas conmigo.Tema 4. Analiza las siguientes oraciones subordinadas adjetivas. 8 pts.El libro que narra la historia dominicana.La puerta por donde entraron los ladrones sufri danos.Tema 5. Completa los siguientes ejemplos con una oracin subordinada sustantiva: 12 pts._El vecino cree que____________________________________La inspectora afirma que_______________________________Nos preocupamos de que______________________________Mis amigos me preguntan si___________________________Tema 6. Escribe derivados de los siguientes verbos: 9 pts.Divertir_________________________________________Expandir________________________________________Persuadir_______________________________________Incluir__________________________________________Reprimir________________________________________Tema 7. Clasifica las siguientes oraciones subordinadas en sustantivas y adjetivas. 8 pts.Es posible que el colectivo se haya atrasado.__________________Me compre el libro del que tanto te hable durante vacaciones.________________________Me avis que vendra despus de las cinco.________________________El frasco que tena tapa amarilla es ms grande que ese._________________________Darn una eximicin de impuestos a los que fueron afectados por la catstrofe._______________Siempre recuerdo los tiempos cuando se jugaba en la calle hasta tarde.______________________En todo momento actuamos como habamos resuelto en las reuniones previas._________________Me gusta la gente que es optimista y emprendedora._______________________Tema 8. Contesta. 6 pts. Qu fue la Generacin del 27?Qu tienen en comn los autores e esta generacin? Cules son los ms importantes?Cules son las etapas de esta generacin?Tema 9. Lee este poema de Vicente Aleixandre: 4 pts. Yo te he querido como nunca.Eres azul como la noche que acaba,Eres el impenetrable caparazn del galpagoque se oculta bajo la roca de la amorosa llegada de la luzEras la sombra torpeque cuaja entre los dedos cuando en tierra dormimos.Con que compara e identifica el poeta a su amada? please help me i really need help please In New Mexico, the bracero program helped solve the problem of:A. transportation difficulties.B. the food shortage.C. a lack of resources.D. the labor shortage. 100 POINTS!!!!!Two cylinders are similar with diameters 6 in and 9 in. a. Find the ratio of the circumference of their bases b. Find the ratio of the surface areas. c. Find the ratio of the volumes. On a spaceship designed to support a multiyear voyage to the outer planets of the solar system, plants will be grown to provide oxygen and to recycle carbon dioxide. Because the spaceship will be so far from the sun, an artificial light source will be needed to support photosynthesis. Which wavelengths of light should be used to maximize plant growth? You wake up in the morning and get out of bed. Does the floor feel cold or warm on your bare feet? On the lines below, write a sentence that compares how it feels to step on a bare floor and on a rug on a cold morning Genesis has an action figure collection. She keeps some in a display case and the rest on the wall. 253 of her action figures are on the wall, and 45% of her action figures are in the display case. What is the total number of action figures in Genesis's collection? What is a font? A) a typeface on a label B) a typeface on a posterC) a typeface on a computer or d) a typeface on a sign 4.The number of hours h that it takes m men to assemble x machines varies directly as the number ofmachines and inversely as the number of men. If four men can assemble 12 machines in four hours,how many men are needed to assemble 36 machines in eight hours? PLS ANSWER TO GET POINTS "How many grams of CaCl2 would be dissolved in 1.0 L of a 0.10 M solution of CaCl2? " giving brainliest *easy* The Coriolis force controls the direction of the wind,wind speed is controlled mainly by the pressure gradient .True or false? How did the division of Korea after World War II lead to the Korean War? The straight-line distance between the points is ___ units, rounded to the nearest tenth.