Answer:
Landscape or vertical page orientation
Explanation:
In landscape he can mange the number of cell that are required to print on A4 page size.
On landscape orientation of the page we can add more columns of the sheet. That is the reason, we should choose landscape or horizontal page orientation to adjust all columns on the single page.
Answer:
B. Click Set Up, Slide Show, and then select the Loop continously until 'Esc' and use timings, if present options.
Explanation:
PowerPoint presentation is a program which was developed by Microsoft. It is a platform which is used to create business presentation or educational presentations, etc.
In order to play the slide show continuously without our interaction, we need to do the following steps :
1. In the powerpoint presentation, we have to click "Slide Show" tab in the ribbon and then click on the "Set up slide show" on the Set Up bar.
2. The set up slide show dialogue box will pop up. In this we have to check or tick on the "Loop continuously until 'Esc' " in the "Show Option" and then click 'OK'
3. Now in the "Slides" preview side panel, we have to click the 1st slide , then Press and hold the 'Shift' key and then click the last slide. This selects all the slides.
4. Now, in the transition tab, in the "Timing" group, we have or uncheck or untick the " On Mouse Click " and also check the " After"
yes
Explanation:
because it has more things
The program is
num = int(input("Enter Numerator "))
den = int(input("Enter Denominator "))
print("quotient is ",str(num//den)," remainder is ", str(num%den))
<h3>
How to create a division sign in HTML?</h3>
To create a division sign ( ÷ ) in HTML you can use any of the following codes.
÷
÷
÷
<h3>
How to divide in computer programming?</h3>
Perl code
use strict;
my $first = 15;
my $second = 5;
my $answer = $first / $second;
print "You get $answer if you divide $first by $second";
When the script above is run, it displays "You get 3 if you divide 15 by 5" on the screen.
To learn more about programming, refer
https://brainly.ph/question/4743
#SPJ4
Answer:
#program in python.
#variables
slice_area=14.125
pi=3.14159
#read diameter
d=int(input("Enter diameter of pizza:"))
#area of pizza
area=pi*(d/2)*(d/2)
#number of slice
no_slice=int(area/slice_area)
#print slice
print("total silce are:",no_slice)
Explanation:
Declare and initialize a variable "slice_area" with 14.125 which is the area of a pizza slice.Initialize a variable "pi" with 3.14159.Then read the diameter of pizza.Find the area of pizza as "area=pi *d/2*d/2".Divide the total area with area of pizza slice.This will be the number of slice.
Output:
Enter diameter of pizza:20
total silce are: 22