What is Java?
Java is a popular and versatile programming language that was created by James Gosling and his team at Sun Microsystems in the mid-1990s. Its design aimed to make software development…
Java is a popular and versatile programming language that was created by James Gosling and his team at Sun Microsystems in the mid-1990s. Its design aimed to make software development…
Selection sort is a sorting algorithm, which allows you to arrange elements in a particular order. Video Reference https://www.youtube.com/embed/ke4i8DEectA Algorithm steps to implement selection sort start pick smallest element index.…
In this video, we dive into the world of binary search, a powerful and efficient searching technique used in computer science. Binary search allows us to quickly find an element…
In this blog we will see the basics of DSA, the topic is linear search. linear search is based on the brute force approach by comparing every element of an…
Merge sort is a sorting algorithm based on the divide-conquer technique. merge sort Notes 5.1-merge-sort-notesDownload
Table of ContentsVariableRules of declaring a variableConstant Variable Variable memory location को दिया एक नाम है जो data को होल्ड (store) करता है। variable की value को हम program के…
Table of ContentsFile HandlingFile को read करनाRead FileWrite to FileAppend in FileClose FileConclusion File Handling File से data read करना, write करना, अपडेट करना, file को create और delete करना…
Operators mathematical symbols (चिह्न) है जो की गणितीय (mathematical) और तार्किक (logical) calculation करने के उपयोग किये जाते, उदाहरण के लिए +, -, *, / आदि operators है। Example #include<stdio.h>…
पाइथन एक General Purpose Object-Oriented Programming language है | जिसका उपयोग हम Software बनाने के लिए करते हैं, सॉफ्टवेयर जैसे Desktop, Web, Console एप्लीकेशन सॉफ्टवेयर आदि। System Scripting, Tasks Automation…
Data structures are a way of organizing and storing data in a computer so that it can be accessed and modified efficiently. Different types of data structures are suited to…