___ is a step by step sequence of events or instructions, used to carry out a task or to solve a problem.
Algorithm
Original values : 4, 5, 1, 6
What is the ascending order of this value?
1,4,5,6
Which arithmetic operator is used to Add ?
+
Tell us the order of operations when working out a calculation that has a multiple parts.
BIDMAS
Python can be run on a wide variety of devices.
True
Fill in the missing function.
numbers = [3,2,9,0]
numbers.____()
print(numbers)
sort
Write a program which multiply 3 and 5 and then display the result.
number = 3*5
print(number)What does the acronym BISMAS stand for ?
Brackets
Indices
Division
Multiplication
Addition
Subtraction
____ language includes key words for specific tasks and can process data in a variety of formats. Popular examples include Python, Java and C++.
Text-based
Which operator is used to Multiply?
*
Carry out the calculation below using BIDMAS rules.
(2*3)/2-1(4*2)
-5
What is the output of this code?
print("Nice to meet you")Nice to meet you
Write down the missing line for this descending order program.
letters = ["c","a","b","y","o"]
________
print(letters)letters.sort(reverse="True")
Which operator is used to divide?
/
True or False
Python doesn't follow the BIDMAS rule.
False
Python is a popular ____ programming language.
text-based
What function do we use to order Alphabetical sort in Python ?
sort()
Which operator is used to calculate the remainder?
%
Indices is the another term for what?
the power of