answersLogoWhite

0

No if there was then java wouldn't have over 4 billion down loads

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How do you campaire Strings in java?

String class in Java has an 'equals' method that can be used to compare strings.


What numbering system is used as a shorthand way of represent strings of bits?

Binary


Which operator is used in java script to work on string?

If you want to check if two strings are equal you have to use string_b)alert("Strings are equal");elsealert("Strings are not equal");}


What is the total number of all binary strings that do not contain the substring "010"?

The total number of all binary strings that do not contain the substring "010" is 2n1, where n is the length of the binary string.


What are the restriction that are applied to operator overloading?

Java does not support user defined operator overloading.The operator '+' is overloaded in Java and can be used for adding both numbers and Strings.


Which binary code strings represents the number 5?

The number 5 in binary is 101


How do you script a RuneScape bot?

RuneScape bots use Java. Use a Java Binary Code.


Why it is required to set path and classpath?

to compile and run java program you need to set path and classpath path refers to binary used to compile and run java program i.e. "javac" for compilation and "java" for execution


What role does binary code play in string theory and how does it influence the fundamental nature of the universe?

Binary code is a system of representing information using only two symbols, typically 0 and 1. In string theory, binary code is used to describe the fundamental building blocks of the universe as tiny vibrating strings. These strings can be thought of as the "bits" of information that make up the fabric of reality. By using binary code to describe these strings, scientists can better understand the underlying structure of the universe and how it functions at its most basic level.


Why does java use unicode?

Transform character s into numbers (binary)


Why you use string s in the java program?

Strings are used to represent text data. This lets you work with names and other variables that hold text.


What is concatetion operation used in java?

"+" is the concatenation operator in Java. It can be used to concatenate two strings. Ex: String firstName = "John"; String lastName = "Morrison"; System.out.println(firstName + " " + lastName); The above code snippet would display John Morrison in the console.