Please enable JavaScript.
Coggle requires JavaScript to display documents.
Advanced Programming (Data Types and Structures (Character - Just 1…
Advanced Programming
-
Tuples/Records
-
-
-
-
Once a tuple is created, new elements can't be added
-
External Files
Append to file ("a")
myFile <- open("a.txt" , "a")
-
-
Reading a file ("rt")
myFile <- open("a.txt" , "wt")
-
-
-
Writing to a file ("wt")
-
-
myFile <- open("a.txt" , "wt")
2D Arrays
Unlike a 1D array, 2D allows you to have a number of objects stored in multiple rows
-
-
Randomization
Randomization - A function in a computer program that allows random outcomes from a define list or number sequence