For a given problem, there is always only one way to write a program
option1 - True
option 2 - False
False
________is a set of instructions that can be executed on a computer to perform a specific task
Code
Which among the below are examples of programming in real life?
1) Robots 2) Computer games
3) self-driven cars 4) all of the above
all of the above
Writing steps involved to solve a problem in a human-understandable language.
Pseudo Code
Pin authentication for ATM card transaction is an example of _____________
Programming
Define step by step plan to solve a problem statement
Algorithm
Solution to a problem presented as a diagram
Flowchart
What shape represents the start and end of a flowchart?
Oval
Variables must be defined with a name and a data type before they can be used
1) true
2) false
true
How many times should a data type be mentioned for a variable?
Only once; When declaring the variable
Y++ has the same meaning as_________
Y=Y+1
_______is a subtype of integer data type.
Boolean datatype
What is the alternative of y=y+9?
y+=9
Block based coding platform
Arcade
______datatype is another type of floating type number which is used to store even bigger values.
double
_______data type stores value in a sequence of characters.
String
In some programming languages like _______, there is no command to declare variables
Python
_________calculates the remainder when two integer variables are divided.
Remainder operator (%)
what language is this? 100010000101011
BINARY CODE
_________is a set of rules that we need to follow when we write a computer program.
Syntax