๐ŸŒ
KnowledgeBoat
knowledgeboat.com โ€บ learn โ€บ icse-computer-applications-bluej-class-10 โ€บ lecture โ€บ YvOwl โ€บ java-declaring-double-dimensional-array
Double Dimensional Array: Declaration, Initialization and Matrix Form | Video Tutorials for ICSE Computer Applications with BlueJ | KnowledgeBoat
In this program, we first declare and initialize arr as a Double Dimensional Array of type int having dimensions as 3 x 2. After that we use two nested for loops to print the elements of arr in matrix form.
Published ย  February 24, 2020
๐ŸŒ
Google Sites
sites.google.com โ€บ view โ€บ manobal-sir โ€บ icse-class-10 โ€บ chapter-3-arrays
Manobal sir - Chapter 3: Arrays
A Class Teacher wants to keep the ... (DDA) as M[40][5]. When the teacher enters the name of a student as an input, the program must display the name, marks obtained in the 5 subjects and the total....
๐ŸŒ
Wordpress
icseprograms.wordpress.com โ€บ tag โ€บ 2d-array
Tag: 2d array - Java Programs -ISC & ICSE
Assume that the two matrices have the same dimension. Class name : EqMat Data members: a[][] : to store integer elements m, n : to store the number of rows and columns Member functions: EqMat(int mm, int nn) : initialize the data members m=mm and n=nn void readarray() : to enter the elements in the array int check(EqMat P, EqMat Q) : checks if the parameterized objects P and Q are equal and returns 1 if true,otherwise returns 0.
๐ŸŒ
Scribd
scribd.com โ€บ document โ€บ 627002537 โ€บ Icse-x-Arrays
ICSE Class 10 Java Arrays Guide | PDF | Integer (Computer Science) | Variable (Computer Science)
We know that break is a keyword and is used to terminate the loop or even program, depends on where we placed it. Here we have used break inside the if condition to Sumit Sir Chapter-3 ICSE-X Arrays (Single Dimensional & Double Dimensional) terminate the loop because as we find the item in the array, it is unnecessary to go through the whole loop.
Rating: 4.6 โ€‹ - โ€‹ 11 votes
๐ŸŒ
YouTube
youtube.com โ€บ watch
Double Dimensional Array in Java | 2D Array Computer Tricks | Computer Class 10 11 12 | Prateik Sir - YouTube
Learn how to work with double dimensional arrays in Java with expert tips from Prateik Sir. Perfect for ICSE Computer Applications students in classes 10, 11...
Published ย  March 11, 2024
๐ŸŒ
Baibhavcomputer
baibhavcomputer.com โ€บ wp-content โ€บ uploads โ€บ 2021 โ€บ 06 โ€บ ARRAY-PROGRAM_SOLVED_2020_ONLINE-converted.pdf pdf
1 ICSE COMPUTER APLICATION CHAPTER:: ARRAY SOLVED PROGRAM Paper 1
ICSE COMPUTER APLICATION ยท CHAPTER:: ARRAY ยท SOLVED PROGRAM ยท Paper 1 ยท Program 1.Write a program to store 10 different numbers in a single Dimensional ยท Array(SDA) I. To display all the number in reverse order ยท ii. To display the sum and average of all the numbers ยท import java.util.*; public class ...
๐ŸŒ
Bluej for ICSE
bluejforicse.wordpress.com โ€บ arrays
Arrays - Bluej for ICSE - WordPress.com
April 25, 2019 - Declaring an Integer data type array : int m[] = {21,85,48,54,78,96,321,54,47,87}; Declaring a Double data type array : double m[] = {13.0,322.15,85.1,63.12,48.12,78.0,48.1,65.12,98.2};
๐ŸŒ
KnowledgeBoat
knowledgeboat.com โ€บ learn โ€บ class-10-logix-icse-computer-applications-java-bluej โ€บ solutions โ€บ 2ll16 โ€บ arrays
Chapter 14: Arrays | Solutions for Class 10 ICSE Logix Kips Computer Applications with BlueJ Java | KnowledgeBoat
The weekly hours of all employees of ABC Consulting Ltd. are stored in a two-dimensional array. Each row records an employee's 7-day work hours with seven columns. For example, the following array stores the work hours of five employees. Write a program that displays employees and their total hours in decreasing order of the total hours. ... import java.util.Scanner; public class KboatABCConsulting { public static void main(String args[]) { Scanner in = new Scanner(System.in); System.out.print("Enter total number of employees: "); int numEmps = in.nextInt(); int workHours[][] = new int[numEmps
๐ŸŒ
Baibhavcomputer
baibhavcomputer.com โ€บ wp-content โ€บ uploads โ€บ 2021 โ€บ 06 โ€บ Array-solved-programs-part2-converted.pdf pdf
ICSE COMPUTER APLICATION CHAPTER:: ARRAY SOLVED PROGRAM Paper 2
Maths and Science of her class having 40 students. Write a program to input ยท marks in Eng, Science and Maths by using three single dimensional arrays. ... Program 6. Write a program in Java to accept 20 numbers in a single ยท dimensional array arr[20]. Transfer and store all the even numbers in an ยท array even[ ] and all the odd numbers in another array odd[ ]. Finally, print the elements of both the arrays. ... Program 7. Create an array of size 10...
Find elsewhere
๐ŸŒ
Scribd
scribd.com โ€บ doc โ€บ 289715499 โ€บ PROJ-1-DDA
Class 10 ICSE: 2D Array Program | PDF | Matrix (Mathematics) | Linear Algebra
The document describes a program that accepts a 5x5 matrix as input and prints the four triangles formed by the elements in the corners of the matrix. It contains the program code to print the original matrix and then each of the four triangles ...
๐ŸŒ
YouTube
youtube.com โ€บ watch
Array in Java | All Concepts + Programs | 1D & 2D Arrays ...
To learn more, please visit the YouTube Help Center: https://www.youtube.com/help
๐ŸŒ
Blogger
sanjayshukla2015.blogspot.com โ€บ 2015 โ€บ 09 โ€บ array-theory-programs-and-programs-for.html
ICSE COMPUTER APPLICATION: ARRAY THEORY , PROGRAMS AND PROGRAMS FOR PRACTICE
Ans:- One Dimension:- A list of fixed number of homogeneous data elements. Double Dimension:- An array in which each element itself an array.
๐ŸŒ
ICSE Board
icseboards.com โ€บ home โ€บ arrays solutions icse class 10 computer applications
Arrays Solutions ICSE Class 10 Computer Applications
December 29, 2021 - How do you determine the size of a two dimensional array? Ans. No. Of elements in a 2D array is the generally the product of the no. Of rows and no. Of columns. 14. State the advantages and disadvantages of using arrays. Ans. Advantages i. Gives a concise code as declaration, allocation of space and Initialisation can be done in a single line. ii. Java arrays are dynamic, unlike other languages like C, C++. iii.
๐ŸŒ
Scribd
scribd.com โ€บ document โ€บ 476123420 โ€บ ARRAY
ICSE Class 10 Array Programming Guide | PDF | Array Data Structure | Matrix (Mathematics)
The syntax of declaring a Double Dimensional Array is: <type> <array-variable>[][] = new <type>[<rows>][<columns>]; OR <type> [][] <array-variable> = new <type>[<rows>][<columns>]; ICSE Class 10 Java Arrays Guide ยท
Rating: 5 โ€‹ - โ€‹ 1 votes
๐ŸŒ
Shaalaa
shaalaa.com โ€บ textbook-solutions โ€บ c โ€บ avichal-solutions-computer-applications-english-class-10-icse-chapter-3-arrays-single-dimensional-and-double-dimensional_8223
Avichal solutions for Computer Applications [English] Class 10 ICSE chapter 3 - Arrays (Single Dimensional and Double Dimensional) [Latest edition] | Shaalaa.com
Concepts covered in Computer Applications [English] Class 10 ICSE chapter 3 Arrays (Single Dimensional and Double Dimensional) are Using array elements, Basic Operations on Arrays, Need of Using an Array, Single Dimensional Array, Double Dimensional Array, Introduction of Arrays (Single Dimensional and Double Dimensional), Difference between Single Dimensional Array and Double Dimensional Array.
๐ŸŒ
YouTube
youtube.com โ€บ playlist
ICSE 10th, 11th & 12th ISC (2-D Array) Double dimensional Array - YouTube
In this playlist, I will upload videos regarding isc 12th computer Programing.
๐ŸŒ
Amitabhsirkiclasses
amitabhsirkiclasses.org.in โ€บ materials โ€บ icse โ€บ jarrays.htm
ICSE Bluej Array Programs - amitabh sir ki classes
Portal for ICSE India, ICSE Guess Sample Questions Papers, ICSE Tutors, ICSE Books, ICSE Schools in India, ICSE Results, Teachers and Tutors Job, Computer Application, Computer Science, ICSE ISC CBSE, Computer Science, Books, Questions, Online Tutorials, Sawal, Ask, Questions, ICSE SAMPLE PAPERS 2011, ISC SAMPLE PAPERS, ICSE GUESS PAPERS, ISC GUESS PAPERS
๐ŸŒ
Reddit
reddit.com โ€บ r/icse โ€บ all 15 program
r/ICSE on Reddit: All 15 program
October 26, 2024 -
  1. Write a program in Java to accept 10 integers into a one-dimensional array. Sort the array using Selection Sort and display the sorted array. answer

