تجمع شيتات واسئلة oop
813 subscribers
345 photos
12 videos
166 files
37 links
شوفو التثبيتات واتركو لنا دعوة جزاكم الله خيرا. 🤍
Download Telegram
تجمع شيتات واسئلة oop
....... is known as runtime polymorphism
انا منكتبش في كل حاجة راه نلقا في كم حاجة تلخبط زي هذنا نكتب فيهن محدش يعبا عليا مكتبتش حتا 25% من النظري
👍1💔1
the freature of one class may be inheritance by more than one class
Anonymous Quiz
28%
multiple inheritance
30%
multilevel inheritance
41%
hierarchical inheriance
the abstraction technique aim separate the implementation details of a class from its behavior
Anonymous Quiz
60%
abstract
34%
interface
6%
inheriance
امتحان ساريا
abstraction forcuses on the behavior of an object
abstraction can be achieved with only abstract class
Anonymous Quiz
47%
53%
...... classes are like regular classes
Anonymous Quiz
52%
abstract
30%
interface
18%
inheritance
abstract classes should contain regular methods
Anonymous Quiz
47%
53%
ترجمة الاساتذة متحطوش املكم فيها واجد صح يساعدو ويسهلو لاكن مش لدرجة تقرا بلعربي!! ومتبحتش الانجليزي بكل مش غباء هوا مرات الاساتذة ميمروش على كل القاعات بحكم ان المجموعات موزعات عشوائي مش كل مجموعة بروحها.... فلاستاذ يسهل بس ويوضح حاجة مش مفهومة مش لدرجة يترجم قوقل بشوية نين انت تحل....
هيمر مرور الكرام وبارك الله فيه بزيادة لو مر اصلا
5👍1
امتحانات OOP (1).pdf
2.4 MB
امتحانات 2017_2018_2019 محلولة
فيهن نظري مهم ديرو عليهن طلة
1
نلتقى غدا في interface و polymorphism upcasting Downcasting
5👍4
صباح الخير.

اللهم ارزقنا سرعة الفهم وقوة الحفظ
22👍2
class Shape {
Shape(int size) {
System.out.println("Shape constructor called with size = " + size);
}
}


class Circle extends Shape {
Circle(int radius) {

System.out.println("Circle constructor called with radius = " + radius);
}
}


public class Main {
public static void main(String[] args) {
Circle circle = new Circle(5);
}
}


ايرور، كمبايلر مفش super
👍1