Sabid Ansari has Published 199 Articles

C# Program to Reverse the List of Cities using LINQ

Sabid Ansari

Sabid Ansari

Updated on 04-May-2023 13:49:10

148 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

C# Program to Reverse a String without using Reverse() Method

Sabid Ansari

Sabid Ansari

Updated on 04-May-2023 13:47:44

3K+ 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

C# Program to Read a String and Find the Sum of all Digits

Sabid Ansari

Sabid Ansari

Updated on 04-May-2023 13:46:22

764 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

How to repeat a slice of bytes in Golang?

Sabid Ansari

Sabid Ansari

Updated on 26-Apr-2023 11:25:45

237 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

Is It Worth Learning Golang?

Sabid Ansari

Sabid Ansari

Updated on 26-Apr-2023 11:24:58

571 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

Interesting Facts About Golang

Sabid Ansari

Sabid Ansari

Updated on 26-Apr-2023 11:24:13

258 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

How to Use Go with MySQL?

Sabid Ansari

Sabid Ansari

Updated on 26-Apr-2023 11:23:06

191 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

How to Use Go With MongoDB?

Sabid Ansari

Sabid Ansari

Updated on 26-Apr-2023 11:21:12

315 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

How to Sort a Slice of Strings in Golang?

Sabid Ansari

Sabid Ansari

Updated on 26-Apr-2023 11:18:57

1K+ 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

How to sort a slice of Search in Golang?

Sabid Ansari

Sabid Ansari

Updated on 26-Apr-2023 11:16:54

99 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

Advertisements