Posts

Showing posts from June, 2015

Programming Practice Reference

 সবাই কামরুজ্জামান নিটন এর বই টা কালেক্ট কর..... ইনশাআল্লাহ সবাই টিউটোরিয়াল পেয়ে যাবে...(সাহায্য প্রয়োজন) Subeen স্যার এর লিংকটা অনেক হেল্পফুল..... আমরা Tutorialspoint   এর sequence টা ফলো করব.....   Useful Link C Tutorial Programming - Tamim Shahriar Subeen Tutorialspoint  C Programming C Programming Book -- Kamruzzaman Niton

Data-Structure : Lecture 2

Data Abstraction Abstraction refers to the act of representing essential features without including the background details or explanations. The   data is not accessible to the outside world, and only those functions which are wrapped in the class cannot access it. Encapsulation The wrapping up of data and functions into a single unit (called class) is known as encapsulation. The data is not accessible to the outside world, and only these functions, which are wrapped in the class, can access it. This insulation of the data from direct access by the program is called data hiding or information hiding. Inheritance Inheritance is the process by which objects of one class acquire the properties of objects of another class. It supports the concept of hierarchical classification. Polymorphism Polymorphism is another important OOP concept. Polymorphism, a Greek term, means the ability to take more than form. An operation may exhibit different behaviors ...

Structured Programming vs. Object Oriented Programming

Structured Programming  Object Oriented Programming Structured Programming is designed which focuses on process / logical structure and then data required for that process. Object Oriented Programming is designed which focuses on data . Structured Programming is also known as Modular Programming and a subset of procedural programming language . Object Oriented Programming supports inheritance, encapsulation, abstraction , polymorphism , etc. In Structured Programming, Programs are divided into small self-contained functions . In Object Oriented Programming, Programs are divided into small entities called objects . Structured Programming is less secure as there is no way of data hiding . Object Oriented Programming is more secure as having data hiding feature. Structured Programming can solve moderately complex programs. Object Oriented Programming can solve any co...

Data-Structure Lecture - 1

Object-oriented programming ( OOP ) is a programming paradigm based on the concept of "objects", which are data structures that contain data, in the form of fields, often known as attributes; and code, in the form of procedures, often known as methods. OOP treats data as a critical element in the program development and does not allow it to flow freely around the system. It ties data more closely to the functions that appear on it, and protects it from accidental modification from outside functions. OOP allows decomposition of a problem into a number of entities called objects and then builds data and functions around these objects. Some of the striking features of object-oriented programming are: ·        Emphasis is on data rather than procedure. ·        Programs are divided into what are known as objects. ·        Data structures are designed...

C Programming

ইনশাআল্লাহ রমজানের ছুটির আগে আমরা এগুলো শেষ করব,যাতে আমরা বন্ধটা কাজে লাগাতে পারি...... বন্ধের মাঝে অনেক কিছু করা হবে,But সবাইকে connected থাকতে হবে......   C Introduction Keywords & Identifier Variables & Constants C Data Types C Input/Output C Operators C Introduction Examples   C Flow Control C if...else C for Loop C do...while Loop C break and continue C switch...case C Programming goto Control Flow Examples      

Hello ICTian

This Page is For Learn Programming........
Hello World.............