Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

hi Pankaj, Can you please correct the “if condition is true arrow” in the image?
- Nikhil
import java.util.*; public class accepting { public static void main(String[] args) { //accept System.out.println (“Programe to accept your name”); Scanner sc = new Scanner(System.in); System.out.print("Enter Fullname : "); String fullname = sc.nextLine(); System.out.print("Enter Lastname : "); String lastname = sc.nextLine(); System.out.print("Enter Nickname : "); String nickname = sc.nextLine(); System.out.print(“Enter Student ID : “); String id = sc.nextLine(); //output System.out.println (”\n” + fullname + " " + lastname + " " + nickname + " " + id); } }
- VARAPON YUSOP