Wednesday, August 17, 2016
Unit 5: The Database Architecture_Continued
The Database Architecture B. Three-Tier Architecture Three layers in the three-tier architecture are as below:- 1) Client layer It is known as Presentation layer that consist of the User Interface of the application, example,...
Unit 4: The Database Architecture
The Database Architecture Database architecture were classified into two types as below: A. Two-Tier architecture B. Three-Tier architecture A. Two-Tier Architecture The Two-tier architecture is divided into two parts: 1- Client (Client Tier)...
Unit 3 : What are all the components of Database System?
What are all the components of Database System? Users: are the one who really uses the database. Users can be administrator, developer or the end users. Tasks of users: - Input new data -...
Unit 6: What happens at compile time and run time?
What happens at compile time and run time? At compile time, java file is compiled by Java Compiler (It does not interact with OS) and converts the java code into bytecode. What happens at...
Unit 5: Understanding the first Java Programming
Understanding the first Java Programming Prerequisite – JDK – java Development Kit class Simple { public static void main(String args[]) { System.out.println("Hello Java"); } } save this...