C#

Rotating an Array in C#

The following code example demonstrates Rotating an Array in C#. In fact, array rotation is a programming exercise that helps you improve programming logic. Moreover, it also requires students to develop critical thinking and to find think about logic to solve a problem in an efficient manner. In other words, the application logic needs to …

C#

Generic IList Interface and its Implementation in C#

In this article, I will explain Generic IList Interface and its Implementation in C#. In fact, the .NET Framework library provides a Collections framework that contains the implementation of commonly used data structures. Further, there are generic as well as non-generic collections that exist in the library. While non-generic collections can work on any type. …

C#

Recursive Binary search in C#

The following code example demonstrates the Recursive Binary search in C#. Basically, searching is a very important algorithm in computer science. In fact, almost every application requires the use of searching. Hence, an efficient implementation of the searching algorithm can have substantial improvement in the overall performance of the applications. Searching Techniques In short, there …

C#

C# Practice Questions

The following C# Practice Questions will help you learn the C# language. C# Practice Questions – Basic Programs Understanding the compilation and running of programs on VS.NET 2019. Write a program that displays following: “A simple C# Program.” Create a program that converts temperature specified in Celsius into Fahrenheit.Write a program to compute area of …

Java

Java Practice Exercise

This Java Practice Exercise contains programming problems on core Java. Further Reading 30+ Basic Java Programs Java Code Examples The following Java Practice Exercise will help you learn the Java Programming Language. Create a Java application that computes and displays the area of a circle. Demonstrate how typecasting & conversions take place in Java. Write …