It would be version 14.04! I run Ubuntu Linux on my pc with dual boot with Kali Linux! I hope this helped!
Hello! The answer to your question would be as followed:
C. The columns will be listed in the results in the same order they are listed in the SELECT clause of the SELECT statement.
Answer:
name = input("Enter name: ")
droids = int(input("How many droids you want to meet? "))
wookies = int(input("How many Wookies you want to meet? "))
print(name + " wants to meet " + str(droids) + " droids, and " + str(wookies) + " Wookies")
Explanation:
*The code is in Python.
Ask the user to enter the name, number of the droids and number of the Wookies
Print the name, number of the droids, and number of the Wookies
Note that while getting the input for the droids and wookies, you need to typecast the input the int (Since the values are int). Also, to print these variables, you need to typecast them as string in that format.
Dual Credit: Dual credit allows you to take a college course while in High school to earn that particular credit! Hope this helps.