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 -GUI The projects include: Digital Clock Temperature Converter Height Converter …

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 does not end there, I will help you learn all …

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 install jQuery UI Exactly what snippets you need to copy …

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 #1 FREE Page Builder – Elementor LEARN HOW TO USE …

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         printf(“%.2lf is the largest number.”, n3);     return 0; }