Answer:
That a DVI connector looks different and that it support more monitors.
Explanation:
We have that the .xlsm <em>Format </em>is used to save Excel Macro-Enabled Workbook file
<h3>Formats</h3>
Generally file are saved in different formats for easy sorting and application on the operating system.
For instance if a music file is renamed and stored in a different format say .exe the audio file wont be recognised as an audio file and hence refuse to play.
e.g
- .exe for a windows appication
- ,mp3 for an audio file
- .xlsm here is used to save Excel Macro-Enabled Workbook file
For more information on Excel visit
brainly.com/question/19295387
Scripting languages are unique computer languages because they automate task that could be done by human operator and are easy to use.
<h3>What is a scripting language?</h3>
Scripting languages are programming languages that is interpreted.
They are programming languages that automates the task that will originally be performed by a human operator.
Scripting languages are used to give instruction to other software to run accordingly to how you want it.
The scripting language is different form other language base on the fact that its interpreted . This means the code are translated to machine code when it is run.
The major advantage of scripting languages is that it is human readable and understandable.
Examples of scripting languages are Python and JavaScript.
learn more on scripting here: brainly.com/question/12763341
#SPJ1
Answer:
Working with text in presentation programs is similar to working with text in other application, audience size influences font size, and font size and font color can be changed in presentations.
Answer:
The answer to this question can be given as:
Method:
public static void showTwos(int number) //method definition.
{
method body.
System.out.print(number + " = "); //print number
while (number % 2 == 0) //condition
{
System.out.print("2 * "); //print message.
number = number / 2;
}
System.out.println(number); //print value.
}
Explanation:
In the above method definition firstly, we declare the method showTwos() that name is already given in the question then we pass a variable number as a parameter in the method. In this first, we take input number from the user and pass into this method. In this method we use a while loop it is an entry control loop in this loop first we modules the number if it is equal to 0.Then we divide the number by 2 and in the last, we print the value.