import java.util.Scanner;

public class SortArray { private int[] arr = new int[10];

// Method to accept values into the array
public void acceptValues() {
    Scanner sc = new Scanner(System.in);
    System.out.println("Enter 10 integers:");
    for (int i = 0; i < arr.length; i++) {
        arr[i] = sc.nextInt();
    }
}

// Method to perform selection sort
public void selectionSort() {
    int n = arr.length;
    for (int i = 0; i < n - 1; i++) {
        int minIndex = i;
        for (int j = i + 1; j < n; j++) {
            if (arr[j] < arr[minIndex]) {
                minIndex = j;
            }
        }
        // Swap the found minimum element with the first element
        int temp = arr[minIndex];
        arr[minIndex] = arr[i];
        arr[i] = temp;
    }
}

// Method to display the sorted array
public void displaySortedArray() {
    System.out.println("Sorted Array in Ascending Order:");
    for (int i : arr) {
        System.out.print(i + " ");
    }
    System.out.println();
}

public static void main(String[] args) {
    SortArray obj = new SortArray();
    obj.acceptValues();
    obj.selectionSort();
    obj.displaySortedArray();
}

}

2. Write a Java program to accept 9 integers Into a 3x3 array. Check whether the array is a special array where the sum of diagonal elements is equal to the sum of the non-diagonal elements. answer import java.util.Scanner;

