Llumungeinlinuxnotes.hashnode.dev·Aug 29, 2022 · 13 min readPython Multiple Choice Questions - Part 1In this article, we test our Python programming knowledge by going over 50 Multiple choice questions. 1. What is the output of the code; >>> str = "linux" >>> str[:3] >>> (a) linux (b) inu (c) lin (d) error Ans: (c) Explanation: The above code retur...00
Llumungeinmindweb.hashnode.dev·Aug 26, 2022 · 5 min readPay-to-Public-Key-Hash Script in Bitcoin.In this article, we learn about the Pay-to-Public-Key-Hash script, the most commonly used locking script for the majority of transactions processed on the bitcoin network. Bitcoin script is a stack-based turing-incomplete programming language used by...00
Llumungeinmindweb.hashnode.dev·Aug 26, 2022 · 13 min readIntroduction to Bitcoin Transaction Scripts.Bitcoin uses a scripting language to implement transactions on the blockchain. A script is a stack-based simple list of instructions that are recorded with each transaction describing how the recipient of bitcoins can access the coins. Bitcoin script...00
Llumungeinmindweb.hashnode.dev·Aug 25, 2022 · 6 min readBitcoin Transactions and Their Life Cycle.The main purpose of the Bitcoin blockchain is to enable participants to be able to exchange value between themselves, other features are meant to make sure that transactions are validated, secure, and immutable among others. Programatically we can th...00
Llumungeinmindweb.hashnode.dev·Aug 25, 2022 · 5 min readPeer to Peer Networks and Bitcoin.In this article, we learn about peer-to-peer networks in relation to bitcoin. We also learn about two different systems that come to mind when discussing blockchain technology. According to the dictionary, the term peer refers to a person who is equa...00