How to delete a table from Oracle Database in Python

By Shubhodh Amaravadi

Hello Geek! we have already learned how to create tables, insert data and fetch data from the Oracle Database table using Python. In this tutorial, we will see how to delete a tabl.... Read More

Vector pop_back() in C++ with examples

By Rakesh

This tutorial will discuss how the method vector:: pop_back() in C++ is going to work. Vectors in C++ STL are similar to dynamic arrays which have a variable size. The storage in v.... Read More

How to find the Nth XOR Fibonacci number in C++

By Tanmaay Kankaria

In this article, given three numbers a, b and n, where a and b are the first two terms of the XOR Fibonacci series, we have to find the nth term. The Nth term of the XOR Fib.... Read More

How to remove the last element from an array in C++

By Tanmaay Kankaria

In this article, we are going to learn how to remove the last element from an array in C++. To delete the last element from an array we first get the array size and the array eleme.... Read More

Print a string N number of times in JavaScript

By Caushik Subramaniam

Looping statements are used to execute a sequence of statements repeatedly for N times or infinitely, rather than hardcoding those statements N times in a sequence. Therefore, Loop.... Read More

pandas.DataFrame.sort_values in Python

By Caushik Subramaniam

In Data Science, Pandas has now become a great tool for handling an extremely huge amount of data with ease like any array. It is often needed to sort data for analysis. Though ite.... Read More

How to create HTML element using JavaScript

By Caushik Subramaniam

The basic blocks of HTML are the HTML elements like, <p>Paragraph</p> <h1>Importtant Heading</h1> <ul> <li>List item</li> </ul> Most.... Read More

Catch unknown exception and print it in C++

By Rakesh

This tutorial will focus on how to handle unknown exceptions and print that in C++. We know that in programming there are many unknown exceptions that one should handle. Exception .... Read More