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));
}
}

String in put program in java

import java.util.Scanner;
public class Stringtest
{
public static void main(String args[])
{
Scanner sc = new Scanner(System.in);
String name, address;

System.out.println("name");
name = sc.next();
System.out.println("Address");
address = sc.next();

System.out.println("name is "+name);
System.out.println("address is"+address);
}
}

Relational Operators, Comparison Operator, Boolean operator

Relational Operators, Comparison Operator, Boolean operator

> Greater Than
< Less Than
>= Greater than Equal to
<= Less than equal to
== Equal
|= Not equal to