Add content for bitwise bitwise, floating point and endianess

pull/2902/head
Kamran Ahmed 2 years ago
parent 6fa7117a33
commit 0ec0ab4d3c
  1. 9
      content/roadmaps/103-computer-science/content/106-bitwise-operators.md
  2. 8
      content/roadmaps/103-computer-science/content/107-floating-point-numbers.md
  3. 8
      content/roadmaps/103-computer-science/content/108-endianess/100-big-endian.md
  4. 9
      content/roadmaps/103-computer-science/content/108-endianess/101-little-endian.md
  5. 9
      content/roadmaps/103-computer-science/content/108-endianess/readme.md

@ -1 +1,8 @@
# Bitwise operators
# Bitwise Operators
Bitwise operators are used to perform operations on individual bits of a number. They are used in cryptography, image processing, and other applications.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='red' badgeText='Watch' href='https://www.youtube.com/watch?v=7jkIUgLC29I'>Bit Manipulation</BadgeLink>
<BadgeLink colorScheme='red' badgeText='Watch' href='https://www.youtube.com/watch?v=lKTsv6iVxV4'>Binary: Plusses & Minuses (Why We Use Two's Complement) - Computerphile</BadgeLink>
<BadgeLink colorScheme='red' badgeText='Watch' href='https://www.youtube.com/watch?v=NLKQEOgBAnw'>Algorithms: Bit Manipulation</BadgeLink>

@ -1 +1,7 @@
# Floating point numbers
# Floating Point Numbers
Floating point numbers are numbers that have a decimal point in them. They are used to represent real numbers. For example, 3.14 is a floating point number. 3 is not a floating point number because it does not have a decimal point in it.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='red' badgeText='Watch' href='https://www.youtube.com/watch?v=ji3SfClm8TU'>Representation of Floating Point Numbers - 1</BadgeLink>
<BadgeLink colorScheme='red' badgeText='Watch' href='https://www.youtube.com/watch?v=RIiq4tTt6rI'>Why 0.1 + 0.2 != 0.3? | Floating Point Math</BadgeLink>

@ -1 +1,7 @@
# Big endian
# Big Endian
Big endian is the most common type of endianness. In this type, the most significant byte is stored at the lowest memory address. This means that the most significant byte is stored first and the least significant byte is stored last.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.geeksforgeeks.org/little-and-big-endian-mystery/'>Little and Big Endian Mystery</BadgeLink>
<BadgeLink colorScheme='red' badgeText='Watch' href='https://www.youtube.com/watch?v=T1C9Kj_78ek'>Lecture 22. Big Endian and Little Endian</BadgeLink>

@ -1 +1,8 @@
# Little endian
# Little Endian
Little Endian is a way of storing data in memory. It is the opposite of Big Endian. In Little Endian, the least significant byte is stored first. In Big Endian, the most significant byte is stored first.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.freecodecamp.org/news/what-is-endianness-big-endian-vs-little-endian/'>What is Endianness? Big-Endian vs Little-Endian Explained with Examples</BadgeLink>
<BadgeLink colorScheme='red' badgeText='Watch' href='https://www.youtube.com/watch?v=JrNF0KRAlyo'></BadgeLink>
<BadgeLink colorScheme='red' badgeText='Watch' href='https://www.youtube.com/watch?v=NcaiHcBvDR4'>Endianness Explained With an Egg - Computerphile</BadgeLink>

@ -1 +1,8 @@
# Endianess
# Endianess
Endianess is the order in which bytes are stored in memory. The two most common types of endianess are big endian and little endian. Big endian stores the most significant byte first, while little endian stores the least significant byte first.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.freecodecamp.org/news/what-is-endianness-big-endian-vs-little-endian/'>What is Endianness? Big-Endian vs Little-Endian Explained with Examples</BadgeLink>
<BadgeLink colorScheme='red' badgeText='Watch' href='https://www.youtube.com/watch?v=JrNF0KRAlyo'></BadgeLink>
<BadgeLink colorScheme='red' badgeText='Watch' href='https://www.youtube.com/watch?v=NcaiHcBvDR4'>Endianness Explained With an Egg - Computerphile</BadgeLink>

Loading…
Cancel
Save