Posts

Showing posts from July, 2025

Insertion and delete

 [19/05, 12:15 pm] KIRAN: import java.util.Scanner; class DeleteFromArray {     public static void main(String[] args) {         Scanner r = new Scanner(System.in);         int size, i, loc;         System.out.print("Enter size of the array: ");         size = r.nextInt();         int a[] = new int[size];         System.out.print("Enter Array Elements: ");         for (i = 0; i < size; i++) {             a[i] = r.nextInt();         }         System.out.print("Enter Array location: ");         loc = r.nextInt();         for (i = loc; i < size - 1; i++) {             a[i] = a[i + 1];         }         size--;         System.out.print(...

MS EXCEL CHARTS

A. Tick (✓) the correct option. --- 1. A chart that compares proportions is: Options: a. Column Chart b. Pie Chart ✅ c. Area Chart d. Line Chart ✅ Answer: b. Pie Chart 📝 Explanation: A Pie Chart is used to show proportions or percentages of a whole. It is circular and divided into sectors, each representing a proportion of the total. It visually displays how parts make up a whole. --- 2. A chart that shows the changing trends in data: Options: a. Column Chart b. Pie Chart c. Area Chart d. Line Chart ✅ ✅ Answer: d. Line Chart 📝 Explanation: A Line Chart is ideal for showing trends over time. It uses points connected by lines to show changes in values, making it perfect for displaying data that changes continuously (like sales per month, temperatures, etc.). Here are the questions and answers from the image (Page 49 – ICSE Class 8, Charts in Excel 2019), written clearly and in a student-friendly way: --- 2. Distinguish between the column chart and bar chart. ✅ Answer: Column Chart Bar ...