Computer Science, asked by shashwatvora208250, 2 months ago

Declare a variable of the following data types and assign a value to it.
(a) Integer
(b) Double
(c) Character
(d) Boolean​

Answers

Answered by divyaprakash007
1

Answer:

int a = 5;

double b = 10.0;

char c = 'a';

boolean d = false;

Explanation:

Similar questions