├── .replit ├── main.cpp ├── .gitignore └── README.md /.replit: -------------------------------------------------------------------------------- 1 | language = "cpp" 2 | run = "g++ main.cpp -o main.out && ./main.out" 3 | -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | using namespace std; 4 | 5 | int main() { 6 | 7 | cout << "Hello World!\n"; 8 | 9 | return 0; 10 | } 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Compiled Object files 5 | *.slo 6 | *.lo 7 | *.o 8 | *.obj 9 | 10 | # Precompiled Headers 11 | *.gch 12 | *.pch 13 | 14 | # Compiled Dynamic libraries 15 | *.so 16 | *.dylib 17 | *.dll 18 | 19 | # Fortran module files 20 | *.mod 21 | *.smod 22 | 23 | # Compiled Static libraries 24 | *.lai 25 | *.la 26 | *.a 27 | *.lib 28 | 29 | # Executables 30 | *.exe 31 | *.out 32 | *.app 33 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # OOC Study Support Session 👨‍🏫 2 | 3 | IT 1050 Object Oriented Concepts 4 | 5 | Good luck with your exams! ❣️ 6 | 7 | ## Topics 8 | - [Dependency](../../tree/Dependency) 9 | - [Static & Dynamic Objects](../../tree/StaticDynamic) 10 | - [Constructors & Destructors](../../tree/ConstructorDestructor) 11 | - [Polymorphism](../../tree/polymorphism) 12 | - [Setters & Getters](../../tree/Setters-Getters) 13 | - [Formatting Output](../../tree/FormattingOutput) 14 | - [Pointers](../../tree/Pointers) 15 | - [Function Overriding](../../tree/Overriding) 16 | - [Function Overloading](../../tree/Overloading) 17 | - ["this" Keyword](../../tree/This-Keyword) 18 | - [Pass by Reference](../../tree/Pass-By-Reference) 19 | - [Pass by Value](../../tree/Pass-By-Value) 20 | - [Header-Files](../../tree/Header-Files) 21 | - [Inheritance](../../tree/Inheritance) 22 | 23 | ## Past Paper Answers 24 | - [2018-01-(d)](../../tree/2018-01-(d)) 25 | - [2018-01-(e)](../../tree/2018-01-(e)) 26 | - [2018-01-(f)](../../tree/2018-01-(f)) 27 | - [2018-04](../../tree/2018-04) 28 | - [2019-June-02-(b)](../../tree/2019-June-02-(b)) 29 | - [2019-June-02-(c)](../../tree/2019-June-02-(c)) 30 | 31 | ## Past Papers 32 | [OOC Past Papers](https://github.com/ThusharaX/Cpp-programming/tree/main/Past%20Papers) 33 | 34 | ## Contributors ✨ 35 | 36 | 37 | 38 | 45 | 52 | 59 | 60 |
39 | 40 | ThusharaX 41 |
42 | Thushara Thiwanka 43 |
44 |
46 | 47 | AshenWijesingha 48 |
49 | Ashen Wijesingha 50 |
51 |
53 | 54 | SahanPunchihewa 55 |
56 | Sahan Punchihewa 57 |
58 |
61 | 62 | ### 2022/05/29 63 | ## [Thushara Thiwanka](https://github.com/ThusharaX) 64 | 65 | ## [Sahan Punchihewa](https://github.com/SahanPunchihewa) 66 | 67 | ### 2021/10/19 68 | ## [Thushara Thiwanka](https://github.com/ThusharaX) 69 | 70 | ## [Ashen Wijesingha](https://github.com/AshenWijesingha) 71 | 72 | ![WhatsApp Image 2021-10-20 at 5 39 40 PM](https://user-images.githubusercontent.com/47711719/141268159-26074750-563a-451f-9fc6-7d6175489462.jpg) 73 | --------------------------------------------------------------------------------