If you have any doubts please comment below. Please give upvote if you like this.
Python Code :
#Method to change list
def change_list( L ):
# Loop for itterate list L
for sub_list in L:
# Make the first element in sublist to 0
sub_list[0] = 0
# Main method
# Instalize list of lists
L = [[1,2,3,4,5],['a','b','c'],[4,3,2,1],['d','e','f']]
# Prompt for user
print("Before change a list")
#Display the list of lists
print(L)
# Call method change_list with list of lists as arguments
change_list(L)
# prompt for user
print("After change a list")
#Display the list of lists
print(L)

Part2 Q1 Mini-Exercise 2 PART 1 For each snippet of code below, draw a rough memory...
QUESTION 9 What will be the output of following code snippet? int a[3] = {1, 2, 3}; int *p = a; int **r = &p; printf("%p %p", *r, a); A. Different memory addresses printed B. 1 2 C. Same memory address printed twice D. 1 1 2 points QUESTION 10 What will be the output of following code snippet? int arr[4] = {1, 2, 3, 4}; int *p; p = arr + 3; *p = 5; printf("%d\n", arr[3]); A....
1.Which of the following is the correct code snippet for throwing a pair of 12-sided dice to get a sum of the numbers on two dice between 2 and 24 with different probabilities 2 * (rand() % 11 + 2) rand() % 23 + 2 (rand() % 12) + (rand() % 12) (rand() % 12 + 1) + (rand() % 12 + 1) 2.What would be the correct replacement for the following if () statement ? if (0 > temperature...
1). What is the complexity of the following code snippet? { for (int count2 = 0; count2<n; count2++) { /*some sequence of O(1) step*/ } } select one: a. O(N^2) b. O(Log N) c. O(1) d. O(N!) 2). What is the complexity of the following code snippet? for (int count = 0; count<n; count++) { printsum(count) } select one: a. We need to know the complexity of the printsum() function. b. O(Log N) c. O(1) d. O(N) e. O(N^2) 3)....
QUESTION 1 What is the output of the following code snippet? int main() { bool attendance = false; string str = "Unknown"; attendance = !(attendance); if (!attendance) { str = "False"; } if (attendance) { attendance = false; } if (attendance) { str = "True"; } else { str = "Maybe"; } cout << str << endl; return 0; } False True Unknown Maybe QUESTION 2 What is the output of the following code snippet? #include <iostream> #include <string> using...
The code snippet below is an example of pass by reference. We also provide a sample method setZeroAt, which sets 0 at a position i in the array, to illustrate pass by reference. public class Sample { public static void setZeroAt(int [] arr, int i){ arr[i] = 0; } public static void main(String[] args) { Scanner input = new Scanner(System.in); int sample[] = {1, 2, 3}; setZeroAt(sample, 1); //Now sample looks like {1, 0, 3} } } Write a Java...
Please, explain clearly each line of code with your answers. Question 1 Consider the following code snippet: int ctr = 0; int myarray[3]; for (int i = 0; i < 3; i++) { myarray[i] = ctr; ctr = ctr + i; } cout << myarray[2]; What is the output of the code snippet? Question 2 Consider the following code snippet: int cnt = 0; int numarray[2][3]; for (int i = 0; i < 3; i++) { for (int j =...
For Question 14 - 15, please refer to the following code snippet. 1 class Fitness 2 { 3 int Jumping; int Running; 12 }; 8 class Round ISAShape: public class Fitness 9 { 10 11 int Sleeping; int Eating; 13 }; 14. The following statements are TRUE based on the code snippet above, EXCEPT (A) class RoundISAShape is inheriting from class Fitness (B) class RoundISAShape is the base class for class Fitness (C) class Round ISAShape is considered as the...
The code snippet below is part of the restaurant menu program you previously used in the lab. Add a choice for a drink. Add the necessary code to allow the program to calculate the total price of order for the user. Assume the following price list: Hamburger $5 Hotdog $4 Fries $3 Drink $2 The program should allow the user to keep entering order until choosing to exit. At the end the program prints an order summary like this: You...
NOTE: WRITE MATLAB CODE then the results for each QUESTIONS: Q1: For the system of the equations [2x; + 3xy + x3 = 9 x2 + 2x2 + 3x3 = 0 3x; +x2+2x3 = 8) compute the unknowns Xı, X2, and X3 using the inverse matris method. Q2: Simplify the complex number z and express it both in rectangular and polar form. (3+ j4)(5 + j2)(2 260°) (3+j6)(1+12) NOTE: WRITE MATLAB CODE then the results for each QUESTIONS: Q3: Suppose...
Java question Q1) Use the following code snippet which generates a random sized array with random contents to complete the following problems: public int [] createRandomArray() { int size = (int) (Math.random() * 10) + 1; int[] array = new int [size]; for (int i = 0; i < array.length; i++) { array[i] = (int) (Math.random() * 10 ) + 1; } return array; } Assignment...