Posts

Financial HACKs

What is finance in simple words to you? Finance  is a broad term that describes activities associated with banking, leverage or debt, credit, capital markets, money, and investments. ...  Finance  also encompasses the oversight, creation, and study of money, banking, credit, investments, assets, and liabilities that make up  financial  systems. Why is financial literacy important for you? Financial literacy is important because it equips one with the knowledge and skill to manage money effectively. Without financial literacy, the actions and decisions one make or do not make with respect to savings and investments would lack a strong foundation. Financial literacy helps in understanding financial concepts better and enables one to manage their finances efficiently. Furthermore, it helps in effective money management, making financial decisions, and achieving financial stability. Moreover, financial literacy provides in depth knowledge of financial education and various strategies that

Blockchain

Blockchain : Blockchain has grown rapidly throughout the entire world though its realization with Web 4.0, coupled with Internet-of-Things and Artificial Intelligence can bring the most necessary thing, which the Internet currently lacks: Trust. And that "Trust" can be enforced by a decentralized network. There have been many attempts to create digital money in the past, but they have always failed. The prevailing issue is trust. If someone creates a new currency called the X dollar, how can we trust that they won't give themselves a million X dollars, or steal your X dollars for themselves? Bitcoin was designed to solve this problem by using a specific type of database called a blockchain. Most normal databases, such as an SQL database, have someone in charge who can change the entries (e.g. giving themselves a million X dollars). Blockchain is different because nobody is in charge; it’s run by the people who use it. What’s more, bitcoins can’t be faked, hacked or double
Image
 

Finding an element in an array

 //JAVA SCRIPT const arr=['ricky','subham','hemanth','amit']; function findAmit(array){ for(let i=0;i<=array.length;i++){ if(array[i]==='amit'){ console.log(" AMIT FOUND !!"); } } } findAmit(arr); //C++ #include< bits.stdc++.h > using namespace std; int main(){ String arr[ 5 ]={ ' amit ','subham','hemanth' }; int functionFindAmit( array ); for ( int i= 0 ;i< array .length;i++){ if (arr[i]==amit){ cout<< "AMIT FOUND..." ; } } else { cout<< "AMIT NOT FOUND...." <<endl; } return 0 ; } //PYTHON arr = [ 'amit' ] print(arr.index( 'amit' ))