CS Assignment #2 Complete the questions or fix the code! 1. What bash command would give the following output? -rwxrwx--- 1 User UsersGrp 38423 Sep 6 22:13 Boulier1.JPG -rwxrwx--- 1 User UsersGrp 993187 Sep 7 12:10 CS_Lesson1.pdf -rwxrwx--- 1 User UsersGrp 660285 Sep 7 12:09 CS_Lesson1.pptx -> ls -l 2. How many bits are in a a)kilobyte b)terabyte? Show your thought process/workings! -> 1 byte = 8 bits. Kilo = 1000 -> 8000. Tera -> 8e12 3. Run the following code in jupyter or ipython. Find the mistakes and replace them. The goal of the code is to define the variable "i" as 0 and print "i=0" to screen. i = 0; print {i =}, %i; -> i=0 print("i = ",i) 4. We made a "Hello World!" code in bash in class. What might a "Goodbye World!" code that outputs to a file called "SeeYa.txt" look like? -> #!/bin/bash echo Goodbye World! > SeeYa.txt 5.Identify the following input into variable types: a) 4 -> int b) "5.6" ->string c) 10e-10 ->float d) True ->boolean e) "False" ->string f) 3. ->float