Whatis the difference between oop and object based language
Answer Posted / poorna chandar rao
there is no difference btewen the Object oriented
programming language and object based programming language
both are fallows object oriented programming but small
differnce is object based language not supported the
multiple inhiritence ex java script
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What are the 3 pillars of oop?
How to improve object oriented design skills?
Can a varargs method be overloaded?
What is variable example?
What are the important components of cohesion?
What is the problem with multiple inheritance?
Why do we use polymorphism?
What are properties in oop?
What is polymorphism in oops with example?
What is overriding vs overloading?
what are the different types of qualifier in java?
Can an interface inherit a class?
Can a destructor be called directly?
Can we create object of abstract class?
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.