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:
Between 35°– 45°
Explanation:
In the vertical position, Point the flame in the direction of travel. Keep the flame tip at the correct height above the base metal. An angle of 35°–45° should be maintained between the torch tip and the base metal. This angle may be varied up or down to heat or cool the weld pool if it is too narrow or too wide
Answer:
When a horse pull a cart the action is on?
A horse is harnessed to a cart. If the horse tries to pull the cart, the horse must exert a force on the cart. By Newton's third law the cart must then exert an equal and opposite force on the horse. Newton's second law tells us that acceleration is equal to the net force divided by the mass of the system.
Explanation:
The type of boot authentication that is more secure is Unified Extensible Firmware Interface
Unified Extensible Firmware Interface help to provide a computer booting that is more secured.
Unified Extensible Firmware Interface is a computer software program that work hand in hand with an operating system, it main function is to stop a computer system from boot with an operating system that is not secured.
For a computer system to boot successfully it means that the Operating system support the Unified Extensible Firmware Interface because it secured.
Inconclusion The type of boot authentication that is more secure is Unified Extensible Firmware Interface
Learn more here :
brainly.com/question/24750986