
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
Rohan Singh has Published 170 Articles

Rohan Singh
1K+ Views
ReactJS is a popular JavaScript library for building user interfaces. It provides developers with a flexible and efficient way to create interactive web applications. Time pickers are commonly used in applications where users need to select a specific time slot for booking appointments, scheduling events, or reserving resources. A time ... Read More

Rohan Singh
198 Views
In Python, the grouping of records by the kth column in a list can be done using Python methods like using the itertools.groupby function, using a dictionary, and using the pandas library. By grouping the records by kth column we analyze and manipulate data more effectively. In this article, we ... Read More

Rohan Singh
425 Views
When working with lists in Python, there may be cases where you need to compare whether two lists are reverse equal. This means that the elements in one list are the same as the elements in the other list but in reverse order. In Python, we can check if two ... Read More

Rohan Singh
138 Views
In Python, the grouping of records on similar index elements can be done using libraries such as pandas and numpy which provide several functions to perform grouping. Grouping of records based on similar index elements is used in data analysis and manipulation. In this article, we will understand and implement ... Read More

Rohan Singh
2K+ Views
While working with JSON objects, Sometimes we need to delete an index or key from the JSON object to remove unwanted data or modify the structure. We can delete the index from a JSON object using methods like the delete operator, filter method, and lodash library. In this article, we ... Read More

Rohan Singh
3K+ Views
Some time−consuming tasks are executed without blocking the main thread in Asynchronous programming. In certain cases, developers may need to delay the execution of a loop to control the flow of their program or introduce delays between iterations. JavaScript provides several techniques for delaying execution, and in this article, we ... Read More

Rohan Singh
2K+ Views
When developing applications with React, it's necessary to declare constants to store values that remain unchanged throughout the lifecycle of a component or application. Constants can help improve code readability, provide a central location for managing shared values, and enhance maintainability. In this article, we'll explore how to declare constants ... Read More

Rohan Singh
215 Views
JavaScript is a widely used programming language for creating interactive and dynamic web applications. However, like any other programming language, JavaScript code can contain bugs that may lead to unexpected behavior or errors. Debugging is the process of identifying and fixing these issues. In this article, we will explore different ... Read More

Rohan Singh
1K+ Views
ReactJS is a popular JavaScript library for building user interfaces. It provides a component−based approach to web development, making it easier to create interactive and dynamic UI elements. Tabs are a common UI pattern used to organize and present content in a user−friendly manner. In this article, we will explore ... Read More

Rohan Singh
1K+ Views
ReactJS is a popular JavaScript library for building user interfaces, and it provides an effective approach to developing interactive components. Toggle switches are frequently used to allow users to switch between a dark mode and a light mode theme in a web application. Toggle switches can also be used to ... Read More