Please enable JavaScript.
Coggle requires JavaScript to display documents.
Data types, Pseudocode - Coggle Diagram
Data types
String
This is used for any combination of letters, numbers, and symbols. In order to use this a programmer would.
variable_Name1 = "This would be the string".
Boolean
This would be used to determine whether a variable would be true or false. This has a large amount of applicability in coding so try to keep it in mind.
-
Integer
This is used to explicitly show numbers. That is all. however minimalistic this may seem this is one of the most used data types for me so its value is quite high. A programmer would use this like. cloaker_In_The_Bank = 7. Because this only a number input the programming language (python i'm unsure about others) would automatically make this a integer.
Double
This is a complicated data type to understand if you are hearing about it first. Effectively the double data type is used for the highest precision in terms of numbers.This needs more research from me.
-
Pseudocode
Input
This is what the client would input into the code. Pseudocode starts by understanding the problem and developing a solution. This is the begging of this as it allows for the programmer to understand what the code will take in
Process
This is the process that the code would make to process the data and give the user the information that they want. When doing this for myself I write about the process last as I would be able to see the input and output clearly.
Output
This is what the client would get out of the code. This is the middle of this as it allows for the programmer to understand what the code will put out
Purpose
The purpose of this is to allow for the programmer to understand the code that will be used and understand logic errors before they appear in the main code. This also allows for a programmer to check to see if the code they are about to make will work or not.
-