Answer:
Explanation:
Since no programming language is stated, I'll use Microsoft Visual C# in answering this question.
// C# program sort an array in ascending order
using System;
class SortingArray {
int n; //number of array elements
int [] numbers; //Array declaration
public static void Main() {
n = Convert.ToInt32(Console.ReadLine());
numbers = new int[n];
for(int i = 0; i<n; I++)
{
numbers [n] = Convert.ToInt32(Console.ReadLine());
}
SortArray();
foreach(int value in numbers)
{
Console.Write(value + " ");
}
}
void SortArray()
{
int temp;
// traverse 0 to array length
for (int i = 0; i < numbers.Length - 1; i++)
// traverse i+1 to array length
for (int j = i + 1; j < numbers.Length; j++){
// compare array element with all next element
if (numbers[i] < numbers[j])
{
temp = numbers[i];
numbers[i] = numbers[j];
numbers[j] = temp;
}
}
}
The field of <u>Computer graphics</u> is concerned with the technical issues involved in the information display. The correct option is A.
<h3>What is computer graphics?</h3>
Computer graphics is a branch of computer science called computer graphics research techniques for digitally synthesizing and modifying visual content.
Even while the phrase is frequently used to describe the study of three-dimensional computer graphics, it also includes image processing and two-dimensional graphics. This section works for information display.
Thus, the correct option is A. Computer graphics.
To learn more about computer graphics, refer to the link:
brainly.com/question/1169945
#SPJ4
The question is incomplete. Your most probably complete question is given below:
Computer graphics
computer-aided visualization
computer visualization
engineering graphics
Answer:
then you???
Explanation:
i think you're forgetting something (like you're pfp)
To determine what would be the most appropriate way to address and greet your teacher during an email, we should eliminate some greetings, such as:
"Yo wassup?", "How u doin?", or any other grammatical and socially inappropriate errors.
Let's look at our first option.
"Hi Joseph, How u doin??". This is incorrect as it is not appropriate to address anyone in such a manner and with grammatical errors.
Let's look at our second option.
"Dear Joseph Herman, how are you doing!!". This was on the right path, but didn't end well. The ending of the message, "how are you doing!!" is incorrect punctuation, and has too much excitement.
How about our third option?
"Dear Mr. Herman, I hope you're doing fine.". This is a great email. It has perfect punctuation, grammar, and is appropriate.
What about our fourth?
"Dear Joseph, i hope you are doing great.". This is a good email, but has incorrect punctuation.
Your answer is C.) Dear Mr. Herman, I hope you're doing fine.