Computer Science, asked by ArishaRazi6174, 1 year ago

Identify the names of two variables used in the given code.



public class variables {



  public static void main(string args[]) {



   string strval = "hello";



  int intval = 0;



   system.out.println("integer: " +intval)



 }



}

Answers

Answered by nitish8089
4

                            .....variable name....

strval: of String class type.

intval: of int primitive data-type

Similar questions