Answer:
When printing a single contact, go to File and then Print; the only style available is Memo style .
When printing multiple contacts, there are several styles to choose from
Explanation:
<em>The question has been answered (by you). I will help you with the explanation. The texts in bold in the answer section represent the answer.</em>
<em />
The question is an illustration of Microsoft outlook.
In Microsoft outlook, the default style of printing is the memo style of printing. This is the only form of printing allowed when printing single contacts. In other words, other forms of printing cannot be selected.
However, there are several options available when multiple contacts are to be printied. Some of the printing styles are: phone directory style, card style, medium booklet style, etc.
Answer:
numbers = '14 36 31 -2 11 -6'
nums = numbers.split(' ')
for i in range(0, len(nums)):
nums[i] = int(nums[i])
print(nums)
Answer:
- common = []
- num1 = 8
- num2 = 24
- for i in range(1, num1 + 1):
- if(num1 % i == 0 and num2 % i == 0):
- common.append(i)
- print(common)
Explanation:
The solution is written in Python 3.
Firstly create a common list to hold a list of the common factor between 8 and 24 (Line 1).
Create two variables num1, and num2 and set 8 and 24 as their values, respectively (Line 3 - 4).
Create a for loop to traverse through the number from 1 to 8 and use modulus operator to check if num1 and num2 are divisible by current i value. If so the remainder of both num1%i and num2%i will be zero and the if block will run to append the current i value to common list (Line 6-8).
After the loop, print the common list and we shall get [1, 2, 4, 8]
U can see the printscr botton at the top right of ur keyboard and then u can type paint and the control v.
Answer:
<em>Floating Point Operations Per Second</em> (FLOPS)
Explanation:
<em>Floating Point Operations Per Second</em> (FLOPS) is a measure of a computer’s performance, especially in fields of scientific calculations that make heavy use of floating-point calculations. Floating-point operations include any operations that involve fractional numbers.