$21.08 is an example of a currency Number format in Excel
<u>Explanation:</u>
For items like currency, one can format numbers in cells in Excel.
To view all possible number formats, click the Dialog Box Launcher attached to Number on the Home tab in the Number group.
In the Format Cells dialog box, in the Category list, click Currency or Accounting.
In the Symbol box, tick the currency symbol.
In the Decimal places box, insert the number of decimal places.
Employed for common financial values and presents the default currency figure with quantities.
Ctrl+Shift+$ is a shortcut to represent currency values.
Answer: printed
Explanation: The definition of kerning is; the spacing between letters or characters in a piece of text to be printed.
Answer:
Build a global action to create Contacts
Explanation:
Based on the information given the mobile solution that an app builder should recommend should be GLOBAL ACTION because global action enables new contact to be created quickly ,Global actions also enables the creation or update of records as well sending email, all without leaving the page the person is working on which is why GLOBAL ACTION is often recommended because it saves time.
Answer:
#here is code in python
#recursive function to find nth Fibonacci term
def nth_fib_term(n):
#if input term is less than 0
if n<0:
print("wronng input")
# First Fibonacci term is 0
elif n==0:
return 0
# Second Fibonacci term is 1
elif n==1:
return 1
else:
#find the nth term of Fibonacci sequence
return nth_fib_term(n-1)+nth_fib_term(n-2)
n=int(input("please enter the term:"))
print(n,"th Fibonacci term is: ")
print(nth_fib_term(n))
Explanation;
Read the term "n" which user wants to know of Fibonacci sequence.If term term "n" is less than 0 then it will print "wrong input". Otherwise it will calculate nth term of Fibonacci sequence recursively.After that function nth_fib_term(n) will return the term. Print that term
Output:
please enter the term:7
7 th Fibonacci term is:
13