Trending ▼ ResFinder | |||
ResPaper - Excel in Your Studies |
Trending Now |
ICSE IX |
ICSE X |
Prelims |
ISC XI |
ISC XII |
ISC Prelims |
BEE |
GATE |
UGC NET |
CBSE 10th |
CBSE 12th |
CEED |
Why Choose ResPaper? |
Recent Questions in Q&As |
ResApp - ResPaper app for Android
Click question to answer it! To ask a question, go to the topic of your interest and click Q & A.Selected Responses |
ResApp - ResPaper app for Android
ICSE Class X Prelims 2025 : Computer Applications (Nalanda International School, Vadodara) | |
Here's a Java class that declares an array to accept and store ten words, and displays only those words that begin and end with 'A' or 'a': public class WordFilter { private String[] words; public WordFilter() { words = new String[10]; } public void inputWords() { java.util.Scanner scanner = new java.util.Scanner(System.in); System.out.println("Enter 10 words:"); for (int i = 0; i < 10; i++) { words[i] = scanner.nextLine(); } scanner.close(); } public void displayFilteredWords() { System.out.println("Words beginning and ending with 'A' or 'a':"); for (String word : words) { if (word.toLowerCase().startsWith("a") && word.toLowerCase().endsWith("a")) { System.out.println(word); } } } public static void main(String[] args) { WordFilter filter = new WordFilter(); filter.inputWords(); filter.displayFilteredWords(); } } This class does the following: 1. Declares an array 'words' to store ten words. 2. Provides a method 'inputWords()' to accept input from the user. 3. Implements a method 'displayFilteredWords()' that checks each word in the array and displays only those that begin and end with 'A' or 'a'. 4. Includes a main method to create an instance of the class and call the necessary methods. The program will display words like "Anita", "Amrita", "Alina", and "AMITHA" from the given example, as they all start and end with 'A' or 'a'. pandurang2 |
ISC Class XII Prelims 2025 : Computer Science (Hiranandani Foundation School (HFS), Powai, Mumbai) | |
Here's a description of how to complete the full adder circuit diagram: (i) Add an XOR gate with inputs A and B, and connect its output to one input of another XOR gate. (ii) Connect C_in to the other input of the second XOR gate. The output of this gate will be the Sum. (iii) Add an AND gate with inputs A and B. (iv) Add another AND gate with inputs from the output of the first XOR gate and C_in. (v) Finally, add an OR gate that takes inputs from both AND gates. The output of this OR gate will be C_out. This configuration creates a full adder circuit capable of adding three 1-bit binary numbers (A, B, and C_in) and producing a Sum and Carry-out (C_out). Reasoning: A full adder requires two XOR gates for calculating the Sum, two AND gates for determining carry conditions, and one OR gate to combine the carry possibilities. This arrangement allows for proper addition of three binary inputs while accounting for both Sum and Carry-out. bhagyashree70 |
ICSE Class X Prelims 2025 : Biology (Jamnabai Narsee School (JNS), Mumbai) | |
The correct sequence of events during cell division (mitosis) is: 1. Chromosomes line up in one plane 2. Spindle fibres disappear 3. Sister chromatids separate 4. Nucleolus disappears 5. Formation of daughter cells Reasoning: This sequence represents the key events of mitosis in chronological order. First, chromosomes align at the metaphase plate. Then, as anaphase begins, sister chromatids separate and move to opposite poles as spindle fibers contract. The nucleolus typically disappears during prophase and reforms during telophase. Finally, cytokinesis results in the formation of two daughter cells. sadaf28 |
ICSE Class X Prelims 2025 : Biology (Jamnabai Narsee School (JNS), Mumbai) | |
The hormone secreted by the alpha cells of the pancreas is glucagon. Glucagon is responsible for raising blood sugar levels when they are too low. abcdclass10_icse |
ICSE Class X Prelims 2024 : Chemistry (Karnataka ICSE Schools Association KISA, Bengaluru) | |
(c) shaurrkayy |
ICSE Class X Prelims 2025 : Chemistry (Delhi Public School (DPS), Newtown, Kolkata) | |
Ans (d)Reason: 1 gram atom = 1 mole of atoms. For diatomic chlorine,
|
ICSE Class X Prelims 2025 : History and Civics (Pawar Public School (PPS), Kandivali, Mumbai) : Prelim 2 | |
(b) December 30, 1906 raindelu |
ICSE Class X Prelims 2025 : English Paper 2 (English Literature) (Dhirubhai Ambani International School (DAIS), Mumbai) | |
D vanshika_d |
ICSE Class X Prelims 2025 : Geography (Villa Theresa High School (VTS), Mumbai) | |
(b) Soil erosion occurs more frequently during the monsoon season. Reasoning: During monsoon season, heavy rainfall and strong winds are common. These conditions lead to increased soil erosion for several reasons: 1. Heavy rain can dislodge soil particles and wash them away. 2. Increased water flow in rivers and streams can erode banks. 3. Strong winds can carry away loose topsoil, especially in dry areas. 4. Saturated soil is more susceptible to landslides and mass movements. (c) Red soil needs fertilization for better agricultural productivity. Reasoning: Red soils are typically: 1. Low in organic matter and nutrients, especially nitrogen and phosphorus. 2. Often acidic, which can limit nutrient availability to plants. 3. Prone to leaching of nutrients due to their high iron oxide content. 4. Often found in tropical and subtropical regions with high rainfall, which can wash away nutrients. Fertilization helps overcome these limitations by: 1. Adding essential nutrients to the soil. 2. Improving soil structure and water retention capacity. 3. Neutralizing soil acidity if lime is added along with fertilizers. 4. Enhancing microbial activity in the soil, which aids in nutrient cycling. prashy22533 |
Featured Recent Uploads |
ResApp - ResPaper app for Android
30,000+ Schools and Colleges |
ResApp - ResPaper app for Android
Featured Schools / Colleges / Universities:
Savitribai Phule Pune University (SPPU) 936 Students on ResPaper | |
Delhi Public School (DPS), Newtown, Kolkata 700 Students on ResPaper | |
St. Mary's ICSE School, Koparkhairane, Navi Mumbai 681 Students on ResPaper | |
Pawar Public School (PPS), Bhandup, Mumbai 796 Students on ResPaper | |
University of Delhi (DU), New Delhi 1486 Students on ResPaper |
ResApp -- the ResPaper App for Android Take ResPaper.com with you, even when you are offline! |