Understanding NodeJS With Examples

In this article on Understanding NodeJS With Examples, I will explain this server-side JavaScript runtime environment along with some examples. To begin with, let us first discuss the features of the node.js framework. Basically, Node.js is built on chrome’s V8 engine. It is open-source. It is a back-end JavaScript runtime environment and can execute JavaScript outside of the browser. Since […]

Getting Started with Solidity

In this article on Getting Started with Solidity, I will explain the Solidity programming language to create smart contracts. Basically, Solidity is a high-level, contract-oriented programming language that we use to write smart contracts on the Ethereum blockchain. In order to start with Solidity, follow these steps. Steps for Getting Started with Solidity At first, familiarize yourself with the basics […]

Data Science Applications in Python

The following list presents some of the Data Science Applications in Python. Important Data Science Applications in Python and Their Solutions Since, a data science application rely on analyzing the data, first of all we need to extract it from a data source. Furthermore, it could be a CSV file. So, create a python program to extract the data from […]

Java Code Examples

The following list presents some of the Java Code Examples. Basic Java Code Examples In order to find area of a rectangle, create a class Rectangle with data members length and breadth and member functions getDimensions() for reading input and findArea() to display the output. Write a program to demonstrate the use of method overloading to calculate area of square, […]

C++ Practice Exercise

The following list presents a C++ Practice Exercise. Solve the Following C++ Practice Exercise Write a program to implement the ‘Inline function’ Implement call by reference and return by reference using class in a C++ program. [Hint. Assume necessary functions] Write a program to implement the friend function by taking some real-life examples Implement ‘Function Overloading’ in C++. Write a […]

Beginners Code Examples in Python

The following list provides some of the Beginners Code Examples in Python. List of Beginners Code Examples in Python Write a program to demonstrate the use of different operators in python. Create a Function_Prime_Sum of all the primes in a ranges. Write a Python program to perform the string operations. Also, create an interactive application for the same. Create different […]

Most Popular Topics for a Web Design Competition

Here I present the Most Popular Topics for a Web Design Competition. Indeed, a website design competition can bring fresh thinking and out of the box ideas. It encourages young participants to show their creativity and innovative solutions and help in their career advancements. Furthermore, these types of contests help web development firms to hire best talents. Some of the […]

Learning Simple Queries in SQL

In this article on Learning Simple Queries in SQL, I will explain how to perform simple selection and projection queries on a database table in SQL. To begin with, let us create a table Course in the Institute database that we have created earlier. The following create command creates the Course table. As a result of the execution of the […]

Data Definition Language Commands in SQL

This article describes Data Definition Language Commands in SQL. Database Schema In order to start working with a database, first of all we need to decide the structure and content of the database. In other words, we need to find out the number of tables in the database, their structure, and relationship among these tables. Furthermore, for each table we […]

VB Dot NET Programs

Given below is a list of VB Dot NET Programs Create console application showing the use of conditional constructs – if, if-else, if-else if-else, nested if, select case. Create a console application showing the use of loops – Do….While loop, Do Until … Loop, While… Wend, For …  Next, For Each … Next. Create a simple windows application showing the […]