answersLogoWhite

0


Best Answer

It depends on how the question is read.

If "oop yaap sorry" is Spanish and you wish to know the English translation:

"oop yaap" it's not good spanish. That type of spelling is very popular among young people, but it's not correct.

The sentence meaning is something like "Ok, ok, i'm sorry"

If "oop yaap sorry" is English and you wish to know the Spanish translation:

Translation: Oi, si' si', perdo'neme.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does oop yaap sorry mean in Spanish?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Linguistics

What are the disadvantages of OOP over POP?

Some disadvantages of OOP compared to POP include higher memory consumption due to the overhead of objects, increased complexity and overhead due to inheritance and polymorphism, and potential performance overhead due to dynamic binding and method lookup. Additionally, OOP can sometimes lead to more convoluted and less readable code compared to procedural programming.


What are the features of an oop programming language?

Object-oriented programming (OOP) languages include features like classes, objects, encapsulation, inheritance, and polymorphism. Classes are blueprints for creating objects, encapsulation allows data hiding and protects data integrity, inheritance enables code reusability by allowing new classes to inherit attributes and behaviors from existing classes, and polymorphism allows objects of different classes to be treated as objects of a common superclass.


What does SC stand for in grammar?

SC in grammar stands for "subject complement." It is a word or phrase that follows a linking verb and describes or renames the subject of a sentence.


How do use the word develop in a sentences?

The company plans to develop a new product line next year.


What is oo?

We do not use the term OO programming, we use the term OOP (object oriented programming). OOP is the means by which we can define new data types (classes) that behave like built-in types (such as int, char, float and double). Classes allow us to encapsulate data with clearly defined initialisers along with the functions that specifically operate upon that data. From these classes we can instantiate objects with well-defined behaviours. We can also derive new classes (derived classes) from existing classes (base classes) with virtual methods (functions) that can be overridden to provide more specific behaviours even when the exact type of the derived class is not known at compile time (runtime polymorphism).