Sololearn | Introduction to Java Full Course Answer [Updated] | Certification Java Programming

preview_player
Показать описание
#26 #JavaBasics #OOP #JavaCollections #ExceptionHandling #Multithreading #IOOperations #JavaGUI
#JDBC #JavaWebDevelopment #JavaDevelopmentTools #JavaBestPractices#JavaSecurity
#JavaTesting #JavaVersionHistory #JavaInterviewQuestions #JavaTutorials #JavaCommunity

This simple, beginner-friendly Java course requires no previous coding knowledge. All you need is a mobile phone or desktop computer and 5 minutes a day! You’ll learn all about the key concepts of Java, and will be writing clear, working code right from your first lesson.

►CONTENTS
1. Basic Concepts
2. Control Flow
3. Arrays
4. Methods

Complete Course Playlist:

Contact Me On Social Media For Any Help
►Snapchat ID: tejas2803_4

MUSIC IN THIS VIDEO
Track: Sam Day - BE THE ONE [NCS Release]
Music provided by NoCopyrightSounds.

If You Like The Video Please Share With Your Friends
Like Share Subscribe :)
HAPPY CODING!
Рекомендации по теме
Комментарии
Автор

Module 1 Answer
Q.1
class Program {
public static void main
(String[] args) {
int a = 8;
int b = 4;
System.out.println(a +b);
}
}

Q.2
/* some text */

Q.3
String name = "James";
String msg = "Hello, "+name;

System.out.println(msg);

Q.4
3

Q.5
int hours = 24;
int minutes = 60;
int result = hours *minutes;
System.out.println(result);

solosolutions
Автор

The course only accepts certain codes, and apparently the one from the video was renewed and you need another one. Here's the one that worked for me:
import java.util.Scanner;
class Demo {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
long fact = 1;
if (N == 0) {
System.out.println(1);
} else {
for (int i = 1; i <= N; i++) {
fact *= i;
}
System.out.println(fact);
}
}
}

Xeon_jx
Автор

Bro factorial doesn't work it says the test 1 is incorrect but im pretty sure it's not since i copied your code

EldrieYancyCIcoy
Автор

Sir? Why FACTORIAL in java can't work?

boipti
Автор

Why is the Module 1 Quiz not in the video?

akuncocotto
Автор

is there any answer in module 1 i got stuck in that question

Master_Noobiz