Answer:
- using System;
- public class Program
- {
- public static void Main()
- {
- Console.WriteLine("Enter number of students: ");
- int num = Convert.ToInt32(Console.ReadLine());
- string [] firstName = new string[num];
- string [] lastName = new string[num];
-
- for(int i=0 ; i < num; i++){
- Console.WriteLine("Enter first name: ");
- firstName[i] = Console.ReadLine();
-
- Console.WriteLine("Enter last name: ");
- lastName[i] = Console.ReadLine();
- }
-
- for(int j=0; j < num; j++){
- Console.WriteLine(lastName[j] + "," + firstName[j]);
- }
- }
- }
Explanation:
Firstly, prompt user to enter number of student to be stored (Line 6- 7). Next, create two array, firstName and lastName with num size (Line 8-9).
Create a for-loop to repeat for num times and prompt user to enter first name and last name and then store them in the firstName and lastName array, respectively (Line 11 - 17).
Create another for loop to traverse through the lastName and firstName array and display the last name and first name by following the format given in the question (Line 19 - 21).
The statement "Visual perception is a mental process that is non selective" is false, it is a psychic function that allows the organism to capture, elaborate and interpret selective information that comes from the environment.
<h2>What is visual perception?</h2>
Visual perception is that inner sensation of apparent knowledge, resulting from a specific stimulus or light impression recorded by the eyes.
<h3>Characteristics of visual perception</h3>
- It incorporates the sensory stimuli received from objects, situations or events and converts them into a meaningful interpretation experience.
- It is an active process of the brain through which an external reality is created by transforming the light information captured by the eye.
Therefore, we can conclude that visual perception is the interpretation made by the brain of the different organisms of the stimuli received through the senses.
Learn more about visual perception here: brainly.com/question/10259599
Based on the information, both technician A and technician B are correct.
<h3>How to depict the information?</h3>
From the information given, Technician A says that mechanical shifting controls can wear out over time.
Technician B says that vacuum control rubber diaphragms can deteriorate over time.
In this case, both technicians are correct as the information depicted is true.
Learn more about technicians on:
brainly.com/question/1548867
#SPJ12