Answer:
using python to write the program
Explanation:
#To use the log function, the module must be imported
import math
n=int(input("Enter number to be halved"))
count=0
while(n>1):
count=count+1
n=n//2
print("The number halved is now ", n, "The is the ", count, "iteration")
x = math,log(2,(n))
print("The log of n is:", x)
Answer:
The first step after selecting the File tab is to select <u>New</u>
Explanation:
Invoice templates are used in order to streamline the billing in business.
In order to use such templates by fetching them online such as from Office.com following steps should be followed:
- Start the Microsoft Word software.
- Click on File tab.
- From the drop down memory choose New.
- In the Search menu type Invoices and it will display all available templates of Invoices.
- On the homepage, their will be be an option for More Templates below the available ones. Click on it and choose the Category from left and click Invoices.
- Select the template you want to use.
<h3>I hope it will help you!</h3>
Answer:
It is a writing system that is, a mathematical notation for representing numbers of a given set, using digits or other symbols in a consistent manner
Answer:
Output of the following program is :56
Explanation:
In the given code snippet, x is initialize with 5 and y is with 0.Then y=x++ statement will assign 5 to y and the increment the value of x,because x++ is a post increment operator.So the value of x will increase after this statement.First print statement will print the value of y i.e 5 and the next print statement will print the value of x i.e 6 without space.Therefore the Output will be 56.