Answer:
Option (2) is the correct answer of this question.
Explanation:
We will increase the left and right margins of the data on a worksheet that will consume a whole printed page and columns on second page then the data will print all in one page.
Following are the steps to print the Data all in on page:-
Step 1. Choose the Ribbon Page Design button
Step2. select 1 page in the Scale to Fit category, and in the Width box, we will automatic choose the height box.
Step 3 .Finally we will choose 1 page in the Height box to print your worksheet to a single page.
"Other options are incorrect because they are not related to the given question.i.e, to print the data in on page in the worksheet".
First questions answer is : K
……
Second question :
To solve these questions you take 8 digits and look for them in the table ~
01001000 H
01000101 E
01001100 L
01001100 L
01001111 O
Answer : HELLO
Answer:
True
Explanation:
In Computer science, It's true that injection attacks variants can occur whenever one program invokes the services of another program, service, or function and passes to it externally sourced, potentially untrusted information without sufficient inspection and validation of it.
Answer:
see explaination
Explanation:
MaxArray.java
public class MaxArray{
public static void main(String[] args) {
int a[] = {1,2,5,4,3};
int max = max (a, 5);
System.out.println("Max value is "+max);
}
public static int max (int a[],int size){
if (size > 0) {
return Math.max(a[size-1], max(a, size-1));
} else {
return a[0];
}
}
}
Output:
MaxArray