Knowledge in Electronics

INTERNET OF THINGS

Came across this piece on one of the most hot topics of today "IOT" i.e Internet of Things.

Antifragile by Nassim Nicholas Taleb

Antifragile by Nassim Nicholas Taleb

Python Program To Convert Binary To Decimal

def binaryToDecimal(n):     num = n;     dec_value = 0;       # value to 1, i.e 2^0     base = 1;            temp = num;     while(temp):         last_digit = temp % 10;         temp = int(temp / 10);                    dec_value += last_digit * base;         base = base*2;     return dec_value;   num = 10101001; print(binaryToDecimal(num));

Python Program for Decimal to Binary

def decToBinary(n):              binaryNum = [0] * n;        i = 0;     while (n > 0):                     binaryNum[i] = n % 2;         n = int(n / 2);         i += 1;          for j in range(i - 1, -1, -1):         print(binaryNum[j], end = "");      n = 17; decToBinary(n);

Number of solutions of n = x + n ⊕ x

#include <bits/stdc++.h> using namespace std; int numberOfSolutions(int n) {     int c = 0;        for (int x = 0; x <= n; ++x)         if (n == x + n ^ x)             ++c;        return c; } int main() {     int n = 3;     cout << numberOfSolutions(n);     return 0; }

Ac-Dc

Basic concepts of Digital Electronics explained

Logic Family-DEC

Basic concepts of Logic family, a basic component of Digital electronics

8086 Instruction Set

8086 Microprocessor instruction set.

Semiconductor

Basic Introduction to Semiconductor Devices

MicroProcessor and MicroControllers

Full notes of Micro Processor and Micro controller for 5th semester Electronics Branch as well as Computer Science and Systems Engineering, KIIT Deemed to be University.

80286 Microprocessor

Basic concepts of 80286 Micro processor for KIIT deemed to be University, 6th Semester, Advanced Microprocessor.

8086 Concepts and Instruction Set

Full notes of 8086 Microprocessor for 6th Semester, Advanced Microprocessor, KIIT deemed to be University.