public class SpecialArray { private int[][] arr = new int[3][3];

// Method to accept values into the array
public void acceptValues() {
    Scanner sc = new Scanner(System.in);
    System.out.println("Enter 9 integers for a 3x3 array:");
    for (int i = 0; i < 3; i++) {
        for (int j = 0; j < 3; j++) {
            arr[i][j] = sc.nextInt();
        }
    }
}

// Method to check if it is a special array
public void checkSpecialArray() {
    int diagonalSum = arr[0][0] + arr[1][1] + arr[2][2];
    int totalSum = 0;
    for (int i = 0; i < 3; i++) {
        for (int j = 0; j < 3; j++) {
            totalSum += arr[i][j];
        }
    }

    if (diagonalSum == (totalSum - diagonalSum)) {
        System.out.println("It is a special array.");
    } else {
        System.out.println("It is not a special array.");
    }
}

public static void main(String[] args) {
    SpecialArray obj = new SpecialArray();
    obj.acceptValues();
    obj.checkSpecialArray();
}

}

3. Design a class Student in Java to store the name, age, marks, and stream of a student. Implement methods to accept and display the student details. answer import java.util.Scanner;

public class Student { // Data members String name; int age; int marks; String stream;

// Method to accept data
public void acceptData() {
    Scanner sc = new Scanner(System.in);
    System.out.print("Enter name: ");
    name = sc.nextLine();
    System.out.print("Enter age: ");
    age = sc.nextInt();
    System.out.print("Enter marks: ");
    marks = sc.nextInt();
    sc.nextLine();  // Consume newline
    System.out.print("Enter stream: ");
    stream = sc.nextLine();
}

// Method to display data
public void displayData() {
    System.out.println("Name: " + name);
    System.out.println("Age: " + age);
    System.out.println("Marks: " + marks);
    System.out.println("Stream: " + stream);
}

public static void main(String[] args) {
    Student student = new Student();
    student.acceptData();
    student.displayData();
}

}

4. Write a Java program to accept 25 integers into an array. Input a value from the user and search for the value in the array, displaying its position. If the value is not found, display an appropriate message. answer import java.util.Scanner;

