How to Load CSV data in TensorFlow | Python

By Sushant Shaw

Hey there everyone, Today we will learn how to load a CSV file data using TensorFlow in Python. For this tutorial, we are going to use Tensorflow 2.1. We will be loading a ‘..... Read More

Josephus Circle using Circular Linked List in C++

By Pranav Prakasan

This article demonstrates the solution to the Josephus Circle Problem using Circular Linked List in C++. There are many methods by which the solution to this problem may be found. .... Read More

Check if a date is a future date or not in C++

By Sanam Sahoo

Hello, Coders!! In this section, we will discuss how we can check whether a date is a future date or not in C++. Let’s briefly discuss the Date and Time functions and structu.... Read More

Read a file from resource file in Java

By Kuldeep Singh

Hello coders in this tutorial, we will discuss a method for reading a file from a resource folder in Java. We can read the file using the ClassLoader object before we proceed first.... Read More

Python Program for Sum of Squares of first n natural numbers

By Kuldeep Singh

Hello coders, in this tutorial we are going to discuss and write the code for the sum of squares of first n natural numbers using Python. Firstly, we will see the proof then we wil.... Read More

Initialization of multidimensional array of zeros using C++

By Kuldeep Singh

Hello coders, in this tutorial we will learn about how to initialize a multidimensional array of zeros. Before we proceed let’s discuss what is a multidimensional array, We c.... Read More

Python webbrowser Library

By Kuldeep Singh

Hello coders, in this tutorial we will study about webbrowser module or library in Python with code example. Before we proceed we will discuss the webbrowser library then we will d.... Read More

Convert Snake case to Pascal case in Java

By Suchita Sriramka

In this article, we will see what Snake case and Pascal case are and then a short easy code to convert Snake case to Pascal case in Java. Snake Case: Snake case is a naming style o.... Read More