String Array: Print Even Length Strings | ICSE Class 10 Java Imp Qs | ICSE Computer Applications

Опубликовано: 23 Июль 2026
на канале: Learn Easily - By Anurag
3,005
158

In this video, I explain how to write a Java program to accept 10 strings into a Single Dimensional Array (SDA) and print only those strings that have an even number of characters. This is a very important String Array question for ICSE Class 10 Computer Applications and ISC Class 12 students.

I cover the logic step-by-step using a loop, the .length() method, and the modulo operator.

📝 Question Solved in this Video: "Define a class to accept and store 10 strings in an array and print strings with an even number of characters."

📌 Topics Covered:

How to declare a String Array in Java.

Taking input for 10 strings using the Scanner class.

Using a loop to access each string.

Logic to check if string length is Even or Odd using length() % 2 == 0.

Dry run of the code to understand the flow.

🎓 About the Channel: Learn Easily - By Anurag is dedicated to helping ICSE & ISC students master Computer Science. I make complex programming concepts simple and easy to understand in Hindi.

🔔 Subscribe for more ICSE Computer Applications Tutorials!

📱 Connect with me:

Instagram: iamanurag121

YouTube: @padhaikrlo

#ICSEClass10 #JavaProgramming #StringArray #ComputerApplications #LearnEasilyByAnurag #JavaTutorial #BlueJ #CodingForStudents #ICSE2025

Chapters:
0:00 Question
0:41 Solution