In this quiz you will have 10 minutes for taking the quiz Time is up! Python Quiz 1 / 5 str1 = "my isname isisis jameis isis bond"; sub = "is"; print(str1.count(sub, 4)) 5 6 7 2 / 5 Choose the correct function to get the ASCII code of a character char('char') ord('char') ascii('char') 3 / 5 str = "my name is James bond"; print (str.capitalize()) My Name Is James Bond TypeError: unsupported operand type(s) for * or pow(): 'str' and 'int' My name is james bond 4 / 5 Strings are immutable in Python, which means a string cannot be modified. True False 5 / 5 strOne = str("pynative") strTwo = "pynative" print(strOne == strTwo) print(strOne is strTwo) False False True True True False False True Your score isThe average score is 73% 0% Restart quiz