The variable "s"
contains a string value. Which of the following will print each
character in this string exactly one time?
# Option A
for ch in s:
print(ch)
# Option B
countB = 0
while countB < len(s):
print(s[countB])
countB += 1
# Option C
countC = len(s) - 1
while countC >= 0:
print(s[countC])
countC -= 1
| Option A |
| Option B |
| Option C |
| All of the above |
| None of the above |
The variable "s" contains a string value. Which of the following will print each character in...
1) Which of the following is NOT true about a Python
variable?
a) A Python variable must have a value
b) A Python variable can be deleted
c) The lifetime of a Python variable is the whole duration of a
program execution.
d) A Python variable can have the value
None.
2) Given the code segment:
What is the result of executing the code segment?
a) Syntax error
b) Runtime error
c) No error
d) Logic error
3) What...
Loop Through String Loop through each character Print index number and Character on a line INPUT 001 OUTPUT: Index 0: 0 Index 1: 0 Index 2: 1 #include <iostream> #include <string> using namespace std; The code I have so far: int main(){ string h; string i; cin >> i; for (i=0; i<h; i++){ if (h%i==0){ cout << i << endl; } } return 0; } Please help. Thank you.
Question 1 Select all the choices producing a string which contains multiple lines? Examples of each of the choices are presented below. #---------Option A--------------- s = ("Line 1","Line 2") #---------Option B--------------- s = """Line 1 Line 2""" #---------Option C--------------- s = "Line 1\nLine 2" #---------Option D--------------- s = "Line 1" + "Line 2" #Option D Make your statements look the same as the examples. A. Using commas to separate lines B. Using triple-quotation marks C. Adding the newline character between...
1. Given the variable 's' containing the string value below, determine the value for the variable result after each of the following statements is executed or specify error if a Python exception would be thrown: s = "One plus Two plus Three = 6" a.) result = s.replace('plus', '+') b.) result = s[26].isdigit() c.) result = s[29] + s[0] d.) result = s[4:8] + s[13:17] e.) result = s.upper() f.) result = s.find('6') g.) result = s[0:4].isalnum() h.) result =...
Debug following methods(longestRun(finds how many times a character got repeated), findLastP(finds last p in a string), findFirstP(finds first p in a string)) in java language. public class simpleLoops { /** * @param args */ public static void main(String[] args) { System.out.println(longestRun("aabbbccd")); System.out.println("Expected 3"); System.out.println(longestRun("aaa")); System.out.println("Expected 3"); System.out.println(longestRun("aabbbb")); System.out.println("Expected 4"); int count = countP("Mississippi"); System.out.println(count); int result = findLastP("Mississippi"); System.out.println(result); result = findFirstP("stop"); System.out.println(result); result = findFirstP("xxxyyyzzz"); System.out.println(result); } /** *...
For a string variable named str that contains the value "Spring", what would be the value of the char variable named ch after the following code statement executes: char ch = str[2];
Here is a serial program in C and parallel program in OpenMP that takes in a string as input and counts the number of occurrences of a character you choose. Why is the runtime for the output for the OpenMP parallel program much longer? Serial Program #include <stdio.h> #include <string.h> #include <time.h> int main(){ char str[1000], ch; int i, frequency = 0; clock_t t; struct timespec ts, ts2; printf("Enter a string: "); gets(str); int len = strlen(str); printf("Enter a character...
Please can I have a UML Class diagram for the Python program below: def main(): print() print("Welcome to Caesar Encryption and Viginere Decryption Cipher") print() print("Please select an option") option = "c" while option == "c": hello = input('Choose Caesar Cipher encrypt 1:\n' 'Choose Viginere Cipher Decrypt 2:\n') message = input('Enter a message: ') password = input('Enter a password: ') if hello == '1': viginere_cipher(message, password) elif hello == '2': viginere_cipher_decrypt(message, password) print() print("Choose an option") option = input('Enter c...
Define a function called repeat_middle which receives as parameter one string (with at least one character), and it should return a new string which will have the middle character/s in the string repeated as many times as the length of the input (original) string. Notice that if the original string has an odd number of characters there is only one middle character. If, on the other hand, if the original string has an even number of characters then there will...
Python
The Python "<" and ">" comparison operators can be used to compare which string variable has a greater value based on comparing the ASCII codes of the characters in each string, one by one. To take some examples: "tets" > "test" returns True because the third letter of the first string, "t", has a greater value than the third letter of the second string, "s". "testa" > "test" returns True because—while the first four letters in both words are...