
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Guru has Published 10 Articles

guru
134 Views
Filtering data by date or datetime is a common requirement when working with SQL queries. Whether you're retrieving records for a specific date, a range of dates or precise timestamps SQL provides robust tools to handle such scenarios. Understanding Date and DateTime Data Types The SQL databases support various data ... Read More

guru
100 Views
In SQL, joining tables is an essential operation that combines data from multiple sources. While joining two tables is straightforward many real-world scenarios require joining three or more tables to retrieve comprehensive information. This article explains how to join three or more tables, complete with examples. Understanding Joins SQL joins ... Read More

guru
178 Views
The Sublime Text is a popular code editor due to its simplicity, speed and extensibility. While it may not have built-in C++ support, it's very easy to set up Sublime Text for competitive programming in C++. This guide will walk you through configuring Sublime Text to provide a smooth and ... Read More

guru
254 Views
The Java threads provide a mechanism for the concurrent execution making it easier to perform the tasks in parallel. Often, we may need to pass parameters to a thread to ensure it operates with the specific input data. This article offers several practical approaches to passing parameters to a Java ... Read More

guru
332 Views
Excel is a powerful tool widely used for data analysis, computation and visualization. While working with Excel, we use formulas and functions frequently. Read this article to learn how an Excel formula is different from an Excel function and what are their unique features.What is a Formula in Excel?A formula ... Read More

guru
78 Views
In SQL databases, it is often necessary to retrieve the list of table names within a database to understand the structure or to perform the certain operations. Each SQL-based database system offers specific ways to query its metadata to extract the table names. In this article, we will explore how ... Read More

guru
1K+ Views
In SQL, it is common to store data in different formats like VARCHAR, INT, FLOAT, etc. based on the needs of the application. However, sometimes we may need to convert a VARCHAR column to an INT for performing arithmetic operations, comparisons or other logical queries that require integer values. This ... Read More

guru
203 Views
The data structures are essential components in computer science and software engineering. Among the most commonly used are stacks and trees both of which play a crucial role in the different algorithms and systems. Though both stack and tree are non-primitive data structures they serve different purposes and operate on ... Read More

guru
365 Views
When working with text in Java we often need to include new line characters to the format output properly. Different operating systems have different conventions for new line characters: Windows: This uses \r (Carriage Return + Line Feed). Unix/Linux: This uses (Line Feed). Mac (pre-OS X): This uses ... Read More

guru
1K+ Views
The Structured Query Language (SQL) is widely used in databases to manipulate and manage data. When working with multiple tables we often need to combine or join data to retrieve meaningful information. The Two common types of joins used for this purpose are the Natural Join and the Inner Join. ... Read More