Windows 10 Best Features

 Windows 10 Best Features


1. New Start Menu

2. Universal Apps

3. Microsoft Edge Web Browser

4. Virtual Desktops

5. Cortana Integration

Windows 10 Short Cuts

Win  Button + L :- for Account Switching

Win  Button + I  :- Use this option for Control Panel Opening

Win Button + C :- Cortana Listen Mode

Windows 10 Short Cuts

 Win + Tab =                 TaskView

Win + RightUP key Move apps to Top Right Quadrant

Win + Control + D         Create Virtual Desktop

Win + Shift + C Cortana Listen

Win + S         To check News, Sports, and also Weather Forecast

Win + Control + F4 To Close Virtual Desktop

Win + Control + Right OR Left Move Between Virtual Desktops

Strings in java

import java.util.Scanner;
public class Stringtest1
{
public static void main(String args[])
{
Scanner sc = new Scanner(System.in);
char letter;
System.out.println("enter character");
letter = sc.next().charAt(0);
System.out.println("Character is"+letter);
}
}

use of Integer in java

public class first
{
public static void main(String args[])
{
int a = 10;
int b = 30;
System.out.println("Additin of A And B =" +(a+b));
System.out.println("Substraciont of A And B =" +(a-b));
System.out.println("Division of a and b ="+(a/b));
System.out.println("Multiplication of a and b =" +(a*b));
}
}