Rohith

Creator of whiletrue.live.

@rohithreddykota

Graph Data Structure

Graphs are powerful and versatile data structures that represent connections and relationships between entities. From social networks to transportation systems, graphs provide a flexible framework for modeling real-world scenarios.

Posted May 26, 2023 by Anusha and Rohith ‐ 3 min read

data-structures algorithms programming graph-data-structure

Sorting and Searching Algorithms

Sorting and searching are fundamental operations in computer science and play a crucial role in various applications. From organizing vast data sets to quickly finding specific information, sorting and searching algorithms provide efficient solutions to these challenges.

Posted May 26, 2023 by Anusha and Rohith ‐ 3 min read

data-structures algorithms programming sorting-and-searching-algorithms

Dynamic Algorithms

Dynamic Programming, often hailed as the crown jewel of algorithmic problem-solving techniques, has revolutionized the way we tackle complex optimization problems. By breaking problems into smaller subproblems and reusing previously computed results, dynamic programming offers elegant and efficient solutions.

Posted May 26, 2023 by Anusha and Rohith ‐ 3 min read

data-structures algorithms programming

Databases In SQL

The software used to store, manage, query, and retrieve data stored in a relational database is called a relational database management system (RDBMS). The RDBMS provides an interface between users and applications and the database, as well as administrative functions for managing data storage, access, and performance.

Posted September 13, 2022 by Anusha and Rohith ‐ 3 min read

sql rdbms databases

Syntax in SQL

SQL is followed by a unique set of rules and guidelines called Syntax. All the SQL statements start with any of the keywords like SELECT, INSERT, UPDATE, DELETE, ALTER, DROP, CREATE, USE, SHOW and all the statements end with a semicolon (;).

Posted September 13, 2022 by Anusha and Rohith ‐ 2 min read

sql rdbms syntax