public class SearchValue { private int[] arr = new int[25];

// Method to accept values into the array
public void acceptValues() {
    Scanner sc = new Scanner(System.in);
    System.out.println("Enter 25 integers:");
    for (int i = 0; i < arr.length; i++) {
        arr[i] = sc.nextInt();
    }
}

// Method to search for a value and display position
public void searchValue(int key) {
    boolean found = false;
    for (int i = 0; i < arr.length; i++) {
        if (arr[i] == key) {
            System.out.println("Found " + key + " at position: " + (i + 1));
            found = true;
            break;
        }
    }
    if (!found) {
        System.out.println("Value not found in the array.");
    }
}

public static void main(String[] args) {
    SearchValue obj = new SearchValue();
    obj.acceptValues();
    Scanner sc = new Scanner(System.in);
    System.out.print("Enter the value to search: ");
    int key = sc.nextInt();
    obj.searchValue(key);
}

}

5. Write a Java program to:

  • Print Floyd's Triangle for a given number of rows.

  • Display the following pattern for a given number of rows:

    I I I C S E I I I C S E

answer import java.util.Scanner;

public class Patterns { // Method to print Floyd's Triangle public void floydsTriangle(int n) { int num = 1; for (int i = 1; i <= n; i++) { for (int j = 1; j <= i; j++) { System.out.print(num + " "); num++; } System.out.println(); } }

// Method to display the pattern
public void displayPattern(int n) {
    for (int i = 1; i <= n; i++) {
        for (int j = 1; j <= i; j++) {
            System.out.print("I ");
        }
        System.out.println("C S E");
    }
}

public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    Patterns obj = new Patterns();

    System.out.println("Menu:");
    System.out.println("1. Print Floyd's Triangle");
    System.out.println("2. Display Pattern");
    System.out.print("Enter your choice: ");
    int choice = sc.nextInt();

    switch (choice) {
        case 1:
            System.out.print("Enter the number of rows: ");
            int rows = sc.nextInt();
            obj.floydsTriangle(rows);
            break;

        case 2:
            System.out.print("Enter the number of rows for the pattern: ");
            int n = sc.nextInt();
            obj.displayPattern(n);
            break;

        default:
            System.out.println("Invalid choice.");
    }
}

}

6. Write a Java program to accept a country name from the user and display the corresponding Wonder of the World from a predefined list. If the country is not in the list, display an appropriate message. answer import java.util.Scanner;

public class SevenWonders { // List of wonders and corresponding countries String[] wonders = {"CHRIST THE REDEEMER", "TAJ MAHAL", "GREAT WALL OF CHINA", "MACHU PICCHU", "PETRA", "COLOSSEUM"}; String[] countries = {"BRAZIL", "INDIA", "CHINA", "PERU", "JORDAN", "ITALY"};

// Method to find the wonder by country
public void findWonder(String country) {
    boolean found = false;
    for (int i = 0; i < countries.length; i++) {
        if (countries[i].equalsIgnoreCase(country)) {
            System.out.println("Wonder: " + wonders[i] + ", Country: " + countries[i]);
            found = true;
            break;
        }
    }
    if (!found) {
        System.out.println("Sorry, wonder not found for the given country.");
    }
}

public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    SevenWonders obj = new SevenWonders();
    System.out.print("Enter a country name: ");
    String country = sc.nextLine();
    obj.findWonder(country);
}

}

7. Design a class Movie in Java with attributes year, title, and rating. Implement methods to accept and display movie details. answerimport java.util.Scanner;

public class Movie { int year; String title; double rating;

// Default constructor
public Movie() {
    year = 0;
    title = "";
    rating = 0.0;
}

// Method to accept movie details
public void acceptDetails() {
    Scanner sc = new Scanner(System.in);
    System.out.print("Enter movie title: ");
    title = sc.nextLine();
    System.out.print("Enter year of release: ");
    year = sc.nextInt();
    System.out.print("Enter movie rating (1.0 to 5.0): ");
    rating = sc.nextDouble();
}

// Method to display movie details
public void displayDetails() {
    System.out.println("Movie Title: " + title);
    System.out.println("Year of Release: " + year);
    System.out.println("Rating: " + rating);
}

public static void main(String[] args) {
    Movie obj = new Movie();
    obj.acceptDetails();
    obj.displayDetails();
}

}

8. Write a Java program to accept the name and salary of 3 employees. Display the details of the employee with the highest salary. answer import java.util.Scanner;

