Smart Contracts
Definition: A smart contract is a self-executing digital contract that contains the terms and conditions of an agreement between parties. It is written in code … Read more
Definition: A smart contract is a self-executing digital contract that contains the terms and conditions of an agreement between parties. It is written in code … Read more
Definition of Public ledgers A public ledger, also known as a transparent or open ledger, is a core component of blockchain technology. It refers to … Read more
Definition of Blockchain Blockchain is a decentralized and distributed ledger technology that allows multiple participants to maintain a shared database of records, known as blocks, … Read more
Write a program to input a sentence and convert it into uppercase and count and display the total number of words starting with a letter … Read more
Write a program to input 15 integer elements in an array and sort them in ascending order using the bubble sort technique. Ans.
Define a class to accept two strings, convert them into uppercase, check and display whether two strings are equal or not, if the two strings … Read more
Define a class to declare an array of size 20 of the double datatype, accept the elements into the array and perform the following: Calculate … Read more
import java.util.Scanner;class LinearSearch{public static void main(String args[]){int c, n, search, array[];Scanner in = new Scanner(System.in);System.out.println(“Enter number of elements”);n = in.nextlnt();array= new int[n];System.out.println(“Enter those” +n+ “elements”);for … Read more