Posts

PC Shortcut Keys and Useful Tricks for Windows | Viral Tips for Producti...

Image

shortcut key of zoom in excel #exceltricks #shortsvideo

Image

Create Rock Paper Scissors in Java in 6 Minutes

Image
Code import java.util.Scanner; import java.util.Random; public class RockPaperScissors {     public static void main(String[] args) {         Scanner scanner = new Scanner(System.in);         Random random = new Random();                  String[] choices = {"rock", "paper", "scissors"};                  System.out.println("🎮 Rock Paper Scissors Game!");         System.out.print("Enter your choice (rock/paper/scissors): ");         String playerChoice = scanner.nextLine().toLowerCase();                  int computerIndex = random.nextInt(3);         String computerChoice = choices[computerIndex];                  System.out.println("Computer chose: " + computerChoice);        ...

Random Password Generator in Java |Generate Password using Java

Image
CODE  String chars = "jdslkfjsldjjd23423uHKHKHKJDFG34@";        StringBuilder pass = new StringBuilder();        Random random = new Random();        for(int i=0;i<12;i++){            pass.append(chars.charAt(random.nextInt(chars.length())));                    }        txt_passtest.setText(pass.toString()); 

How To Build A Website with Wordpress (Full Tutorial)

Image
#wordpresstutorial #freecourse #website Get up to 20% off your hosting with Hostinger: Premium Web Hosting Everything you need to create your website https://shorturl.at/6zLVI US$ 3.99/mo 25 Websites ~25 000 Visits Monthly 25 GB SSD Storage 400 000 Files and Directories (Inodes) Business Web Hosting Level-up with more power and enhanced features https://shorturl.at/0AhQf US$ 4.99/mo 50 Websites ~100 000 Visits Monthly 50 GB NVMe Storage 600 000 Files and Directories (Inodes) Cloud Startup Optimized for business and eCommerce websites https://shorturl.at/ZNBzN US$ 9.99/mo 100 Websites ~200 000 Visits Monthly 100 GB NVMe Storage 2 000 000 Files and Directories (Inodes) This deal is only available to my audience. Hostinger is a great Wordpress hosting service that I've used for years. You can't go wrong with either option.

SUM Formula in Excel | Add Total Values #shorts #excel

Image