Answer:
# Program is written in python
# 22.1 Using the count method, find the number of occurrences of the character 's' in the string 'mississippi'.
# initializing string
Stringtocheck = "mississippi"
# using count() to get count of s
counter = Stringtocheck.count('s')
# printing result
print ("Count of s is : " + str(counter))
# 2.2 In the string 'mississippi', replace all occurrences of the substring 'iss' with 'ox
# Here, we'll make use of replace() method
# Prints the string by replacing iss by ox
print(Stringtocheck.replace("iss", "ox"))
#2.3 Find the index of the first occurrence of 'p' in 'mississippi'
# declare substring
substring = 'p'
# Find index
index = Stringtocheck.find(substring)
# Print index
print(index)
# End of program
Answer:
16
Explanation:
since each tick is 1/16 of the inch, there will be 16 ticks
Answer:
The theoretical density for Niobium is
.
Explanation:
Formula used :

where,
= density of the unit cell
Z = number of atom in unit cell
M = atomic mass
= Avogadro's number
a = edge length of unit cell
We have :
Z = 2 (BCC)
M = 92.91 g/mol ( Niobium)
Atomic radius for niobium = r = 0.143 nm
Edge length of the unit cell = a
r = 0.866 a (BCC unit cell)


On substituting all the given values , we will get the value of 'a'.


The theoretical density for Niobium is
.