What are the OOPS concepts?

Answer Posted / ramanji m.tech

1.objects
2.classes
3.data abstrtaction
4.data encapsulation
5.inheritance.
6.polymorphism.
7.msg passing

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

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.

1641


If a=5, b=6, c=7, b+=a%c*2. What is the final value of b?

944


Why is polymorphism needed?

605


Can static class have constructor?

587


Why do we need polymorphism in c#?

688






How do you use inheritance in unity?

593


What is abstraction with example?

607


What is the main feature of oop?

622


What is overriding in oop?

550


2. Give the different notations for the class.\

1594


write a code for this:trailer recordId contains a value other than 99, then the file must error with the reason ‘Invalid RECORD_ID’(User Defined Exception).

1645


Why is oop better than procedural?

606


What is inheritance and how many types of inheritance?

622


What is overriding vs overloading?

586


Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)

1641