LogIn
I don't have account.
Others
If you are not able to find any relevant tag related to your question/articles/blogs etc you can add this tag in that case and can send a feedback to us with name and description of your required tags. we will make sure to add those tags in system. sending feedback section is available in footer under help and support section.
Java
Java is a high-level object-oriented programming language. it's firstly released by Sun Microsystems in 1995. Use this tag when you're having queries using or understanding the language. This tag is also applicable to Java libraries and frameworks.
JavaScript
JavaScript is a scripting or programming language that allows you to implement complex features on web pages. It is the third layer of standard web technologies ( others two are html and css). Note:- JavaScript is NOT Java.
Integer
Common datatype in many programming languages for representing both negative and non-negative whole numbers.
Random
This tag is used for random number and their generators.
String
String is a data type used in most of the programming language. String is a sequence of characters and can contain letters, spaces , symbols ,numbers etc. commonly used for text, though sometimes for arbitrary data.
C
C is a procedural and general-purpose programming language. Mostly used for system programming , gaming ,libraries etc . This tag can be used for queries related to C language. Note :- C is not C++ both are different programming language
RabbitMQ
RabbitMQ is an open-source messaging broker. It is lightweight and easy to deploy in the cloud and on premises. It supports multiple streaming and messaging protocols. It's supported via a plug-in architecture. It can be deployed in distributed and federated configurations to meet high-scale, high-availability requirements.
SQL
SQL stands for Structured query language. It is a programming language for storing and processing information in a relational database. It is standard language for accessing and manipulating databases.
Database
A database is an organized collection of data. It is the collection of schemas, tables, queries, reports, views, and other objects. The data are typically organized to model aspects of reality in a way that supports processes requiring information. Use this tag if you have questions about designing a database.
DBMS
DBMS stands for database management system . It is a software system that is designed to organize and manage data with the help of this user can create, modify and query a database. as well as manage the security and access controls for that database.
Oracle Database
Oracle Database is a proprietary multi-model database management system produced and marketed by Oracle Corporation
MySQL
MySQL is an open-source relational database management system
PostgreSQL
PostgreSQL is a free, open source relational database management system. It was initially developed as a successor of the Ingres database
AWS
AWS stands for Amazon Web Service.
Amazon EC2
Amazon EC2 stands for Amazon Elastic Compute Cloud.
Array
An array is a systematic arrangement of similar objects, usually in rows and columns.
Linked List
A linked list is a linear data structure where elements, called nodes, are connected using pointers. Each node contains data and a reference to the next node, allowing dynamic memory allocation and efficient insertion or deletion. Common types include singly, doubly and circular linked lists, widely used in data manipulation and memory management.
Stack
A stack is a linear data structure that follows the Last In, First Out (LIFO) principle. Elements are added (push) and removed (pop) from the top, making it ideal for tasks like expression evaluation, backtracking and function call management. Common implementations include arrays and linked lists for efficient data handling.
Queue
A queue is a linear data structure that follows the First In, First Out (FIFO) principle. Elements are added at the rear (enqueue) and removed from the front (dequeue), making it ideal for scheduling, task management and buffering. Common types include simple queue, circular queue, priority queue and deque.
Tree
A tree is a hierarchical data structure consisting of nodes connected by edges, with a single root node and child nodes forming subtrees. It is widely used for representing hierarchical relationships, enabling fast search, insertion and deletion. Common types include binary trees, AVL trees and B-trees in data organization and algorithms.
Graph
A graph is a non-linear data structure made up of vertices (nodes) and edges (connections) that represent relationships between entities. Graphs can be directed or undirected, weighted or unweighted. They are widely used in networking, social media analysis, shortest path algorithms and modeling complex real-world relationships efficiently.
Algorithms
Algorithms means a set of rules that we follow to solve a problem
Character
Character is a Data Structure.
HashTable
HashTable is a Data Structure.
Binary Search Tree
Binary Search Tree is a Data Structure.
Binary Tree
Binary Tree is a Data Structure.
AVL Tree
AVL Tree is a Data Structure.
Ternary Tree
Ternary Tree is a Data Structure.
N-ary Tree
N-ary Tree (Generic Tree) is a Data Structure.
Red-Black Tree
A red-black tree is a kind of self-balancing binary search tree where each node has an extra bit.
B-Tree
B-Tree is a self-balancing search tree.
B+ Tree
B+ Tree is one next level of opt on B Tree
Segment Tree
Segment Tree is a tree data structure used for storing information about intervals or segments.
Singly Linked List
Singly Linked List is a Data Structure.
Doubly Linked List
Doubly Linked List is a Data Structure.
Circular Linked List
Circular Linked List is a Data Structure.
Circular Doubly LL
Circular Doubly Linked List is a Data Structure.
Header Linked List
Header Linked List is a Data Structure.
Set
A set is a collection data structure that stores unique elements without duplicates. It is commonly used for tasks like membership testing, removing duplicates and mathematical operations such as union, intersection and difference. Implementations include HashSet, TreeSet and SortedSet in various programming languages for efficient data handling.
Prev
1
2
3
4
5
Next
Trending Articles
Rotate an array of n elements to the right by k steps | right rotate the elements of an array | array rotate | rotate array by k step
Find the Maximum Subarray Sum | Largest Sum Contiguous Subarray | Kadane’s Algorithm | Maximum Subarray | Given an integer array nums, find the subarray with the largest sum and return its sum | The Efficient Way to Find Maximum Subarray Sum
A Structured Approach to Cracking Technical Interviews. how to prepare for Technical Interviews? Technical Interviews preparation guideline
Length of the Longest Substring Without Repeating Characters | Given a string str find the length of the longest substring without repeating characters | find the length of the longest substring without repeating characters in a given string |
do while loop in c# | c sharp do while loop | exit control loop in c#
Integer.MIN_VALUE is a fundamental constant which denotes the smallest possible value that can be stored in an integer data type. It is defined under Integer class of Java.lang package
How to Approach HR Interview Questions , What to Keep in Mind While Answering HR Interview Questions, HR Interview Questions and Answers
Static Class vs Singleton in C#: A Complete Deep Dive
Mastering the Singleton Design Pattern in C#, Singleton Design Pattern in Depth: Structure, Use Cases and Best Practices, in depth design pattern, LLD , low level design
namespace in c# | namspace concept in c# | c# namespace | c sharp namespace | what is namesapce and it's use cases | why should we use namespace