-
How to Deploy NodeJS App in GoDaddy Shared Hosting
This post describes the exact steps to deploy a NodeJS app on GoDaddy shared hosting. Log in to GoDaddy account and click Manage Hosting In settings, click server and make…
-
Reporting Research Findings – Research Methodologies – Notes
Reporting research findings is the last phase of any type of research. It’s important to know how are you going to report your research findings? because there maybe some restrictions…
-
Topic Selection – Research Methodologies – Notes
Topic selection is the most tricky part of the research and is said to be the mother of all successful proposals. Following are some tips for topic selection. Topic Selection:…
-
Polymorphism in Java – OOP – Code Example
In previous posts we have discussed many important topics of object oriented programming like classes, objects, inheritance etc. In this post we will discuss polymorphism in Java which is another important…
-
IS-A and HAS-A Relationships in Java – Code Example
Code reuse-ability is the fundamental objective of object oriented programming. To achieve code reuse-ability objective, we use IS-A, HAS-A relationships. IS-A relationship is another name of inheritance or we can…
-
Code Example To Generate Word Cloud Using R – Data Analysis
Word cloud help us to understand and visualize important keywords in given textual data sets. R is a powerful programming language used for exploration and visualization of data. Following code…
-
Useful R Packages for Data Analysis
R is a powerful programming language used for exploring and analyzing data effectively. R provides many built in functions for data analysis. Furthermore there are many other R packages for…
-
Useful R Functions – Exploratory Data Analysis
R is a programming language used for statistical analysis and exploratory data analysis projects. According to the official website: R is a language and environment for statistical computing and graphics.…
-
Inheritance in Java OOP – Code Example 2
In previous post we learned about inheritance in Java programming by using simple code example. In this post we will consider another code example of inheritance in Java. In previous…
-
Inheritance in Java OOP – Code Example 1
In our previous post we learned how to create classes and objects by using code example. In this post we will learn inheritance which is another important object oriented programming (OOP)…
-
Classes and Objects in Java Programming – Code Example
In this post we will learn (java syntax) what are classes and objects in Java programming. Classes and objects are fundamental object oriented programming concepts. In previous post we discussed…