public class Employee { String name; int salary;

// Default constructor
public Employee() {
    name = "";
    salary = 0;
}

// Method to accept employee details
public void acceptDetails() {
    Scanner sc = new Scanner(System.in);
    System.out.print("Enter employee name: ");
    name = sc.nextLine();
    System.out.print("Enter employee salary: ");
    salary = sc.nextInt();
}

// Method to find the employee with the highest salary
public static void findHighest(Employee[] empArray) {
    Employee highest = empArray[0];
    for (Employee emp : empArray) {
        if (emp.salary > highest.salary) {
            highest = emp;
        }
    }
    System.out.println("Employee with the highest salary: " + highest.name + " (" + highest.salary + ")");
}

public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    Employee[] employees = new Employee[3];

    // Accepting details of 3 employees
    for (int i = 0; i < employees.length; i++) {
        employees[i] = new Employee();
        System.out.println("Enter details for employee " + (i + 1) + ":");
        employees[i].acceptDetails();
    }

    // Find and display the employee with the highest salary
    findHighest(employees);
}

}

9. The weekly hours of all employees of ABC Consulting Ltd. are stored in a two-dimensional array. Each row records an employee's 7-day work hours with seven columns. For example, the following array stores the work hours of five employees. Write a program that displays employees and their total hours in decreasing order of the total hours.

S. No. Mon Tue Wed Thu Fri Sat Sun
Employee 0 8 5 1 11 1 0 0
Employee 1 11 6 0 2 2 2 4
Employee 2 4 5 4 10 4 3 1
Employee 3 4 7 3 12 6 2 0
Employee 4 3 8 3 2 4 4 0
answer
import java.util.Arrays;
import java.util.Comparator;

public class EmployeeHours { public static void main(String[] args) { int[][] hours = { {8, 5, 1, 11, 1, 0, 0}, // Employee 0 {11, 6, 0, 2, 2, 2, 4}, // Employee 1 {4, 5, 4, 10, 4, 3, 1}, // Employee 2 {4, 7, 3, 12, 6, 2, 0}, // Employee 3 {3, 8, 3, 2, 4, 4, 0} // Employee 4 };

    int[][] totalHours = new int[hours.length][2];
    
    // Calculate total hours for each employee
    for (int i = 0; i < hours.length; i++) {
        int sum = 0;
        for (int j = 0; j < hours[i].length; j++) {
            sum += hours[i][j];
        }
        totalHours[i][0] = i;   // Employee number
        totalHours[i][1] = sum; // Total hours
    }

    // Sort by total hours in decreasing order
    Arrays.sort(totalHours, (a, b) -> Integer.compare(b[1], a[1]));

    // Display employees and their total hours
    System.out.println("Employee\tTotal Hours");
    for (int i = 0; i < totalHours.length; i++) {
        System.out.println("Employee " + totalHours[i][0] + "\t\t" + totalHours[i][1]);
    }
}

}


10. Write a program that reads a 4 x 5 two-dimensional array and then prints the column sums of the array along with the array printed in matrix form. answer import java.util.Scanner;

public class MatrixColumnSum { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[][] matrix = new int[4][5];

    // Reading the matrix
    System.out.println("Enter the elements of the 4x5 matrix:");
    for (int i = 0; i < 4; i++) {
        for (int j = 0; j < 5; j++) {
            matrix[i][j] = sc.nextInt();
        }
    }

    // Printing the matrix
    System.out.println("Matrix:");
    for (int i = 0; i < 4; i++) {
        for (int j = 0; j < 5; j++) {
            System.out.print(matrix[i][j] + "\t");
        }
        System.out.println();
    }

    // Calculating and printing column sums
    System.out.println("Column sums:");
    for (int j = 0; j < 5; j++) {
        int sum = 0;
        for (int i = 0; i < 4; i++) {
            sum += matrix[i][j];
        }
        System.out.println("Column " + (j + 1) + ": " + sum);
    }
}

}


11. A palindromic prime is a prime number and also palindromic. For example, 131, 313, and 757 are prime numbers and also palindromic prime numbers. Write a program that displays the first 100 palindromic prime numbers. answer public class PalindromicPrime { public static boolean isPrime(int num) { if (num < 2) return false; for (int i = 2; i <= Math.sqrt(num); i++) { if (num % i == 0) return false; } return true; }

public static boolean isPalindrome(int num) {
    String str = Integer.toString(num);
    return str.equals(new StringBuilder(str).reverse().toString());
}

public static void main(String[] args) {
    int count = 0;
    int num = 2;

    System.out.println("First 100 Palindromic Prime Numbers:");
    while (count < 100) {
        if (isPrime(num) && isPalindrome(num)) {
            System.out.print(num + " ");
            count++;
        }
        num++;
    }
}

}


