Several different alkane fruits.
watermelon cantaloupe mango pears grapes passion fruit dried fruits like dates and apricots figs and raisins are also considered heavy alkaline foods apples, fresh apricots bananas berries and avocados.... list goes on.
Answer:
Change that occurred to the system reliability = 0.016
Explanation:
Overall system reliability consisting of 4 components J/K/L/M is
= Reliability of J x Reliability of K x Reliability of L x Reliability of M
= 0.99 X 0.98 X 0.992 X 0.998
= 0.960
Let the subsystem consisting f K along with its back up is Called K1
Thus ,
Reliability of K1 = 1- ( 1 – Reliability of K) x ( 1 – Reliability of Backup )
= 1 – ( 1 – 0.98) x ( 1 – 0.80)
= 1 – 0.02 x 0.2
= 1 – 0.004
= 0.996
Thus revised System reliability
= Reliability of J x Reliability of K1 x Reliability of L x Reliability M
= 0.99 X 0.996 X 0.992 X 0.998
= 0.976
Thus, Revised system reliability = 0.976
Thus change in system reliability
= Revised System reliability – Initial system reliability
= 0.976 – 0.960
= 0.016
Most computers have three types of ports: serial, parallel, and USB. A serial port is a type of interface that connects a device to the system unit by transmitting data only one bit at a time. Serial ports usually connect devices that do not require fast data transmission rates, such as a mouse, keyboard, or modem.
Answer:
Here the code is given as follows,
Explanation:
def isPalindrome(x):
stack = []
#for strings with even length
if len(x)%2==0:
for i in range(0,len(x)):
if i<int(len(x)/2):
stack.append(x[i])
elif stack.pop()!=x[i]:
return False
if len(stack)>0:
return false
return True
#for strings with odd length
else:
for i in range(0,len(x)):
if i==int(len(x)/2):
continue
elif i<int(len(x)/2):
stack.append(x[i])
elif stack.pop()!=x[i]:
return False
if len(stack)>0:
return false
return True
def main():
while True:
string = input("Enter a string or Return to quit: ")
if string == "":
break
elif isPalindrome(string):
print("It's a palindrome")
else:
print("It's not a palindrome")
if __name__ == '__main__':
main()