Posts

Showing posts from March, 2022

The Kashmir Files Movie Link- Scam in hindi

Image
The Kashmir Files Movie Link- Scam in hindi Hello दोस्तों  आज मैं आपलोगो को  बताऊंगा की The Kashmir Files Movie को लेकर कैसी Scam चल रही है , और  ये सिर्फ इस मूवी के लिए नहीं है.... बल्कि आप जितने  भी movies  के लिए download  लिंक खोजते हो  | तो चलिए दोस्तों समझते  हैं इसे  तो क्या है दोस्तों की  जब से The  Kashmir Files movie  जब से रिलीज़ हुई है तब से कुछ लोग इस मूवी को  लेकर सकाम कर scam  कर रहे हैं। ये malware  whatsapp  पर तो फ़ैल  ही रहा है पर इंटरनेट पर जो टॉप रिजल्ट आते  हैं  सर्च इंजन पे  उसपे भी हो रहा है।  हम सबको  पता है की The  Kashmir Files movie जबसे रिलीज़ हुई है तबसे इसने पब्लिक में एक अलग प्रकार का ही जोश आ  गया है इसे देखने को। सबसे बड़ी बात 20 करोड़ के  बजट से बनने वाली  ये film  केवल 1 सप्ताह में ही 100 करोड़ का बॉक्स ऑफिस कलेक्शन पार कर दिया है, जो की बहुत बड़ी सक्सेस है इस  फिल्म के सारे team  के लिए। लेकिन वही दूसरी तरफ लोग wha...

Advantage and Disadvantage of Data Structure

Image
 Advantage and Disadvantage of Data Structure Hello friends, in today's post we will see advantage and disadvantage of data structure also need of data structure. So, let's start this.. What is the need of Data structure? As applications are getting complex and data rich, there are three common problems applications face now-a-days. Data Search: Consider an inventory of 1 million items of a store. If application is to search an item. It has to search item in 1 million items every time slowing down the search. As data grows, search will become slower. Processor Speed: Processor speed although being very high, falls limited if data grows to billion records. Multiple requests: As thousands of users can search data simultaneously on a web server, even very fast server fails while searching the data. To solve the above problems, data structures come to rescue. Data can be organized in a data structure in such a way that all items may not be required to be search and required data ca...

Do You Know, What is Data Structure?

Image
 Hello Friends, From today's post we will start the Data Structure tutorial and will understand this in very easy and fun way. So, let's start this.. What is Data Structure? Data structure is a systematic way to organize data in order to use it efficiently. That means, organizing data in that way so that we can access the data very easily. Data structure is not any language as C,C++,JAVA etc. rather this is the set of algorithms which we use to design/structure the data in any programming language. Data structure is main part of many computer science algorithms  through which a programmers handle the data properly. This plays a key role in better performance of program or software. Characteristics of a Data Structure: Data structure implementation should implement its interface correctly. Running time or execution time of operations of data structure must be as smell as possible. Memory usage of a data structure operation should be as little as possible. This describes that ho...

Difference between Array and Linked List

Image
 Difference between Array and Linked List Hello Friends, Today we will tell you the difference between array and linked list, So let's start this guys. Both Arrays and linked list are used for store the linear data but arrays allocate the contiguous memory location in Compile time while linked list allocate the memory in run time. This is basic and most important difference .Now, we will read the other main difference, Array is an ordered collection of same data type but linked list is ordered collection of same type of element which is connected to each other by pointers. Array supports random access which means that we can access this directly by index.e.g. For 1st element arr[0] , for 7th element arr[6] etc. while Linked list supports sequential access which means that in linked list for access any elements/nodes we have to sequentially traverse the full list. Arrays store the elements in contiguous memory location while In linked list a new elements can be store anywhere. In Ar...

Advantage and disadvantage of array

Image
Advantage and Disadvantage of Array Hello Friends, Welcome to the my blogs .In the previous blogs we have seen the application of Linked list , Stack , Queue , and Tree  . Hope you all enjoy that blogs , today we will see the Advantage and disadvantage of array . So let's start this: Advantage of Array: Array can be implement easily. Different data of the same data types can be represent by only one name. Array can store many data items at a same time. 2D arrays is used for representation of matrices. Disadvantage of Array: wastage of memory in Array. Array is a Static data structure because of which the size of array is already defined. For Insertion and deletion we have to do traverse the full array. Note: Hope you enjoyed this if you liked it then please tell me in the comment and share this to your friends and family members. In the next blog, we will see the difference between arrays and linked list. Thank You

