Posts

Showing posts from 2014

Workshop on Advanced Web Development (Part-II)

Other List of Programs is here . This makes the file complete.

List of Programs for Workshop on Web Development

Here you go

Java Question Bank Final

Edit: Link made downloadable Kindly find the Full Question Bank here for all the questions in BSBC 502 (Introduction to Java)

Java: Questions And Answers

Do visit here for any short and long questions-answers.
Some Viva Questions and Answers: What is OOP? A: Object-oriented programming (OOP) is a programming paradigm that represents concepts as “objects” that have data fields (attributes that describe the object) and associated procedures known as methods. Is Java an Object Oriented language? A: Yes. What is significance of import java.io.* in your program? A: The line imports all the classes of the java.io package into the current program. Give some examples of packages. A: java.util, java.lang etc. Why did you write java.util package? (only if you use classes like Scanner or StringTokenizer) A: To include the functions of the Scanner or StringTokenizer class from the java.util package. What is a class? A: A class is a blueprint or prototype from which objects are created. What is an object? A: An object is an instance of a class. How to create an object? A: Objects of a class can be created as by declaring it and then instantiating it using the ‘new’ ...
Now All Codes can be found at GitHub Visit here to get all latest Codes in multiple programming languages. The home page can be found here .
Software Re-engineering "Forward" engineering is the process of constructing a system for a specific purpose. Reverse engineering is the process of deconstructing a system in order to learn how it works and how to make it do things it wasn't designed to do. For more information visit here . Print all the pages till the end of the chapter.