I think you should get used input
Answer:
On the Insert tab, in the Text group, click Header & Footer. Excel displays the worksheet in Page Layout view. Click the left, center, or right header or footer text box at the top or the bottom of the worksheet page.
Explanation:
Answer:
Explanation:
import java.util.Scanner;
public class PalindromeCheck
{
public static void palindromeCheck()
{
String someWord=" ";
int count=0;
int total=0;
System.out.println("Ënter some words entered by whitespace");
Scanner keyboard =new Scanner(System.in);
String[] words=keyboard.nextLine().split(" ");
for(int i=0;i<words.length;i++)
{
boolean flag=true;
int l=words[i].length();
for(int j=0;j<=l/2;j++)
{
if(words[i].charAt(j)!=words[i].charAt(l-j-1))
{
flag=false;
break;
}
}
if(flag)
count++;
}
System.out.println("There are "+count+" palindromes out of "+words.length+" words");
keyboard.close();
}
public static void main(String[] args)
{
palindromeCheck();
}
}
Output
Ënter some words entered by whitespace
This is a malayalam.
There are 3 palindromes out of 4 words
Answer:
D. 169.254.x.x with a mask of 255.255.0.0
Explanation:
The ranges which indicate the inability to contact a DHCP server is option D form the options provided .A DHCP(Dynamic Host Configuration Protocol) server is a server that automatically assigns the default gateways,IP addresses and other netwok parameters to the clients.
Answer:
Arrays are described as immutable because they cannot be changed once they are defined. (D on Edge)
Explanation:
It's in the notes and I just took the test (2020)