Here is a nice playlist for Spring Boot beginners videos from Java Brains – https://www.youtube.com/playlist?list=PLqq-6Pq4lTTbx8p2oCgcAQGQyqN8XeA1x
Basic Java knowledge refreshed using Sololearn
Find the first and second largest number in a series – without using arrays or functions
This is just a revision of my school memories. Language used is Java.
import java.util.Scanner;
public class testmain {
public static void main(String[] args) {
int large = 0; // there is a possible logic error, ignore
int slarge = 0; // there is a possible logic error, ignore
Scanner scanner = new Scanner(System.in);
System.out.println("Enter the number of elements");
int N = scanner.nextInt();
for (int c = 0;c<N;c++) {
int num = scanner.nextInt();
if (num > large) {
large = num;
}
if (num != large && num > slarge) {
slarge = num;
}
}
System.out.println(
"Largest = " + large +
"\nSecond Largest = " + slarge
);
}
}
Marketing Foundations by Great Learning Academy
Completed a marketing course.
Source: https://olympus1.mygreatlearning.com/course_certificate/RTGZQXSU
Links: Two good learning resources
Haven’t tried their paid courses but free courses are excellent.
- My Great Learning Academy – https://www.mygreatlearning.com/academy
- Solo Learn – https://www.sololearn.com/
WordPronounce : A chrome extension to learn pronunciation on the go
I just coded this for my personal use, but thought someone else also might be interested in – https://github.com/ninethsense/WordPronounce