Assign suitable data types for the following and rewrite the following as a JAVA
statement.
1. 3.1415 2. India is my country.
Answers
Answered by
3
Answer:
1. double a = 3.1415;
System.out.println(a);
2. String b = India is my country;
System.out.println(b);
Similar questions