《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 Serial27 Chapters
Shayde
Set in a medieval fantasy world with demons to unique abilities we follow Shay Shuppet, who, after joining the guards and proving himself to be an adept fighter, is scouted by a criminal organisation, Arcanum, who oppose the corrupt governments of the world and plan to overthrow the councils of each kingdom who are protected by ‘Roses’; Expert fighters who possess powerful abilities.
8 116 - In Serial9 Chapters
World of Telduria
The world of Telduria is filled with dangers and opportunities. The world is made up of numerous factions, kingdoms and alliances. Most of the time there is relative peace but every now and then wars and skirmishes breaks out. There is a council of nations which tried to mediate peace between the nations. Each nation is represented along with the guilds which span the world.The guilds have an invested interest in keeping the peace due to how they work across the borders. The different nations make up half of the council while the guilds make up the second half. The balance in the world is on a life's edge. A powder keg waiting to blow, but no one dares to make the first move.After the formation of the adventures guild and the mercenary guild most nations dissolved their militarises and instead the army is more of a policing force than an offensive one while the guilds hunt down dangerous creatures and monsters that appears in the world.The nations have changed their ways from war to one of assassination, espionage, economics and diplomacy. World leaders don't tend to survive very long if they don't have guards with them at all times. While officially there is no assassin's guild or thieves guild they do sure exist and are thriving like never before in the current political climate. That and the other guilds don't stop them since they also hire their services from time to time.The various temples and religions have no official power part from some nations which are based around a belief. In actuality though they have considerable powers since they control the masses just as well as the rulers themselves. Get on their bad side and you might just find an assassin coming for you. A young woman gets thrown into this grimdark world from our own. Will she survive the curveball that gets thrown in her face as she changes into something else? Map created by Maximeplasse This fiction is based on my play-per-post RP that I've run before but with my own take on summoned characters and dungeon settings. At certain points I'll also allow reader decisions if the story gets popular enough. xD It's unrelated to the D&D Theron setting; Telduria I just liked the name and the map when I started up the RP back in the day.
8 192 - In Serial29 Chapters
Dragon Fantasy
A boy who is orphan wanted to become elite in human and demon society and wanted to know the reason why he was abondoned. But story and history is deeper than you think. The boy become man and the man become dragon who will dominate the world. How? let's find out by ourselves. Author: Some character design (Image) I done with software. One of the heroine of the series.(Still didn't appear) Miss Head Mistress(Bellow) Main Lead
8 316 - In Serial27 Chapters
BREATHE
She was floating around under water. Suffocating and slowly dying, the blue of the water causing her to not see anything. Tears covered her eyes, leaking out and flowing down her face like a stream. Suddenly she can see a bright light, and a hand was reached out towards her. She slowly reached up taking his hand. He pulled her out into the light. Her darkskin glowing and shining. With one more pull she was out the water, sensing everything around her. Finally seeing everything around her. She can finally BREATHE.
8 113 - In Serial44 Chapters
The Female Partner Gets Rich in The Chronology
Note: This novel is not mine. For reading purposes only.https://www.69shu.com/txt/37814.htmAuthor: Dream of one meter and sevenCategory: Romance Novels652773 words | serialUpdate: 2021-11-16Ye Xiuqing, who died of overwork, woke up again and found that she had worn a female partner with the same name and surname in a chronological essay, and became a control group for the female protagonist in the essay.The heroine's father is the second son of the family, hardworking and capable, simple and honest.The female partner's father is the youngest son of the family.Although the heroine mother has some cowardly and patriarchal, she is also very kind to her daughters and has a gentle personality.The female partner's mother also likes to be lazy and caress about everything.The original heroine is born again and uses the prophet to kill the Quartet.The female partner always grabs things with the heroine, and in the end, she commits herself to death and affects the relatives who are good to her.Knowing his situation, Ye Xiuqing suddenly became calm.Why does the hostess love to go? It has nothing to do with her. What she has to do now is to live her own life well.So...Ye Xiuqing was studying when the heroine used the prophet to have an ambiguous relationship with potential stocks.When the heroine had a good relationship with the villagers and accumulated fame, Ye Xiuqing had already attended the best university and accumulated the first start-up capital.Ye Xiuqing has already promoted her business abroad when the heroine's business has improved.After the heroine has gone through many hardships, she finally got together with the hero of the original book. She suddenly discovered that the cousin Ye Xiuqing who she didn't look down on had already become something she couldn't afford.
8 157 - In Serial8 Chapters
Random images I have in my gallery
The title is self explanatory
8 171

