Static Members of a Class in OOP
Static members of a Class “Static का अर्थ होता है, ‘स्थिर’ या ‘अपरिवर्तनीय’। जब किसी Class के अंदर किसी Variable या Method को static keyword के साथ declare किया जाता […]
Static Members of a Class in OOP Read More »
Static members of a Class “Static का अर्थ होता है, ‘स्थिर’ या ‘अपरिवर्तनीय’। जब किसी Class के अंदर किसी Variable या Method को static keyword के साथ declare किया जाता […]
Static Members of a Class in OOP Read More »
Data Abstraction Data Abstraction एक ऐसी OOP technique है, जिसमें class अपने internal data और उसकी complex implementation को छिपाकर रखती है। Class बाहर की world को सिर्फ public functions
Data Abstraction – Types, Levels & Examples Read More »
Encapsulation Encapsulation OOP (Object-Oriented Programming) का core concept है, जिसमें Data (Variables) और उस data पर काम करने वाले Methods (Functions) को एक single unit (Class) में bundle किया जाता
Encapsulation in OOP Read More »
Access Modifiers Access Modifiers वो keywords हैं, जो class के data और methods की visibility और access-level को control करते हैं, जिससे program में data सुरक्षित रहे और केवल authorized
Access Modifiers in Programming Read More »
Concept of Objects: State, Behavior & Identity of an object Object Object एक real-world entity का representation होता है। यह physical entity (जैसे, Car, Person, Mobile Phone) या conceptual entity
Concept of Objects & Class Design Read More »
Application of various data structures in operating system And DBMS 1. Arrays Array एक linear data structure है, जिसमें समान type के elements contiguous memory locations में store होते हैं।
Applications of Data Structures Read More »
Hashing (Hashing क्या है?) “Hashing एक Fast data-searching technique है, जिसमें किसी भी data (key) को एक special mathematical formula यानी Hash Function की मदद से एक fixed-size output (hash
Hashing & Indexing क्या है? Read More »
Input-Output processing I/O Processing (Input/Output Processing) Computer Science का एक बहुत ही basic लेकिन super important concept है। यह essentially एक bridge की तरह काम करता है | I/O Processing
I/O Processing क्या है? Working, Types & Functions Read More »
Sorting (Sorting क्या है?) “Sorting एक ऐसी technique है, जिसमें डेटा को छोटे से बड़े (Ascending) या बड़े से छोटे (Descending) order में व्यवस्थित किया जाता है, ताकि searching, processing
Sorting क्या है? प्रकार, अनुप्रयोग, लाभ व हानियाँ Read More »
Merge Sort Merge Sort एक comparison-based sorting algorithm है, जो divide and conquer technique का use करता है। इसे सबसे पहले John von Neumann ने 1945 में introduce किया था।
Merge Sort Algorithm Read More »