Actionscript is for animation
JavaScript is for adding functionality to a webpage
DHTML is incorporating other languages into HTML
XML is used to store data
HTML is used to create a web page
Hope this helps!
Answer:
public static boolean isPalindrome(String word) {
//TODO: Complete this method
String reverse = "";
for (int i = (word.length()-1); i>=0; i--) {
if(word.charAt(i)!=' '){
reverse+=word.charAt(i);
}
}
String without_space = word.replaceAll(" ", "");
return reverse.equals(without_space);
}
Answer:
Alignment
Explanation:
Because the words become aligned
The answer is A.
It's a software used to manage databases
DBMS stands for DataBase Management System