0% found this document useful (0 votes)
7 views3 pages

Java Multiplication Table Assignment

The document outlines the details of a Java programming course offered by NPTEL, specifically focusing on a programming assignment due on August 7, 2025. The assignment requires students to write a Java program that prints the multiplication table of a given number up to 4, with strict formatting requirements. It also includes information about the submission status and sample solutions provided by the instructor.

Uploaded by

muthu
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views3 pages

Java Multiplication Table Assignment

The document outlines the details of a Java programming course offered by NPTEL, specifically focusing on a programming assignment due on August 7, 2025. The assignment requires students to write a Java program that prints the multiplication table of a given number up to 4, with strict formatting requirements. It also includes information about the submission status and sample solutions provided by the instructor.

Uploaded by

muthu
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

22/10/2025, 19:07 Programming In Java - Course

([Link] ([Link]

muthupec77@[Link] 

NPTEL ([Link] » Programming In Java (course)

If already Week 01 : Programming Assignment 3


registered, click
Due on 2025-08-07, 23:59 IST
to check your
payment status Write a Java program to print the multiplication table of a given number up to 4.

NOTE:
Course Print EXACTLY as shown in the sample output.
outline
DO NOT MISS a single space otherwise you will not be scored.
About (Remember to match the output given exactly, including the spaces and new
NPTEL () lines)
(passed with presentation error means you will get full marks)
How does an
NPTEL
online Private Test cases used for
Input Expected Output Actual Output Status
course evaluation
work? ()
10 x 1 =
10 x 1 = 10\n
Week 0 : () 10\n 10 x 2 =
Test Case 1 10 10 x 2 = 20\n 20\n Passed
Week 1 : () 10 x 3 = 30\n 10 x 3 =
10 x 4 = 40 30\n
Lecture 01 :
10 x 4 = 40
Introduction
(unit?
unit=18&lesso
The due date for submitting this assignment has passed.
n=19)
1 out of 1 tests passed.
Lecture 02 : You scored 100.0/100.
Java
Programming Assignment submitted on 2025-07-21, 14:36 IST
Steps (unit? Your last recorded submission was :
unit=18&lesso
1 import [Link];
n=20) 2 ​
3 public class W01_P3 {

[Link] 1/3
22/10/2025, 19:07 Programming In Java - Course

Lecture 03 :
4 public static void main(String[] args) {
5 Scanner in = new Scanner([Link]);
Java Tools and 6 int number = [Link]();
Resources 7 // Print the multiplication table of number up to 5
8 for (int i = 1; i < 5; i++)
(unit?
9 {
unit=18&lesso 10 if(i<4)
n=21) 11 {
12 [Link](number + " x " + i + " = " + (number * i));
Lecture 04 :
13 }
14 else
Demonstration 15 {
-I (unit? 16 [Link](number + " x " + i + " = " + (number * i));
unit=18&lesso
17 }
18 }
n=22) 19 [Link]();
20 }
Lecture 05 : 21 }
Java Applet Sample solutions (Provided by instructor)
Programming 1 import [Link];
(unit? 2 ​
unit=18&lesso 3 public class W01_P3 {
4 public static void main(String[] args) {
n=23) 5 Scanner in = new Scanner([Link]);
6 int number = [Link]();
Week 01 : 7 // Print the multiplication table
Programming 8 for (int i = 1; i < 5; i++) {
9 [Link]("%d x %d = %d\n", number, i, number * i);
Assignment 1 10 }
(/noc25_cs110 11 [Link]();
/progassignme 12 }
13 }
nt?name=568)

Week 01 :
Programming
Assignment 2
(/noc25_cs110
/progassignme
nt?name=570)

Week 01 :
Programming
Assignment 3
(/noc25_cs11
0/progassign
ment?
name=571)

Week 01 :
Programming
Assignment 4
(/noc25_cs110
/progassignme
nt?name=572)

Week 01 :
Programming
Assignment 5
(/noc25_cs110
/progassignme
nt?name=573)

Quiz: Week
1:Assignment
1

[Link] 2/3
22/10/2025, 19:07 Programming In Java - Course

(assessment?
name=567)

Week 01 :
Assignment
Solution (unit?
unit=18&lesso
n=430)

Feedback
Form (unit?
unit=18&lesso
n=24)

Week 2 : ()

Week 3 : ()

Week 4 : ()

Week 5 : ()

Week 6 : ()

Week 7 : ()

Week 8 : ()

Week 9 : ()

Week 10 : ()

Week 11 : ()

Week 12 : ()

DOWNLOAD
VIDEOS ()

Books ()

Text
Transcripts
()

[Link] 3/3

You might also like