Category: Object Oriented Programming

Home Masters of Computer Science Object Oriented Programming
Object Oriented Programming Old Exam Question – First Semester | MCS | Lincoln University College
Post

Object Oriented Programming Old Exam Question – First Semester | MCS | Lincoln University College

LINCOLN UNIVERSITY COLLEGE EXAMINATION PAPER FACULTY: COMPUTER SCIENCE AND MULTIMEDIA COURSE: MASTER OF COMPUTER SCIENCE YEAR/ SEMESTER:FIRST YEAR/SEMESTER ONE MODULE TITLE: OBJECT ORIENTED PROGRAMMING CODE: MCS 111 TIME ALLOWED:3 HOURS Instruction to candidates 1. This question paper has THREE (3) Sections. 2. Answer ALL questions in Section A, VSAQ 3. Answer 7 questions out of...

Java Programming languages
Post

Member Data and Function

Member Data and Function Variables which are declared inside class are called data members Data members can be either private or public Similarly, functions declared inside class is called member function Data Member Variables are declared in class by using fundamental or derived data types. Thes are data members Fundamental data types are like int,...

Post

OBJECT ORIENTED PROGRAMMING ( OOP )USING JAVA – MCS Microsyllabus

Introduction to OOP Introduction to OO: Classes and Objects Comparison between structured programming and OOP Declaring objects Member data and functions Encapsulation Constructor, destructor and finalize() method Chain of constructor Invoking base class constructor Objects and arrays “this” keyword Wrapper classes Objects as parameter INHERITANCE AND POLYMORHISM Super class, sub class, inheritance and member access...

How Constructor in JAVA works? Learn with a simple example
Post

How Constructor in JAVA works? Learn with a simple example

Constructor Special method to initialize the object When object of the class is created, constructor is called Can be used to set initial value of attribute in object Constructor is public But in java we can create public, private, protected constructor Private constructor : within a class   Example: public class ConstructorDemo {     int...

What is encapsulation? Learn encapsulation in JAVA
Post

What is encapsulation? Learn encapsulation in JAVA

Introduction of Encapsulation Besides inheritance, polymorphism and abstraction, encapsulation is one of fundamental OOP concept. mechanism of wrapping up data under single unit this is process ehere code and data are wrapped together in single unit its like a capsule, which consists of several components in medicines Java Bean is fully encapsulated class Variables /...