GradePack

    • Home
    • Blog
Skip to content
bg
bg
bg
bg

GradePack

What is the value of x after the following code is executed?…

What is the value of x after the following code is executed? If an error occurs when the statements are executed or the code never finishes executing, write “Error.” nums1 = [10, 20, 30, 40, 50] nums2 = [50, 40, 30, 20, 10] x = nums1 == nums2

Read Details

What is the value of nums after the following code is execut…

What is the value of nums after the following code is executed? If an error occurs when the statements are executed or the code never finishes executing, write “Error.” nums = [[1, 2, 3],         [4, 5, 6],         [7, 8, 9]] for r in range(len(nums)):     total = 0     for c in range(len(nums[r])):         if r % 2 == 0:             total += nums[r][c]     print(total)

Read Details

Extra Credit: What advice would you give to future CS 303E s…

Extra Credit: What advice would you give to future CS 303E students? (1-2 sentences)

Read Details

What is the value of nums after the following code is execut…

What is the value of nums after the following code is executed? If an error occurs when the statements are executed or the code never finishes executing, write “Error.” nums = [[1, 2, 3],         [4, 5, 6],         [7, 8, 9]] for r in range(len(nums)):     total = 0     for c in range(len(nums[r])):         if c % 2 == 0:             total += nums[r][c]     print(total)

Read Details

Escribir:  Your friend, Lola, wants to invite you to go on a…

Escribir:  Your friend, Lola, wants to invite you to go on a trip to Puerto Rico this summer. She is asking you about your plans this summer. Please answer her questions in complete sentences in Spanish. Make sure to write at least 80 words and copy and paste the accents as necessary. Highlight the verbs and write the word count at the end. Since I need to assess the verbs given in each question, use the same verb and the same tense. Make sure to conjugate each verb appropriately. Make sure your writing includes the following: Greet Lola   ¿Cómo estás?  ¿Dónde estás ahora?   ¿Cuántas clases tomas este semestre?  ¿A qué hora terminas las clases?  ¿Cuántos días de vacaciones tienes? Yo voy a Puerto Rico, ¿Quieres ir a Puerto Rico este verano? ¿Tienes un pasaporte y documentación para viajar? ¿Dónde compras los boletos de avión usualmente? ¿Prefieres ir a las montañas, playas o ciudades grandes? ¿Qué lugares quieres visitar en Puerto Rico? Ask Lola two questions and say good-bye. (Create your own 2 questions. Make sure they are not the same questions included in this prompt) For accents marks. To copy paste accent marks and question/exclamations marks, use your Ctrl C to copy and Ctrl V to paste. á      é       í       ó      ú     É     ñ      ¿      ¡    

Read Details

What is the output of the following code? If the code never…

What is the output of the following code? If the code never finishes running or results in an error, write “Error.”   class Counter:    def __init__(self, start):        self.value = start    def add(self, amount):        self.value += amount    def __str__(self):        return f”Count: {self.value}”c = Counter(2)c.add(5)print(c)

Read Details

What is the value of prices after the following code is exec…

What is the value of prices after the following code is executed? If an error occurs when the statements are executed or the code never finishes executing, write “Error.” prices = {“tea”: 2.5, “coffee”: 4.0} prices[5.0] = “lemonade”

Read Details

What is the value of x after the following code is executed?…

What is the value of x after the following code is executed? If an error occurs when the statements are executed or the code never finishes executing, write “Error.” nums = [[10, 20, 30],         [40, 50, 60],         [70, 80, 90]] x = nums[2][1]

Read Details

Extra Credit: What was your favorite assignment and why? (1-…

Extra Credit: What was your favorite assignment and why? (1-2 sentences)

Read Details

What is the value of x after the following code is executed?…

What is the value of x after the following code is executed? If an error occurs when the statements are executed or the code never finishes executing, write “Error.” nums1 = {1, 2, 3, 4, 5} nums2 = {3, 4, 5, 6, 7} x = nums1.intersection(nums2)

Read Details

Posts pagination

Newer posts 1 … 58 59 60 61 62 … 92,040 Older posts

GradePack

  • Privacy Policy
  • Terms of Service
Top