STRING

Top 5 Marvel games for android with high graphics in 2023.

When it comes to talk about marvel we always say that we love marvel movies,but if we talk about marvel…

2 years ago

Write a java program to take string as an input and check whether it is Palindrome or not.

class PQR{ public static void main(String k) { int l=k.length(); String m=""; //empty for(int i=l-1;i>=0;i--) { m=m+(k.charAt(i)); } if(m.compareTo(k)==0) {…

2 years ago