Change the Gravity direction of Object in Unity

By Y SAI KIRAN

Hello programmers, In this article, I will show how to change the Gravity direction of an Object in Unity. The gaming experience is improved by changing the gravity direction of th.... Read More

Searching in fork() in C++

By Himanshu Baranwal

In this tutorial, we will discuss the searching in the fork() in C++. The fork() function in C++ programming language is a system call that creates a new process, called child proc.... Read More

Check if binary representation of a number is palindrome or not in Python

By Swarnava Bhattacharya

In this tutorial, we’re going to learn how to check if the binary representation of a number is a palindrome or not in Python. But first of all, we need to understand what.... Read More

All In One Unit Converter GUI App in Python using Tkinter

By Swarnava Bhattacharya

In this tutorial, we’re going to learn how to create an ‘All In One Converter’ application in Python using Tkinter. Tkinter is a standard binding interface to the.... Read More

How to search in a Row-wise and Column-wise Sorted 2D Array in Python

By Swarnava Bhattacharya

In this tutorial, we’re going to learn how to search in a row-wise and column-wise sorted two-dimensional array in Python. But before going forward, we need to understand how.... Read More

How to generate random boolean values in C++

By HARI HARAN B

Generating random Boolean values can be achieved by random number-generating algorithms. These values are used in many probability simulations and cryptography algorithms. rand() f.... Read More

Convert all characters of a string to lowercase in Swift

By Khushi Aswani

This tutorial is all about converting all characters to lowercase in Swift. We will write a string in uppercase and then try to convert it into lowercase using lowercased() method..... Read More

How to find numbers whose factorials end with n zeros in Python

By Swarnava Bhattacharya

In this tutorial, we’re going to learn how to find numbers whose factorials end with ‘n’ zeros in Python. But first, we need to understand how we implement our lo.... Read More

Related Posts