What does the following code display? (Careful!)
x = 0
word = 'hello'
if word == 'Hello':
x = x + 5
else:
x = 17
print(x)
A.0
B.5
C.17
D.22
What does the following code display? (Careful!) x = 0 word = 'hello' if word ==...
(a)How many times does the code snippet given below display "Hello"? int x = 1; while (x != 15) { System.out.println ("Hello"); x++; } (b)What is the output of the following code fragment? int i = 1; int sum = 0; while (i <= 5) { sum = sum + i; i++; } System.out.println("The value of sum is " + sum); Quie 2 What is the output of the following snipped code? public class Test {...
QUESTION 1 What will be displayed as a result of executing the following code? int x = 5, y = 20; x += 32; y /= 4; cout <<"x = " << x <<"y = " << y; A. x = 32, y = 4 B. x = 9, y = 52 C. x = 37, y = 5 D. x = 160, y = 80 8 points QUESTION 2 What will be the displayed when the following code...
What will be displayed by the following code: a = 5 b = 3 c = 2 x = 0 if a > c: x = x + 1 elif b < c: x = x + 2 else: x = x + 4 print(x) A.0 B.1 C.2 D.4 E.5
hello good night, could you help me to see what is wrong with my
code, two errors appear at the bottom in red:
In [47]: file_contents-open("color-blanco.png") def calculate_frequencies (file_contents): # Here is a list of punctuations and uninteresting words you can use to process your text punctuations = ""!()-[]{};:"",-./?@#$%^&*_~ uninteresting_words = ["the","in" ,"a", "to", "if", "is", "it", "of", "and", "or", "an", "as", "i", "me", "my", "we", "o # LEARNER CODE START HERE result={} a-file_contents.split() for word in a: if word...
Question 4 2 pts What is the output of the following code? def count(word): d = {} for char in word: if char in d: d[char] += 1 else: d[char] = 1 return d dictionary = count("Morgan Bears") print(dictionary["a"] + dictionary["r"])
Display your name following the message, "Hello World!". Submit either code or screen shot. %include "io.inc" section .data msg db 'Hello, world! ', 0xa, 0 ;string to be printed section .text global CMAIN CMAIN: ;write your code here xor eax, eax PRINT_STRING msg ;Display "Hello worlD!" NEWLINE ;Add a new line ret ;Return and stop PreviousNext Assembler
Using Python What will the following code display? names = [‘Vernon’, ‘Cooper’, ‘Ronnie’, ‘Clay’] if ‘Jordan’ not in names: print(‘Cannot find Jordan.’) else: print(‘Jordan is a dog’) print(names)
,,1. Which of the following statments are valid C++ statements? A) cout << "Hello World" : B) cout << Hello World; C) cout << "Hello " << "World" ; D) cout << "Hello" << "World" ; 2. What is the difference between the literals 'A' and "A"? ,3. Read the input from user; Check for valid entries If input is invalid: print an error message; else: calculate the result and print to the console; exit; The code snippet above may...
Python Problem Hello i am trying to finish this code it does not save guesses or count wrong guesses. When printing hman it needs to only show _ and letters together. For example if the word is amazing and guess=a it must print a_a_ _ _ _ not a_ _ _ _ and _a_ _ _ separately or with spaces. The guess has a maximum of 8 wrong guesses so for every wrong guess the game must count it if...
PSUEDOCODE ONLY!! What is the output of the following code? CREATE x 1 SWITCH (x) Print output here: Print output here: BREAK CASE 2: PRINTLINE (“hELLO wORLD”) CASE 3: PRINT (“HELLO WORLD”) BREAK CASE 4: PRINTLINE(“Hello”) CASE 5: PRINT(“World”) BREAK DEFAULT: BREAK