RANK.AVG function
This function in Excel helps return the statistical rank of a specific value within a list of numbers. The statistical rank is calculated by arranging the number usually, in a descending way and then assigning a position to each value in a list.
Answer:enqueue (45);45 enqueue (12);12 45 enqueue (28);28 12 45 dequeue();28 12 dequeue();28 enqueue (69);69 28 enqueue (27);27 69 28 enqueue (99);99 27 69 28 dequeue();99 27 69 enqueue (24);24 99 27 69 enqueue (85);85 24 99 27 69 enqueue (16);16 85 24 99 27 69 dequeue();16 85 24 99 27 Review Book:Ch. 3 / 7) B) Implementation 2 only Ch. 6 / 9) D) Implementiation 1 and 2 only Ch. 8 / 2) C)Constructing Bork object Constructing Bork object Constructing Mork object
Explanation:
Answer:
future value = 232369.1361
return % = 384.10 %
Explanation:
given data
principal = $100 per month
time = 40 year = 480 months
rate = 6.25 % yearly = 0.0625 yearly = 0.005208 monthly
to find out
total amount of capital at the end of your investment and percentage is your total return
solution
so here future value formula is
future value = P
..........1
here r is rate and t is time and P is principal
so put all value
future value = 100
future value = 232369.1361
so
Total capital at the end of investment-Total principle invested over the years
232369.1361 - 100 ( 12 × 40 )
184369.1361
so
Return % =
× 100
return % = 384.10 %
Answer:
They are both ways to identify assets (e.g., persons, animals, objects).
Explanation:
A barcode is a bit of information (usually a number) printed as a line or block pattern on a surface (e.g., a sticker).
An RFID is a bit of computer memory with an antenna.
Both can be read with the appropriate scanner device.
Answer:
def isAnagram(s1, s2):
list1=s1
list2=s2
sortedlist1 = sorted(list1)
sortedlist2 = sorted(list2)
if sortedlist1 == sortedlist2:
print(list1+ " and "+list2+ " are anagram")
else:
print(list1+ " and "+list2+ " are not anagram")
Explanation:
Here is a call to the function isAnagram():
list1 =input("Enter String1 ")
list1 =input("Enter String2 ")
isAnagram(list1,list2)
Attached is the run and output for this program