what i oops concept, how many languages supports oops concept?
Answers were Sorted based on User's Feedback
Answer / brunda r
oops is object oriented programmimg language the provides a
way of modularizing programs by creating partitioned memory
area for both data and functions . The languages like C++,JAVA
use oops.
| Is This Answer Correct ? | 16 Yes | 5 No |
Answer / parth rastogi
oops is object oriented programmimg language which provides the facility to run programs on any platefrom if it is compiled and provides a way of modularizing programs by creating partitioned memory area for both data and functions . The languages like C++,JAVA use oops concept.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / prince ranjith reddy
oops is a concept used to write the computer programs by using classes and objects.
| Is This Answer Correct ? | 1 Yes | 0 No |
Objective The objective of this problem is to test the understanding of Object-Oriented Programming (OOP) concepts, in particular, on encapsulation. Problem Description Create a program for managing customer’s bank accounts. A bank customer can do the following operations: 1. Create a new bank account with an initial balance. 2. Deposit money into his/her account. 3. Withdraw money from his/her account. For this operation, you need to output “Transaction successful” if the intended amount of money can be withdrawn, otherwise output “Transaction unsuccessful” and no money will be withdrawn from his/her account. Input The input contains several operations and is terminated by “0”. The operations will be “Create name amount”, “Deposit name amount”, or “Withdraw name amount”, where name is the customer’s name and amount is an integer indicating the amount of money. There will be at most 100 bank accounts and they are all created on the first month when the bank is opening. You may assume that all account holders have unique names and the names consist of only a single word. Output The output contains the transaction result of withdrawal operations and the final balance of all customers after some withdrawal and deposit operations (same order as the input). Sample Input Create Billy 2500 Create Charlie 1000 Create John 100 Withdraw Charlie 500 Deposit John 899 Withdraw Charlie 1000 0
What is static modifier?
Should you protect the global data in threads? Why or why not?
ambiguity regulation of multiple inheritance with example.
why c++ is a highlevel language
3 Answers Satyam, Tech Mahindra,
Which is faster post increment or pre increment ? and in which cases should u use either - to increase speed?
Write a macro for swapping integers
What is persistence in oop?
What are the 4 main oop principles?
What is constructor in oop?
can you give real time example for polymarphism
Plese get me a perfect C++ program for railway/airway reservation with all details.