Posts

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 ...