If you want more blank white space around the text in a document, you should increase the margin. Correct answer: B
The margin is the area between the main content of a page (in this case that is the text) and the page edges. One-inch page margin is set automatically around each page. However, you can customize or choose predefined margin settings.
Answer:
Pseudo CODE
a)
n= Input “Enter 5 integer value”
b)
sum=0.0
For loop with i ranging from 0 - 5
Inside loop sum=n[i]+sum
Outside loop avg= sum/5
Print avg
c)
small=n[0] # assume the first number in the list is smallest
large= n[0] # assume the first number in the list is largest
For loop with i ranging from 0 - 5
Inside loop if n[i]<small #if any another number is smaller than small(variable)
Inside if Then small=n[i]
Inside loop if n[i]>large # if any another number is larger than large(variable)
Inside if then large=n[i]
Print small
Print large
d)
print avg
print small
print large
Answer:
Option 2: Variable names can not begin with a number.
Explanation:
As given Mark and John named a variable as 24_hour_mart while writing a program in python.
While it is forbidden to name a variable starting with any digit, only alphabets (capital and smaller) and underscore can be the first letter of the variable name.
Moreover, by considering the other options given:
- Variable name can include the underscore (_) between the words. It is used instead of spaces that are not allowed.
- There is no upper limit for variable length, it can be of any reasonable length and more than 10 characters say 11 or 12 are reasonable.
- There is no lower limit for variable length, it can be any reasonable length , even it can be of 1 character.
Variables named in python language must not be the keywords as they are reserved for other purposes.
i hope it will help you!
The way in which this client is benefiting from switching to a cloud-based enterprise platform is in terms of<em><u> efficiency.</u></em>
An enterprise platform is a base upon which companies can<u> build on the technology they have</u>. Some of the many benefits of this include:
- <em>Efficiency </em>
- Simplicity
- Expandability
and many more. A cloud-based enterprise platform allows a company to keep up to modern-day standards and stay competitive.
A cloud-based enterprise platform allows all of the users to access the data remotely, making work much more simple and removing the space limitations of on-site legacy systems, which allows the client to expand and hire new workers.
One of the ways in which this client is benefiting from switching to a <em>cloud-based enterprise platform</em> is in terms of efficiency. By removing the on-site model of work, this client will allow her workers to access the database and interchange information which other sectors all from a single server, <u>increasing efficiency greatly.</u>
To learn more visit:
brainly.com/question/24053883?referrer=searchResults
Answer:
<em>Written in Python</em>
names= []
birthday = []
name = input("Name: ")
bday = input("Birthday: ")
for i in range(1,11):
names.append(name)
birthday.append(bday)
if name == "ZZZ":
break;
else:
name = input("Name: ")
bday = input("Birthday: ")
print("Length: ", end='')
print(len(names))
checknm = input("Check Name: ")
while checknm != "ZZZ":
if checknm in names:
ind = names.index(checknm)
print(birthday[ind])
else:
print("Sorry, no entry for name")
checknm = input("Check Name: ")
Explanation:
<em>The program is written in Python and I've added the full source code as an attachment where I used comments to explain difficult lines</em>
<em />