Lorraine Tay
- Page Views
- 5,885
- Content
- 8
- Fans
- 0
- Contributor since
- 11/27/2008
Displaying Results 1 - 8 (of 8) for All Content
-
Using Java Access Modifiers in Java ProgrammingJava Access Modifiers (also known as Visibility Modifiers) regulate access to classes, fields and methods in Java. These modifiers determine whether a field or method in a class, can be used or invoked by another method in another class or sub-class.
-
Disadvantages and Trade-Offs of Assembly LanguagesAssembly Languages has a few disadvantages. In this article, we will discuss the disadvantages that pertain to Assembly Languages.
-
Interoperability: The Cutting Edge of Java Virtual Machines (JVM)Java was designed with a concept of write once and run everywhere. Java Virtual Machine plays the central role in this concept. The Java Virtual Machine (JVM) is the environment in which Java programs execute. -
Introduction to Java Virtual Machine (JVM) for Java BeginnersJava Virtual Machine or JVM is a platform independent execution environment that converts Java byte-code into machine code (binary). -
A Review of Alice: A Java Learning Program and Its Creator Randy PauschRandolph Frederick Pausch (October 23, 1960 - July 25, 2008) was an American professor of computer science, human-computer interaction and design at Carnegie Mellon University. He created Alice, a learning-to-program software.
-
Java Sorting AlgorithmSorting is the process of rearranging a set of items in a specific order. Sorting is essential in data processing so that applications would be able to access them more efficiently.
-
Agile Methodology: A Software Development Process FrameworkAgile methodology is a software development process framework that adopts the iterative approach, open collaboration, and process adaptability throughout the life-cycle of the project.
-
How to Program with Assertions in Java TechnologyAn assertion tests the assumptions made in a program. It contains a Boolean expression that returns a true or false. If the statement is correct, it will return a true and the program will pass on the correct data to other processes in the program.