Computer Science, asked by kiranrevankar1910, 6 days ago

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 purveshKolhe
3

Answer:

1. double a = 3.1415;

System.out.println(a);

2. String b = India is my country;

System.out.println(b);

Similar questions