Types of Lists :

1.Circular List A Circular list , has the next of last node pointing towards the first node of the list , so in algo terms : rear->next =front; This forms a circle of nodes as now last node and first node is connected , just like a circle : Now why Circular Link list , […]

Read More Types of Lists :

Encryption and Decryption

We have used Java Language , as it already has Inbuilt Encryption & Decryption methods , we also have used File handling part so as to make easy for file transfer . Problem Statement : If you search Data breach on google , the chances that you will get a lot of recent news about […]

Read More Encryption and Decryption

Blockchain in python using functions

There are a total of 10 functions involved in this project ,per-requisites basic blockchain lingo should be known , The project is divided into sub parts , we will traverse sub -parts wise ; 1.Genesis_block : 2.Adding a Transaction A.Now here get_transaction_value is used to take input from the user B.Add transaction , which will […]

Read More Blockchain in python using functions

Blockchain in C++

I recommend you to read the previous blog regarding the basics of Blockchain to understand this blog completely . The Difference between Data Structures and Blockchain is that the assets are viable , which means that values in data structure can have double spending. For Example : Ash has to give misty $100 and brock […]

Read More Blockchain in C++

Understanding concepts of blockchain

The original Paper Highlights are followed :-> Original term tossed up was , A peer to peer Electronic Cash System by Satoshi Nakamoto ,the original abstract from his paper was : Abstract. A purely peer-to-peer version of electronic cash would allow online payments to be sent directly from one party to another without going through […]

Read More Understanding concepts of blockchain

Data Structures

Data Structure is a way of collecting and organizing data ,such that we can optimize our code . For example 1.You can either Store data in tuple or list , depending on operations you want to perform. 2. You can either use yield function use in python or declare data type to store temporary data.As […]

Read More Data Structures

8255 Microprocessor

Architecture: Components: Data Bus Buffer : bi directional data bus is connected to CPU Read,Write,Control,Logic :Consists of various ports for performing various process’s , using A1 ,A0 and Reset port’s. Group A control :Group A port A(8) and Group A port C upper (4) Group B control :Group B port c C lower (4) and […]

Read More 8255 Microprocessor

Bluetooth controlled RC Robot

Table of Contents 1. About Arduino / Raspberry Pi : 2. Architecture of Arduino / Raspberry Pi : 3. Kit details: 4. Project Statement: 5. Details of the project: 6. Conclusion : 1.About Arduino UNO: Arduino is a single-board microcontroller to make applications more interactive with its surroundings . Arduino Uno is a microcontroller based […]

Read More Bluetooth controlled RC Robot