C# Important Programs
Question no. 1 – Write a program to print “Hello World” in C# using System; public class Program { public static void Main(string args) { Console.WriteLine("Hello World"); } } //…
Question no. 1 – Write a program to print “Hello World” in C# using System; public class Program { public static void Main(string args) { Console.WriteLine("Hello World"); } } //…
Table of ContentStackOperations on StackStack representation (Implementation)Stack Representation using ArrayStack Representation using Linked ListApplications of Stack Stack Stack is an abstract data type (ADT), which has its own values called…
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…
HTML में hello world लिखने के लिए सबसे पहले एक new file create करनी पड़ेगी जिसकी extention .html होगी चाहिए। windows में .html करता है की यह एक HTML file…