import java.util.Scanner; class Demo { public static void main( String args[]) { Scanner sc= new Scanner(System.in); System.out.println( "Print Solid Pattern" ); System.out.print( "Enter the value of n: " ); int n = sc.nextInt(); System.out.print( "Enter the value of n: " ); int m = sc.nextInt(); for ( int i= 1 ; i<=n; i++) { for ( int j= 1 ; j<=m; j++){ System.out.print( "*" ); } System.out.println(); } } } OUTPUT: Print Solid Pattern Enter the value of n: 4 Enter the value of n: 7 ******* ******* ******* **...
If truth be told, in order to understand this, one needs to have knowledge of advanced mathematics and computer science . But if you want to start investment or trading, then basic knowledge would suffice . Let us take the example of Bitcoins There is one public account in digital form, of all the bitcoin transactions this is called a 'ledger' . A copy of this ledger exists on all the systems that are a part of the Bitcoin network Those that run this system are called 'Miners' The job of the miners is to verify transactions Say, A has to transfer 2 Bitcoins to B's account Miners will have to confirm whether A actually does have 2 Bitcoins in his account or not To complete the transaction, miners will have to solve a complicated mathematical equation You might have studied about variables back in school. Every Bitcoin transaction has a unique variable The job of the miners is to calculate it It's not that they sit with a pen or paper to solve the equation...
A software suite is a collection of separate application programs bundled to gether and made a cabection of sep. While the applications function exactly the same whether purchased in a suite or separately, it is significantly less expensive to buy a suite of applications than to buy each applica tion separately. There are four basic categories of software suites: • Productivity suite. Productivity suites, also known as office soft ware suites or simply office suites contain professional-grade ap plication programs that are typically used in a business situation. Productivity suites commonly include a word processor, spread sheet, database manager, and a presentation application. The best known is Microsoft Office. Other well-known productivity suites are Apple iWork, Sun StarOffice, Corel Word Perfect Office Suite, and Lotus SmartSuite. • Alternative office suites. Traditionally, when you purchase an fice suite you are licensed to use the applic...
Comments
Post a Comment