《Programming Wizards!》Numbers! Letters! Strings?!
Advertisement
Four organs floated in the glass containers. “And these,” said the teacher. “Are the four types you will find most commonly.” The organs had a luminous stripe going through their center and numerous flaps either turned to the left or right. “This,” he pointed to the organ with four flaps, “is a boolean.”
‘Boolean,’ wrote the students on their tablets using them as notebooks. Some drew a detailed picture while others drew a diagram.
“This bit turns on,” said the teacher. He pressed a button built onto the side of the container and the highest flap turned from left to right. “If the bit is on, it has a value of true. If the bit is off, it has a value of false.”
“If the flap is to the left,” said the student, “it is off, and if it is to the right, it is on?”
“Yes,” responded the teacher. “A single flap is called a bit.”
‘Bit,’ wrote the students in their notebooks.
“More precisely,” continued the teacher. “A bit is off when it is zero, and on when it is one. For this is zero-zero-zero-one, because three flaps are off, while one is on.” He moved to the center of the four containers. “These,” he said and lifted his arms as if he were presenting them a grandeur. “Are data types,” he finished saying.
‘Data types,’ scribbled onto the notebooks.
“A boolean,” said the teacher, “is either true or false.” He moved to the container next to the boolean. “This is an integer.” The organ had thirty-two bits, twenty-eight more than the last. “An integer holds over four billion val—” he paused to correct himself. “An integer,” he repeated, “has over four billion states.”
The students raised their eyebrows in awe. “Four billion?” one said.
“Two to the power of thirty-two. What is it?”
The students punched the numbers into their tablets which were now functioning as calculators. “Four-billion-two-hundred-ninety-four-million-nine-hundred-sixty-seven-thousand-two-hundred-ninety-six.”
“Exactly,” responded the teacher and a student in the back shivered. “Over four billion states.”
“Does a boolean have sixteen states?” questioned a student.
“Ah!” the teacher burst out in amazement. “Where did you get that number?”
“I calculated two to the power of four. Since a boolean has four bits.”
“Excellent. It would seem so, but that is not the case. A boolean only has two states, either true or false.”
“Would it not only need one bit, then?”
“It would, but technology loves four. Actually, technology loves bytes. Bytes are four bits.”
‘Bytes are four bits,’ wrote the students.
“You’ll commonly find bytes rather than a bit on its own.” The teacher paused for a moment to think if he wanted to complicate it further. “Actually,” he decided to. “A byte can be four or eight.”
‘Bytes are four or eight?’
“It depends on the architecture. We’ve noticed the byte of eight is becoming more common, as the byte of four is fading out. Technology is advancing. And, who knows? Maybe bytes of eight will fade out to be replaced with bytes of sixteen.”
‘Depends on the architecture.’
“Thirty-two bit systems used to use four bits. Sixty-four bit systems use eight bits. In fact, it might even depend on the language you are using. Some compilers, which turn the code into machine code, compile the code to use four bits rather than eight.”
Advertisement
‘Depends on the compiler.’
“Remember what I said during the introduction class?”
The students tried to remember.
“Search!” he yelled and startled the students. “To figure out how your specific language works, you need to search for answers on the internet.” He turned back to the containers. “Although, this is usually not an important distinction,” his voice had a deep resonance as it bounced back off the glass into the ears of the students. “It doesn’t matter if a boolean is four bits or eight bits if you simply want to store a value of true or false.” He looked up at the organ that looked identical to the integer. “This is a float,” he said.
‘Float, thirty-two bits or four bytes.’
“An integer is any whole number.”
‘Integer = whole number’
“Well, ranging from about negative two billion to positive two billion. Whereas, a float is any real number.”
‘Float = real number’
“Within a specific range, of course. An integer can be one, two, five-hundred-twelve. Whereas, a float can be one, two point five, five-hundred-twelve point ninety-two.” He stared at the float with admiration. “I would love to explain to you how the float stores its state, but,” he said with a bitter smile. “That will have to be for another time.” He moved onto the next and last container. “Character,” he said.
‘Character,’ they wrote.
The organ had eight bits, or two bytes in the old system, or one byte in the new system. “This is a character.” He turned to the students. “The words we use to communicate use letters, which are characters. A character does not need to be a letter, it can also be punctuation. Two to the power of eight.”
“Two-hundred-fifty-six,” said a student instantly.
The teacher smiled. “Yes. Two-hundred-fifty-six. A character has that many states.” He sighed. “Although, it can be increased or decreased. For example,” he said and closed his eyes. “Let’s imagine eight bits or one byte.”
The students followed.
“A character is one byte.” He raised a finger.
They raised a finger.
“We can map a character onto a single byte.” He closed his hand to make a fist. “If all bits are turned off, we’ll represent it as the ‘A’ character.”
Some students kept their eyes closed and tried to remember, while others opened them and wrote, ‘A = 00000000’ on their notebooks.
“But,” he lifted one finger, “if one bit is turned on, we will represent it as the ‘B’ character.”
‘B = 00000001’
“Then,” he lifted another finger. “If two bits are turned on, we will represent it as the ‘C’ character.”
‘C = 00000011’
He paused and asked himself if he wanted to complicate things even more. “Now,” he said and opened his eyes. “There is a way to count in binary. We are not counting in the proper way, we will save that for another class.” He closed his eyes once again. “So far, we can represent three characters. If we keep using this approach and turn on all the bits, we can represent nine characters in a byte.” He counted on his fingers. “One for each bit, and one when all bits are off.”
‘D = 00000111’’
Advertisement
‘E = 00001111’’
‘F = 00011111’’
…
He relaxed his hands and opened his eyes. “Why can’t we add more bytes to represent more characters?”
The students stopped writing.
“The answer is: we can.” He pointed to the character in the container. “This is an eight bit character, we can represent characters with more bits if we wanted. What we’re doing by representing characters is: we’re encoding them. There is an encoding method called ‘UTF-16’ which uses sixteen-bits or two bytes for each character. It also sometimes uses two sixteen-bits to represent even more characters.” He held his head. “We’re not going to cover this, if you want to learn more about it, simply search ‘UTF-16.’”
‘UTF-16’
“Now,” he rubbed his hands together. “What if we could use two integers to create another integer?”
‘Integer + Integer = Integer?’ As the student wrote that down, she realized, “well, of course! Adding two integers will produce another integer.”
“Precisely,” he said with a smile. “Adding two floats produces another float. What about booleans?”
“I would imagine it would be impossible to add two booleans.”
“Exactly. You cannot add two booleans together. However, there is something else you can do with a boolean that you can’t do with an integer or float.”
The students waited for his answer with their pens ready.
“Toggle. A true becomes false, and a false becomes true.”
“Is that like changing the sign of a number?”
The teacher wondered for a moment. “I never thought of it like that, but not exactly. To change a number’s sign, you need to multiply it by negative one. Whereas, a boolean cannot be multiplied, it can only be toggled. These are operators. A boolean has a toggle operator.”
‘Boolean operators: toggle’
“A float and integer have an addition, subtraction, multiplication, division, and modulus operator.”
‘Integer and float operators: addition, subtraction, multiplication, division, modulus’
“Note how the toggle operator only requires a single value, whereas the operators for integers and float require at least two.” He walked over to the door and opened it for his students. “A boolean has more operators than just the toggle, but we’ll get to that when the time comes.”
They walked into a room glowing with a piercing blue that radiated from the giant screen. Under the screen was a desk with a computer. The room was similar to their classroom except significantly darker and with a roof significantly higher. “Practicality,” said the teacher as he made his way to the computer. “I’ll show you how code is usually written.” He typed and the screen displayed:
int a = 1;
An organ appeared behind the students within a glass container. It had the top most bit turned on. “In statically-typed languages,” said the teacher. “You must declare the data type. In this case, the variable ‘a’ will always be an integer. In dynamically-typed languages, ‘a’ can be changed to any other data type and the type is not declared. The semicolon is like a period, required in some languages. It marks the ending of a statement.”
int a = 1; int c = a + a + 1;
The organ split into an identical copy, which sunk and appeared in another container. The original organ split again, the clone sunk again, and was injected into the other container from the bottom. Then a new organ, which was not split, was injected into the container. The first two organs approached and dissolved into each other, making a new organ with one bit on that was one lower than the original. Then, the new organ dissolved into the remaining organ, which created another organ with the first bit and second bit on. “The original container represents variable ‘a,’” said the teacher. “While the new container represents variable ‘c.’” The teacher left the computer and approached the students. “Remember the addition operator?”
The students nodded.
“What if we could add characters together to create words?” He paused. “Well, we can. Let me show you how characters are declared first.” He went back to the computer. He cleared the screen and the containers sunk into the floor, then typed:
char character = ‘A’;
An organ with two bits on that were separated by five bits appeared. A binary state of: 1000001. “We can’t simply add characters together, that would throw an error. But,” he said, cleared the screen and typed:
string characters = “A” + “B”;
A single container containing two organs emerged. “We can add strings together. Strings are a data type. However, they are special, since they are made up of another data type. A string is a sequence of characters. Note how I used double quotes to declare a string and single quotes to declare a character. What I wrote can also be written as:”
string characters = “AB”;
The container stood in place. “It’s the same result,” he said. “In fact, we can also do this:”
string characters = “AB” + 2;
Another organ was injected into the container and floated beside the other two, with a binary state of: 110010. “Here, the integer two is being converted into a string. And, the binary state of a string representing the number two is different from the binary state of an integer representing the number two.”
string characters = “AB” + 2 + 3;
An organ was injected, and floated beside the organ representing two. “Now, watch.”
string characters = “AB” + (2 + 3);
The organ representing two and three were ejected and replaced with another two organs that were identical in representation but of type integer. They dissolved together making a new organ with the binary state of: 101. Which was then ejected and replaced with another organ with the binary state of: 110101. “You’re seeing the conversion from string-to-integer and integer-to-string when you see the ejections. Before I added the brackets, I was adding strings together. When I added the brackets, I was adding two integers together, so it got rid of the string representations and injected the integer representations. Then, it added them together, giving us the integer five. Finally, it was ejected and we were returned five in its string representation which was concatenated onto the ‘AB’ string.”
string characters = “AB5”;
The container stood still as the end result of the new code was the same. “The addition of strings is called concatenation.”
Advertisement
- In Serial7 Chapters
AROWNE'S REBIRTH
There was this one guy that lived in modern earth, he died in his 20's, and somehow due to mysterious reasons he was granted the chance to be reborn with his memories intact by some servant of the creator of all worlds with one wish granted,as for the world in itself,he was given the choice of suggesting a theme, and it will be selected at randomi will create a discord in the future for the fansand for the record when the discord is made the fans can take part in making the story
8 137 - In Serial44 Chapters
Borderlines
Eighteen year old Fawn Simmons is living in post apocalyptic America. She is the overseer of Section 2, a portion of the US that she is governing over under orders of the King Marcus and Queen Lily. America is divided in half, the East and the West. When the King and Queen are tragically killed in a fire, Fawn is thrown into a competition with the other 15 overseers. A two week period is given to the overseers. They must fall in love with someone during this time and prepare themselves for the throne. With danger of Western rebellion on the rise, everyone is desperate for a new king and queen. Does Fawn have the peoples vote for the next queen or can she even survive the next sunrise? She has two weeks to fall in love. Two weeks to change her life forever.
8 185 - In Serial45 Chapters
Hope
There were 2 options: Fight the same war for countless more aeons. Shatter the Betrayer's undead legions time and time again until all was ground to dust. Because the endless legions truly never end. A hair's breath of ground in a century is enough if the war takes all of eternity. Or to choose Hope. To cast away his memories, his power, his very life. To wager everything on a chance to prevent their eventual end or to perish trying. Because if he were to return it would be with the power necessary to finally slay what remains of the Betrayer. Of the last Aspect. Only then would all things be right. And so, he chose the latter. Expect:Weak to strong quick-ish.Powerful MC reincarnates, gradually starts regaining memories.MC that is an actual character not a plot device.My original unique magic system discovered along with the MC.My original setting with mythos that have both been living rent free in my head for actual years.Opening arc will be less fast than the following story. Good writing (I think) and grammar. Upload schedulle: 2 chapters a week of 3-4k words each. I want to upscale to 3 in the future. Meant to be read in RR dark mode. For those coming here from my other stories, this is indeed a reimagining of my older story, CotM. I say reimagining because I have changed so much it cannot be called just a rewrite. Among the major changes, MC is fundamentally different in personality and background, I have actually planned the story out and changed it almost completely and I have adjusted my mythos so it no longer has as many holes as swiss cheese.
8 182 - In Serial19 Chapters
*taekook*
Taehyung sells his body for moneyJungkook finds the place Taehyung works at and finds interest in itHe trys with other workers but only Taehyung can fufill his needsWhat happens once they fall in love?
8 163 - In Serial36 Chapters
Breakthrough
Cyan was your everyday school teen boy however all of that changed one day when a text message was sent around the world [Message]: “You have been invited to the [Training Tower] as part of a defense program which purpose is the creation, training, and support of Players, do you wish to [accept] or [refuse], please reply this message before the training period ends”.
8 205 - In Serial35 Chapters
Starsky Academy
Every year, 20 children from all around the world are chosen for the opportunity of a lifetime.In the land of Yer, dragons are a rare sighting, but not an impossible one. Starsky Academy for the Education of Dragon Riders, (SAEDR, or just Starsky Academy for short) is a one of its kind building that is said to have descended for the clouds themselves. The purpose of Starsky Academy is to connect a dragon to its rider, before the pairing is called forth to complete their summoning in life.Lana Pennington is the last person expected to receive the formal letter of recognition. However, on the dawn of her 16th birthday, she finds herself traveling around the world to receive what is expected to become her best friend in a journey that neither will forget for as long as they live. A dragon.Highest/Best Rank: #248 in Fantasy #22 in Dragon #5 in Academy #178 in School(Warning: This is an OLD story. Read at your own risk.)
8 102

