What is OOPS and How it is different from Procedural
Programming ?

Answer Posted / vikram k

OOPS stands for object oriented programming languages which
uses concepts like class, object, Encapsulation,
Inheritance, data hiding etc and are used to map real world
entities with oops concepts.
Procedural language do one job at a time which is set of
independents procedures suffers from "singularity problem"
other is as simple as way to solve the problems..

Is This Answer Correct ?    18 Yes 27 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the purpose of enum?

577


How Do you Code Composition and Aggregation in C++ ?

24185


What do you mean by overloading?

574


Why multiple inheritance is not allowed?

581


What is polymorphism explain?

677






INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?

1628


What is object and class in oops?

574


What is stream in oop?

833


What is encapsulation in oop?

599


What is polymorphism what are the different types of polymorphism?

553


Please send ford technologies placement paper 2 my mail id

1646


What is overloading in oops?

591


What is coupling in oops?

589


Can abstract class have normal methods?

602


This program numbers the lines found in a text file. Write a program that reads text from a file and outputs each line preceded by a line number. Print the line number right-adjusted in a field of 3 spaces. Follow the line number with a colon, then one space, then the text of the line. You should get a character at a time and write code to ignore leading blanks on each line. You may assume that the lines are short enough to fit within a line on the screen. Otherwise, allow default printer or screen output behavior if the line is too long (i.e., wrap or truncate). A somewhat harder version determines the number of spaces needed in the field for the line numbers by counting lines before processing the lines of the file. This version of the program should insert a new line after the last complete word that will fit within a 72-character line.

1630