Java - Overview Java programming language was originally developed by Sun Microsystems, which was initiated by James Gosling and released in 1995 as core component of Sun Microsystems.s Java platform (Java 1.0 [J2SE]). As of December 08 the latest release of the Java Standard Edition is 6 (J2SE). With the advancement of Java and its wide spread popularity, multiple configurations were built to suite various types of platforms. Ex: J2EE for Enterprise Applications, J2ME for Mobile Applications. Sun Microsystems has renamed the new J2 versions as Java SE, Java EE and Java ME respectively. Java is guaranteed to be Write Once, Run Anywhere Java is: Object Oriented : In java everything is an Object. Java can be easily extended since it is based on the Object model. Platform independent: Unlike many other programming languages including C and C++ when Java is compiled, it is not compiled int...
he Dutchman revealed in July that he would not sign a new contract at the Emirates, citing a disagreement "in the way Arsenal should move forward." Speculation over his future has been rife ever since.
Popular posts from this blog
HOW TO COMPILE A NEW HACKING TOOL IN KALI LINUX (ONLY FOR HACKER WITH KALI)
I need to remind you that my previous tutorials i have explained to my readers how to install kali linux on window and mac operating system. my followers keep on request on how to install or compile a new hacking tool in kali Linux. power by jumatoo 19th August, 2018 How to Compile a New Hacking Tool in Kali Welcome back, my newbie hackers! Recently, I "upgraded" to Kali as my hacking platform, despite my preference for BackTrack . I did this reluctantly, primarily because new readers here could no longer download BackTrack from their site. I want to point out here that we all must keep in mind that with any software—or for that matter, any product—that is newer is not necessarily better. Although Kali has some new tools and has new version of old tools, the developers of Kali left out some very valuable ones. A tool that I am miss...
JAVA BASIC DATA TYPYES
Java Basic Data Types Variables are nothing but reserved memory locations to store values. This means that when you create a variable you reserve some space in memory. Based on the data type of a variable, the operating system allocates memory and decides what can be stored in the reserved memory. Therefore, by assigning different data types to variables, you can store integers, decimals, or characters in these variables. There are two data types available in Java: Primitive Data Types Reference/Object Data Types Primitive Data Types: There are eight primitive data types supported by Java. Primitive data types are predefined by the language and named by a key word. Let us now look into detail about the eight primitive data types. byte: Byte data type is a 8-bit signed two's complement integer. Minimum value is -128 (-2^7) Maximum value is 127 (inclusive)(2...
Comments