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 …
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 …
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 …
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 …
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 …
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 …
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. …
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 …
SQL Practice Exercise
The following list presents a SQL Practice Exercise. The following are some of the databases. For the purpose of running queries given below you may use any one of these databases. However, you can use any other database also. Part 1 – SQL Practice Exercise Institute Database: The database has the following tables Student (enrolment_no, …
Data Structures Practice Questions
The following list provides important Data Structures Practice Questions. Write a program to implement following operation on one dimensional array (i) Insertion (ii) Deletion (iii) Traversal (iv) Reverse (v) Merge Create an application to Sort an array (menu driven) using: (i) BUBBLE SORT (ii) MERGE SORT(iii) INSERTION SORT (iv) SELECTION SORT Write a program to …