12. Write a program in Java to read a number, remove all zeros from it, and display the new number. For example:

Sample Input: 45407703
Sample Output: 454773 answer import java.util.Scanner;

public class RemoveZeros { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.print("Enter a number: "); String number = sc.nextLine();

    String result = number.replace("0", "");
    System.out.println("New number: " + result);
}

}


13. Define a class to accept values in an integer array of size 10 and perform a binary search on it. answer import java.util.Arrays; import java.util.Scanner;

public class BinarySearchArray { public static int binarySearch(int[] arr, int key) { int low = 0, high = arr.length - 1; while (low <= high) { int mid = (low + high) / 2; if (arr[mid] == key) return mid; else if (arr[mid] < key) low = mid + 1; else high = mid - 1; } return -1; }

public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int[] arr = new int[10];

    // Accept array values
    System.out.println("Enter 10 integers:");
    for (int i = 0; i < arr.length; i++) {
        arr[i] = sc.nextInt();
    }

    // Sort the array
    Arrays.sort(arr);

    // Search for a number
    System.out.print("Enter the number to search: ");
    int key = sc.nextInt();
    int index = binarySearch(arr, key);

    if (index != -1) {
        System.out.println("Number found at position: " + (index + 1));
    } else {
        System.out.println("Number not found.");
    }
}

}


14. Write a program to input a sentence and convert it into uppercase and count and display the total number of words starting with the letter 'A'.

Example:
Sample Input: ADVANCEMENT AND APPLICATION OF INFORMATION TECHNOLOGY ARE EVER CHANGING.
Sample Output: Total number of words starting with letter 'A' = 4. answer import java.util.Scanner;

public class CountWordsWithA { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.print("Enter a sentence: "); String sentence = sc.nextLine().toUpperCase();

    String[] words = sentence.split(" ");
    int count = 0;
    
    for (String word : words) {
        if (word.startsWith("A")) {
            count++;
        }
    }

    System.out.println("Total number of words starting with 'A': " + count);
}

}


15. Define a class to accept values in an integer array of size 10. Sort them in ascending order using the bubble sort technique. Display the sorted array. answer import java.util.Scanner;

public class BubbleSortArray { public static void bubbleSort(int[] arr) { int n = arr.length; for (int i = 0; i < n - 1; i++) { for (int j = 0; j < n - i - 1; j++) { if (arr[j] > arr[j + 1]) { // Swap arr[j] and arr[j+1] int temp = arr[j]; arr[j] = arr[j + 1]; arr[j + 1] = temp; } } } }

public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int[] arr = new int[10];

    // Accept array values
    System.out.println("Enter 10 integers:");
    for (int i = 0; i < arr.length; i++) {
        arr[i] = sc.nextInt();
    }

    // Sort the array
    bubbleSort(arr);

    // Display sorted array
    System.out.println("Sorted array:");
    for (int i : arr) {
        System.out.print(i + " ");
    }
}

}


๐ŸŒ
KnowledgeBoat
knowledgeboat.com โ€บ learn โ€บ icse-computer-applications-bluej-class-10 โ€บ lecture โ€บ ReORD โ€บ java-row-wise-column-wise-sum-double-dimensional-array
Finding Row-Wise Sum, Column-Wise Sum and Sum of All Elements of Double Dimensional Array | Video Tutorials for ICSE Computer Applications with BlueJ | KnowledgeBoat
In this lesson we will learn about computing row-wise sum, column-wise sum and sum of all elements of a Double Dimensional array. We will walkthrough a Java program in BlueJ which will show us how we can find the sum of each row, each column and sum of all elements of a 2D array.
Published ย  February 24, 2020
๐ŸŒ
Wordpress
icseprograms.wordpress.com โ€บ 2018 โ€บ 10 โ€บ 27 โ€บ icse-computer-applications-october-2018
ICSE-Computer Applications- October 2018 โ€“ Java Programs -ISC & ICSE
October 27, 2018 - 1) Write a program to initialize the given data in an array and find the minimum and maximum values along with the sum of the given elements. [5] ... 2) Write a program to accept 15 integers from the keyboard, assuming that no integer entered ...