《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
Dungeon Darwinism: Deepest Dungeon
Dungeons are a lot like sea turtles. They’re born in clutches of dozens, if not hundreds. A hundred may be born at one time, buried in still burning cities, or in forests where the canopy hides the sky, or in ocean trenches at the bottom of the sea. But only one in a clutch ever makes it to the surface. Everyone knows about dungeons— monstrous factories that emerge out of the earth, full of riches and Arcana and power— and monsters. But most of humanity only know about the dungeons that make it. Mark doesn’t know anything about dungeons. He isn’t from this world, and only as a victim of circumstance has he become an unwilling half of a dungeoncore. The other half is a Dark Lord. (Rewrite)
8 419The Legendary Roll
In previous life, I was just a mediocre guy, accomplished nothing. After reincarnation, I seize the opportunity of being a legend of the times. In this life, I am the protagonist in Tianxuan World, a great master of martial arts and a founder of making elixirs. What? You want to compete with me in weapon and equipment refining? Then, you should know the Craft God is my disciple…
8 331Book 1: The Forgotten Fighter
Follow a collection of chance encounters turned potential allies as numerous forces work to tear through the fabric of reality. Viamarr, a continent in the world of Rinterria, holds host to our tale and to the city of High Morr, which sits snugly on its frozen island in the middle of a great frostbitten lagoon. When High Morr is suddenly crippled by a series of mysterious sinkholes, our heroes do what they do best. Try to run. Keep up with them to find out where they end up and what exactly is chasing them in return. I hope to publish a new chapter 3 times a week. This is reduced from my previous number, hopefully temporarily, due to an increased workload outside of Royal Road. I welcome any and all feedback to improve my writing, so thank you for taking the time to check out my page.
8 219The Lost One
A stranger in a dark cloak creeped into the room of a small Elven child on one fateful day. Wyrran was playing with his sister one second, but the next he was gone. Stolen from the middle of their estate, and never to be seen again in Elven country. Years go by, hundreds of years, and Wyrran has grown into a man. His name has been changed to William, though his Master was put under the instruction to make sure he lost his memory from before the ago of 80, and from what Wyrran knew he had always been William. After he has completed his training and he finished many various tasks William is sent on a job for the King of Trace. It was a confidential assignment, which was new to William in the first place, but never would he imagine that this one job just may be his last. ********************************************* Hey everyone! Author here (: This is my first time posting any of my works online, and I hope that you enjoy being welcomed into my world, as much as I enjoy creating it for you! I welcome any and all criticism, so long as it is actually something that can benefit my writing (not just random hating and nothing substantial). This story is edited by Nesryn and ArtemisArrow, my dear friends! The cover of this book is not my property, and if you are the actual owner of the image and would like me to take it down please PM me (: I am posting this to see if it generates any interest. If it does, then I will be planning on making more regular posts for chapters. I am intending this to be one book of a series, titled The Lost Royal. I intend to post, at this point, one chapter a week unless I get onto a roll! If this starts to accrue enough interest where I can start focusing solely on writing then more chapters will be released per week. Thanks for your interest, and I hope you enjoy!
8 65Avatar the last airbender the last stand
in a alternate reality where Aang is 15. how will his age different affect the war. how will Aang deal with his hormones and feelings for a young girl who finds him.
8 281Mundane Musings of a Misunderstood Mind
As the name suggests, these are snippets of the things that play on the author's mind; whether it is an oddity of society or a thought that randomly lingers a little longer than usual. You can call it creative writing, philosophy, lessons, musings or just mini tirade's. they are just free flowing expressions with no beginning ad no foreseeable end.
8 80