question archive QUESTION 1) Write a statement to find the number of characters in string courseName, where courseName = "Introduction Computer Science" QUESTION 2) What will be in the variable character after the following statements are executed? courseName = "Introduction to Computer Science" character = courseName[ len(courseName) - 7] QUESTION 3 What will be in the variable str after the following statements are executed? courseName = "Introduction to Computer Science" str= courseName[ :5] QUESTION 4 What will be in the variable str after the following statements are executed? courseName = "Introduction to Computer Science" str= courseName[ : ] QUESTION 5 What will be in the variable str after the following statements are executed? courseName = "Introduction to Computer Science" str= courseName[16: 100] QUESTION 6 What is the ordinal value of 'X'? QUESTION 7 Evaluate the following comparison: "cat" < "catwalk" QUESTION 8 Evaluate the following comparison: "moon" < "Moon" QUESTION 9 The following statements will change pet from "dig" to "dog": pet = "dig" pet[1] = "o" a
Subject:Computer SciencePrice: Bought3
QUESTION 1) Write a statement to find the number of characters in string courseName, where
courseName = "Introduction Computer Science"
QUESTION 2) What will be in the variable character after the following statements are executed?
QUESTION 3
QUESTION 4
QUESTION 5
QUESTION 6
QUESTION 7
QUESTION 8
QUESTION 9
a. True
b. False
QUESTION 10