Data Structures (AQA GCSE Computer Science): Flashcards
📚Flashcards
Practise the cards
13 cards from this deck
ShowHide
Practise the cards
13 cards from this deck
Definition of input in programming
Definition of input in programming
Allows a program to receive data from a user
Definition of output in programming
Definition of output in programming
Displays information back to the user
AQA pseudo-code keyword for getting user input
AQA pseudo-code keyword for getting user input
USERINPUT
AQA pseudo-code keyword for displaying data
AQA pseudo-code keyword for displaying data
OUTPUT
Python function to get input from user
Python function to get input from user
input()
Python function to display output
Python function to display output
print()
Python function to convert text input to decimal number
Python function to convert text input to decimal number
float()
VB.Net method to get input from user
VB.Net method to get input from user
Console.ReadLine()
VB.Net method to display output
VB.Net method to display output
Console.WriteLine()
C# method to get input from user
C# method to get input from user
Console.ReadLine()
C# method to display output
C# method to display output
Console.WriteLine()
C# method to convert text input to decimal number
C# method to convert text input to decimal number
Convert.ToSingle()
Key difference: constants vs variables
Key difference: constants vs variables
Constants don't change, variables do change
