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
Computer Computer एक स्वचालित (automatic) तथा निर्देशों (instructions) के अनुसार कार्य करने वाला device है, जो डेटा ग्रहण करता है, तथा सॉफ्टवेयर (software) या प्रोग्राम (program) के अनुसार की परिणाम…
Table of ContentsListTypes of listOrdered ListUnordered ListHTML List TagsDownload PDF – HTML Lists List HTML में list को create करने के लिए list tags का उपयोग किया जाता है जो…
Webpage पर table create करने के लिए <table> tag का उपयोग किया जाता है, table में information को row and column से बने cell में store किया जाता है। Creating…
webpage में title और subtitle को add करने के लिए heading tags का उपयोह किया जाता है। जो h1 से h6 तक होती है। h1 heading webpage पर sabse अधिक…
Table of ContentsParagraphLine break Paragraph Webpage में paragraph जोड़ने के <p> टैग का उपयोग किया जाता है, जो की block line element है। Example <p>Lorem ipsum dolor sit amet consectetur…