The most accurate answer is
Padding
An interesting thing to know is
Padding is part of the program CSS it stands for (***Cascading Style Sheets***)
So as you know now a padding generates space.
The way it works is simple
You either pad ← or →
Glad to help :)
Answer:
Print Area
Explanation:
First, I'll assume Donte is making use of a spreadsheet application (Microsoft Office Excel, to be precise).
From the given options, only "Print Area" fits the given description in the question.
The print area feature of the Excel software allows users to print all or selected workbook.
To print a selection section, Donte needs to follow the steps below.
Go to File -> Print.
At this stage, Donte will have the option to set the print features he needs.
Under settings, he needs to select "Print Selection"; this will enable him Print sections of the entire workbook.
Refer to attachment for further explanation
To screw with your teacher:
first = (name1 > name2 ) ? name1 : name2;
That code is correct, but your teacher is probably looking for:
if( name1 > name2 )
first = name1;
else
first = name2;
I love the ternary operator!
Answer:
1.)
def two(a, b) :
print(a+b)
print(a*b)
2.)
a = int(input('enter an integer values '))
b = int(input('Enter another integer value' ))
print(a+b)
print(a*b)
3.)
Take side of a square from user and print area and perimeter of it.
def square(a):
area = a**2
perimeter = 4*a
print(area, perimeter)
Explanation:
Code written in python :
The first function named two, takes to arguments a and b ;
The sum of integers a and b is taken and displayed using ; print(a+b)
The product of integers a and b is taken and displayed using ; print(a*b)
2.)
User can enter an input and converted to an integer value using the command ;
int(input()) ; the sum and product of these values are displayed using :
print(a*b) and print(a+b)
The Area and perimeter of a square requires the side length, which is taken as the argument a in the square function defined.
Area of square = a² = a**2
Perimeter = 4 * a