Learn to code in Java from Scratch(free udemy course)

Requirements You should be comfortable using a computer You should be able to download and install recomended software Willingness to have a go at writing some code. Description You will learn about: Primitive Data Types Basic Data types Variables Arrays We will also build some projects with graphical user interfaces …

Read more

How to use Facebook 2016(free Udemy Course)

Requirements Student should possess some basic knowledge of English . Description In the Facebook for beginners course, I take you by hand and help you learn everything from signing up for a Facebook account to how you can properly adjust your privacy and then posting your first status update. It …

Read more

Learn to Use jQuery UI Widgets(free Udemy Course)

Requirements Knowledge of HTML and CSS Description Are you a designer or “skinner” that wants to integrate things like tabs, accordion, or a datepicker into your UI but *don’t* want to learn jQuery or javascript? Then this is the course for you!! This course will guide you through: How to …

Read more

How To Make a WordPress Website 2018 – Elementor Page Builder

Requirements No Experience Required. Complete Beginners Welcome! What Will I Learn From This Course? Setting up your domain and hosting Create Modern, beautiful, and STUNNING Websites! Create Pages With Elementor and WordPress Create Pre-Made layouts for clients Master The Elementor Page Builder and even start your own business! Master The …

Read more

C Program to Find the Largest Number Among Three Numbers

#include <stdio.h> int main() {     double n1, n2, n3;     printf(“Enter three numbers: “);     scanf(“%lf %lf %lf”, &n1, &n2, &n3);     if( n1>=n2 && n1>=n3)         printf(“%.2lf is the largest number.”, n1);     else if (n2>=n1 && n2>=n3)         printf(“%.2lf is the largest number.”, n2);     else         …

Read more

C Program to Check Whether a Number is Even or Odd

#include <stdio.h> int main() { int n; printf(“Enter an integer: “); scanf(“%d”, &n); // Number will be even if the number is perfectly divisible by 2 if(number % 2 == 0) printf(“%d is even number.”,n); else printf(“%d is odd Number.”,n); return 0; }