Application of Tree

Image
  Application of Tree Hello Friends ,In the Previous Blogs we have seen Application of Linked List , Stack And Queue . Today We will understand the Application of Tree in Real Life actually we will see all types of tree uses in real life. So, Let's Start this, 1.Tree is a non-linear data structure .So, this used to store the information in non-linear ways. e.g. File System in Computer. 2.If we organize keys(means any data) in tree form then we can find or Search that keys very fast. 3.Heap is a tree data structure which used for implementation of queues. 4.B-tree and B+ tree is used for implementation of indexing in database. 5.Syntax tree is used for Compilers. 6.Suffix tree is used for search in pattern of fixed part. 7. HTML document object model is a tree where all html text, attributes are stored. 8.Used in Networking Routing. 9.  Also used for auto corrector and spell checker. 10. Used in Artificial Intelligence and Games. 11.Hash trees is Used for image signature. Not...

Application Of Queue

Image
 Application Of Queue in Hindi Hello Friends,  Welcome to the My Blogs, In the previous blogs we see that application of Linked List and Stack  ,And today we will see the Application of Queue in real life. So, Let's start this,  As You Know, we use Queue at that place where objects are manage in any order .(First in First Out)  1Queue is used in CPU scheduling and Disk Scheduling. When more than one processes needs CPU at same time at that time we use different CPU scheduling algorithm through queue implementation.  2.This is used for transfer of two processes through the help of mid asynchronous .In this Queue is used for synchronization.  E.g. IO buffers, pipes, files IO etc. 3.Used in Print spooling .  4. In Graph, queue is used in BFS (Breadth First Search).In data structure, BFS is a algorithm for searching and traversal of Graph.  5.Used for handle of real time interruption. when an interrupts is generated at that time we handle it at ...

Top 12 Application Of Stack

Image
 Hello Friends, Today's we will See the Application of Stacks .So, Let's see this Top 12 Application Of Stack are :  1. Expression Evaluation - Stack is used for evaluation of Prefix, Postfix and Infix expression. 2. Expression conversion -It is Used For conversion of One Expression Form to Other Form.(One expression represents through prefix, postfix or infix notation. 3. Syntax Parsing -Many Compilers used the stack for parsing the syntax expressions. 4. Backtracking -  Backtracking means " to go back the same way you come " .Let me take a example for understanding this, Let we have to find the path for solving the maze problem . Now, we choose a path and we move forward ,and after that we found out the path we chosen that is wrong. now for going other path we have to again come to that place where we started . In this Situation We can do it through the help of Stack. 5. Parenthesis Checking - we use stack for parenthesis checking so that we can find that Open an...

Top 12 Application Of Linked List

Image
 Application Of Linked List In Hindi Hello Friends, In this Blog Today's We will Know about , Application of linked list are Given Below:- Fig.1 Linked List   1.We can easily implement this in Stacks and Queue. 2. Can be implemented in Graphs . In linked List, we can store adjacent vertices. 3.Uses for Dynamic Memory Location. 4.Uses for maintains of Directory Name. 5.In Long integers through this can perform arithmetic operations. 6.In linked list Node, after storing constant we can manipulate the polynomials. 7.Uses for representation of Sparse Matrices. 8.It's uses in the image viewer for images next and previous. 9. Through this help we can do backward and forward in music player. 10. Also uses in web browser for Url back and next button. 11. Can be Uses for implementation of hash tables. 12.Uses in Word and Photoshop for undo. Thanks for Reading This Blog. Hope You Can understand this Application of Linked list.  If You Liked It Then Please Follow me For More these t...

How to Upload html website free with free domain

Image
 How to Upload html website free with free domain? Welcome to the My Blogs ..... Today we will know how we can upload any html site  So,Let's start this step-1 Go to your browser and search netlify.com step-2 Now open this and make account of yours step-3 After go to back and again login there Now after login You have this type of interface step -4 Now you have to go to below and click "Add new site " section After clicking on that you will see 3 option you have to click on "Deploy Manually ". Step -5 Now you will see  this  Now simply drag your folder of your Website and drop on that box Note: Make Sure That your home showing html file name should be index.html  step-6 Now you will see this  now You can be happy....... Because your site has been uploaded  How to change the domain name? For that you have to click on "site setting" and scroll below  Now click on "Change site name" and save it. If you Have any problem and then you can see my yo...