Answer:
Slide selection
Title slide
Content wise slides
Little short animations
Conclusion slide
Thank you slide
Dont forget to use Times New Roman font as using this font makes people easier to understand the concept.
Give attractive headings
Give 2 minutes per each slide for explanation
Make this presentation very good with confidence and don't forget to include tactful facts
Dont get a panic attack Haha
Probably bold the important text? Its hard without multiple choice
Answer:
public class Main
{
public static void main(String[] args) {
String[] strs = new String[10];
java.util.Scanner sc = new java.util.Scanner(System.in);
for(int i = 0; i < 10; i++){
System.out.print("Enter string " + (i+1) + ":");
strs[i] = sc.nextLine();
}
System.out.println("The strigs with even number of characters is");
for(int i = 0; i < strs.length;i++){
if(strs[i].length() % 2 == 0){
System.out.println(strs[i]);
}
}
}
}
Explanation: