Posts

Showing posts from December, 2023

Oppo A79 5G Review - Price, Features, Specs

Image
OPPO A79 5G – RELEASED OCTOBER 2023 பார்க்க வேண்டிய அம்சங்கள் ( Rating – 4.3/5) S.N TOP FEATURES 1. RAM 8GB RAM 2. Storage 128GB Internal, 1TB Dedicated External 3. OS Android 13 (with Custom Color OS 13.1) 4. Battery 5000 mAh Battery, 33W Wired Fastest Charging , 51% in 30 mins 5. Processor   MediaTek Dimensity 6020 Processor (Octa Core) GPU – Mali G57 MC2   6. Screen 6.72 Inch Full HD+ IPS LCD, Panda Glass Protection, 16.7M Colors, 680 Nits Brightness 7. Camera 50MP + 2MP              à (Back Camera) 8MP Front Camera   à (Selfie Camera) 8. Price Rs. 19,999 (20K) 9. Weight 193g, 8 MM 10. Connector Type C Port 11.

Difference Between C and C++

Image
                                                              C vs C++ DIFFERENCES BETWEEN C AND C++ S.N C C++ 1. File Name: (.c) File Name: (.cpp) 2. Structured or procedural language (Programs are divided into modules and functions) or Function Oriented Language. Object oriented programming language (Programs are divided into classes and methods). C++ supports both procedural and object oriented programming 3. C is subset of C++ C++ is superset of c (Extension of c or c with OOPS) 4. In c, the constants are defined using macros In c++, the constants are defined using the keyword const 5. It follows Top down approach (Dividing a problem into set of modules) Solving main module first ( top level ) and then solve sub module separately and complete the solution) It follows Bottom up approach ( Solving sub modules first ( bottom level )and integrate them as whole and complete the solution) 6. C is derived from B and BCPL languages C++ is derived from C and Simula languages. It is a