What will be the output of the following program?
public class Directors {
public static void main(String args[]) {
Float[] puri = {15.0f, 20.0f, 30.0f};
String str = "";
for (Float element : puri) {
str += element;
}
System.out.print(str.toString());
}
}