- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Sabid Ansari has Published 199 Articles

Sabid Ansari
122 Views
In C#, LINQ (Language Integrated Query) is a powerful feature that allows us to perform queries on various data sources, including arrays, lists, and databases. It is an efficient and concise way to manipulate data and has become an essential tool for developers. In this article, we will explore how ... Read More

Sabid Ansari
2K+ Views
In programming, there are many situations where we need to reverse a string. One of the most common ways to do this is by using the Reverse() method. However, there are situations where we cannot use this method, and we have to reverse the string using other techniques. In this ... Read More

Sabid Ansari
531 Views
C# is a popular object-oriented programming language used to develop Windows applications, web applications, and games. In this article, we will discuss how to write a C# program to read a string and find the sum of all digits present in the string. Step 1: Reading the Input String The ... Read More

Sabid Ansari
166 Views
In Golang, repeating a slice of bytes is a common operation that can be useful in many different applications. Fortunately, the bytes package in Golang provides a simple way to repeat a slice of bytes multiple times. In this article, we'll explore how to repeat a slice of bytes in ... Read More

Sabid Ansari
502 Views
Golang, also known as Go, is a programming language that has been gaining popularity in recent years. It was developed by Google in 2007 and has since become a popular choice for building scalable and high-performance systems. In this article, we will discuss whether it is worth learning Golang and ... Read More

Sabid Ansari
182 Views
Go, also known as Golang, is a modern and efficient programming language that has been gaining popularity in recent years. Developed by Google, Go is designed to be simple, readable, and highly performant. In this article, we will explore some interesting facts about Golang that you may not know. Developed ... Read More

Sabid Ansari
145 Views
MySQL is a popular open-source relational database management system that is widely used in modern web applications. Go, on the other hand, is a fast and efficient programming language that is becoming increasingly popular for building web applications. In this article, we will discuss how to use Go with MySQL, ... Read More

Sabid Ansari
247 Views
MongoDB is a popular NoSQL database that is widely used in modern web applications. Go, on the other hand, is a fast and efficient programming language that is becoming increasingly popular for building web applications. In this article, we will discuss how to use Go with MongoDB, including how to ... Read More

Sabid Ansari
717 Views
Sorting a slice of string values is a common task in many applications, and Go provides a built-in package sort that includes functions to sort slices of any type, including slices of string values. In this article, we will discuss how to sort a slice of string values in Golang. ... Read More

Sabid Ansari
77 Views
Sorting a slice of string values is a common task in many applications, and Go provides a built-in package sort that includes functions to sort slices of any type, including slices of string values. In this article, we will discuss how to sort a slice of string values that implement ... Read More