I think select the video insert select the movie option under illustrations resize the video player then select the insert tab i’m not 100 percent sure tho
Options :
The domain name is registered to someone else.
Domain names must end in ".com".
You are not the legal owner of ABC Company.
Domain names must be all in lowercase.
Answer:
The domain name is registered to someone else.
Explanation: In the scenario above, ABCcompany.org represents the domain name of a particular person or establishment which provides access to the website of the owner. The domain name given to an individual or website must be distinct, that is no two different organizations or persons can use exactly the same domain name. Domain names can end with :. com, org, ng and various other and they aren't case sensitive. Therefore, the inability to register the domain name abive will likely stem from the fact that the domain name has is already registered to someone else.
Answer:
It can deliver the services faster with higher reliability and quality
Answer:
- import java.util.Scanner;
-
- public class Main {
- public static void main(String[] args) {
- Scanner input = new Scanner(System.in);
- int n = input.nextInt();
- int l = 1;
- for(int i=1; i <= n; i++){
- for(int j=1; j<= l; j++){
- System.out.print("*");
- }
- System.out.println();
- l = l + 2;
- }
- l = l - 4;
- for(int i=1; i < n; i++){
- for(int j=1; j <= l; j++){
- System.out.print("*");
- }
- System.out.println();
- l = l-2;
- }
- }
- }
Explanation:
The solution code is written in Java.
Firstly use a Scanner object to accept an input integer (Line 5-6).
Create the first set of inner loops to print the upper part of the diamond shape (Line 8-14). The variable l is to set the limit number of asterisk to be printed in each row.
Next, create another inner loops to print the lower part of the diamond shape (Line 17-23). The same variable l is used to set the limit number of asterisk to be printed in each row.