Claire uses the <u>Crop option</u> from the Format tab to remove unwanted parts of the pictures.
<u>Explanation:</u>
In Microsoft Word, after inserting a picture, when we click on the picture to select it, the ribbon shows the format options. Various options are available for formatting a picture, however, in order to cut out the unwanted portion Claire needs to use the crop option.
Crop options allow the user to cut resize an image by cutting out the part of the picture user decides.
<u>To crop the picture follow the procedure given below:</u>
- Double click on the image
- Click the format tab to size the image
- Click crop, perform cropping using the handles appearing at the edge of image.
- Drag handles to crop and save them.
Answer:
The "a" tag or <a></a> and its "h<u>r</u>ef" attribute <a href="#"></a>
Explanation:
In html there is only one way to create a link to an external source or a bookmark. The tag is created using the element <a>.
The attribute "href" is then added to describe the link of where it is to point to.
Example:
<a href="google.com">Go to Google</a>
While the text in between the tag describes what the link is about.
B false data does not only have to be facts
Answer:
Code completion.
Explanation:
The NetBeans is an integrated development environment framework of java language. Code completion is the features of NetBeans which is easier to complete the code This feature is known as smart code features because it completes the code in a very easy manner. The Code completion features are needful when we have to fill the missing code or program in the java language.
Hence Code completion. is used to enter the name into the code in the NetBeans.
First of all, we will need a function that checks if a number is prime or not:
boolean isPrime(int n){
for(int i=2; i<=math.sqrt(n); i++){
if(n % i == 0) return false;
}
return true;
}
Then, in the main program, we will call this function with all the desired inputs, and we will print the prime numbers:
for(int n=100; n<= 1000; n++){
if(isPrime(n)) print(n);
}