Python Program to Print Trinomial Triangle

By Abinash Reddy

In this article, we will learn how to print a trinomial triangle in Python. A Trinomial triangle is a variety of Pascal’s triangle. The distinction between the two is that a .... Read More

Maximum value of XOR among all triplets of an array in Python

By Abinash Reddy

In this article, we will learn how to find the maximum value of XOR among all the triplets of an array in Python. XOR is a logical operation the yield true when both the input of o.... Read More

fegetenv() and fesetenv() functions in C++

By Ranjeet V

In this tutorial, we will learn about fegetenv() and fesetenv() functions in C++. These are inbuilt functions and are defined in <cfenv> header file. fegetenv() The syntax of.... Read More

Creating Javascript Objects in Different ways

By Vikneshwar GK

Objects are entities that have properties and functions to mimic real-world objects. In Javascript, objects are non-primitive data types. The property of an object refers to the fa.... Read More

Iterating over JavaScript Array in Different ways

By Vikneshwar GK

Iterating over an array means going through each and every element present in the array and perform some function. In Javascript, there are several ways to iterate over an array. L.... Read More

Dojo Eating apples – A Binary search problem in C++

By Deepanshu

This problem is about how can we use binary search algorithm and use it to solve complex problems we will learn about the concepts and algorithm used and then will see its implemen.... Read More

Prefix Expression Evaluation In C++

By Anurag Tiwari

In this tutorial, we shall learn to evaluate prefix expression in C++. We shall use stack data structure from the STL. The computer does not know how to evaluate infix expression, .... Read More

Merge two sorted linked list without any extra space in C++

By Rahul Ranjan

Hello Friends, Today we are going to learn how to merge two sorted linked lists without any extra space in C++. I hope you know about the linked list and how it stores the data. So.... Read More