What is the concept of object oriented program?

Answer Posted / nijasec

It giving importance to object or it consists of objects of
classes

Is This Answer Correct ?    13 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to sort the number with different sorts in one program ??

1970


Why is it so that we can have virtual constructors but we cannot have virtual destructors?

3989


What is abstraction with example?

688


Where is pseudocode used?

628


to find out the minimum of two integer number of two different classes using friend function

1700






What is the point of polymorphism?

648


What are the benefits of interface?

652


Why do we use polymorphism in oops?

641


What does and I oop mean in text?

706


What is multilevel inheritance explain with example?

704


Advantage and disadvantage of routing in telecom sector

849


write string class as your own class in java without using any built-in function

2039


Can enum be null?

647


What is the problem with multiple inheritance?

657


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.

1700