Answer:
Classless Inter-Domain Routing
Explanation:
Classless Inter-Domain Routing (CIDR), pronounced “cider” or “sidder,” gets its name from the notion that it ignores the traditional A, B, and C class designations for IPv4 addresses and sets the network-host ID boundary wherever it wants to, in a way that simplifies routing across the resulting IP address spaces.
Answer:
ik its not an answer but it kinda is.. uh GOOGLE
Explanation:
To be able to import data on a table in your power point presentation, you have to tap or click the "Text File" tab on the ribbon part of the menus.
BY this, you will be able to import the data you need on the table you created.
Answer:
Here is the JavaScript program:
function Palindrome(word) {
return word == word.toLowerCase().split("").reverse().join("") ? true : false; }
inputWord = prompt("Enter a word to check its if its palindrome or not?");
alert(Palindrome(inputWord));
Explanation:
The function Palindrome takes a word as argument.
return word == word.toLowerCase().split("").reverse().join("") ? true : false; }
This statement first converts the word, which is a string to lower case letters using toLowerCase() method. Next split() method splits the word string into an array of strings, then reverse() method reverses the this array and join() method joins all the elements of the array back to the string. At last the conditional statement checks if the resultant string (reverse of word) is equal to the original word (that was input by user). If both the word and its reverse are equal/same then the program outputs true otherwise returns false.
inputWord = prompt("Enter a word to check its if its palindrome or not?"); statement uses prompt command to take input from the user. inputWord holds the word that user enters.
alert(Palindrome(inputWord)); statement calls Palindrome() method by passing the inputWord (word entered by user) to check if the input word is a palindrome or not. alert() method displays an alert box ( a message) with true if the inputWord is a palindrome otherwise it displays false.