Posts

Java Lecture1

Language Fundamentals  1. Identifiers  2. Reserve words  3. data types  4. Literals 5. Arrays 6. Types of variables 7. var-args method  8. main method  9. command line arguments 10. java coding standard -------------------- 1. Identifiers    a name in java program is called identifiers, which can be used for identification purpose it can be method name, class name, variable name or label name. class Test#1# { public static void main#2#(String#3# ar#4#[]) { int x#5#=10; } } in this how many identifiers are there??? Rules for defining java identifiers  1. the only allowed character in java identifiers are ---> a to z, A to Z, 0 to 9, $ and _ if we are using any other character we will get compile time error. example  total_number valid total#    invalid 2.identifiers cant starts with digit total123 valid , 123total invalid  java identifiers are case sensitive offcourse java language itself considered as case sensitive pro...

Important Links for Software Engineering

 Tools Required for software designing Online Visual Paradigm PlantUML

Software Engineering PPT

Software Engineering PPT Software Requirement Gathering Rational Rose software Unit3 Remaining Unit 4 Unit 5 Syllabus Practical 1 Software Engineering Practical 2 Responses   Practical 3 Responses Lab Manual Example

Software Engineering

Image
Project Lifecycles The phases Data gathering and Problem redefinition are concerned with understanding what the problem is about; the Finding ideas phase attempts to identify ideas that help us to understand more about the nature of the problem and possible solutions. Finding solutions is concerned with providing a solution to the problem and Implementation puts the solution into practice. This approach to problem solving divides a task into subtasks, each with a particular focus and objective. The information systems development process may be subdivided simply into three main tasks: understanding the problem, choosing and designing a solution, and finally building the solution.  There are many other ways of subdividing an information systems project but they all include an analysis activity that identifies what the system should do, a design activity that determines how best to do it and some construction activity that builds the system according to the design. The phases tha...

Assignment Link

Include Tag JSP

 Registration.jsp <%@ page language="java" contentType="text/html; charset=ISO-8859-1"     pageEncoding="ISO-8859-1"%> <!DOCTYPE html> <html> <body>  <%@ include file="Header.jsp" %> <h1><center>Registration Page</center></h1> <form> <table> <tr> <td>Enter Name :</td> <td><input type="text" name="t1"></td> </tr> <tr> <td>Enter Lastname :</td> <td><input type="text" name="t2"></td> </tr> <tr> <td>Enter Address :</td> <td><input type="text" name="t3"></td> </tr> </table> <input type="submit" value="Register"> </table> </form> <%@ include file="Footer.jsp" %> </body> </html> =========================================================...