answersLogoWhite

0

Does java moss float

Updated: 12/16/2022
User Avatar

Wiki User

13y ago

Best Answer

Only if it's not charred.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Does java moss float
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is float is a keyword in java?

yes, float is keyword and data type in java


Can java moss produce oxygen?

Yes, Java moss can perform photosynthesis, which involves converting carbon dioxide into oxygen using light energy. Therefore, Java moss can release oxygen as a byproduct of this process, contributing to oxygen production in an aquarium or water environment where it is present.


How do you declare an array of 8 floats?

In C float a[8]; In Java float a[] = new float[8];


Why java is not a pure object oriented?

java is not purely oops because of primitive types in java like int and float double


Is float a data type in Java?

Yes it is but it is not usually used


What are java kaywords?

if ,while,do , int ,float, for,switch,else,


What are two Java primitive types store floating-point numbers?

In Java, you can use either a float or a double


What are some plants in fresh water?

java fern,lotous,crinum,moss,pellia


How do you change a float into a double using java?

with help of type casting it is possible


What is a good aquarium plant?

a banana plant all you do is drop it in some good plants to try are java fern and java moss. their care is simple,and they are fairly bulletproof


Can a double value be assigned to float variable?

THIS IS FOR JAVA i don't know about anything about other languages yes it can be assignedthe syntax is:int (number) = (float) numberFOR EXAMPLE:int = a;a = (float ) 5.5;if the (float) is not there then in Java it gives an error saying precision loss of data type


Is this legal float f equals 2?

At least in Java, that's legal - 2 is treated as an int, which can be converted without problems to the float type.