The industry I chose is the fashion industry and how web design has made an impact on that industry are:
- It often impact the visual style of cloths.
- It has helped in making of nice and good cloth design.
- It aid in design and visual effect of its product.
<h3>What is the impact of web design?</h3>
Web design is known to be a key parts of Internet marketing strategy as it helps in digital customer experience in a lot of ways.
The skill needed are:
- Visual design
- The use of Design software.
- HTML.
- JavaScript, etc.
Therefore, The industry I chose is the fashion industry and how web design has made an impact on that industry are:
- It often impact the visual style of cloths.
- It has helped in making of nice and good cloth design.
- It aid in design and visual effect of its product.
Learn more about fashion industry from
brainly.com/question/27318787
#SPJ1
Incorrect data can lead to unexpected program execution results. Data entry errors can be reduced by only accepting valid input, e.g., if a number must be entered, alphabetic characters are ignored. After data validation, error messages can be prompted to the user, requiring him to enter the data again.
Based on the above, The two types of record access can the administrator grant are:
C. Read/Write
D. Read Only
<h3>What is read write access?</h3>
This is seen as a kind of device that can both act as a kind of input and output or moves and receive.
Note that it is also seen as digital file that can be updated and deleted and therefore, Based on the above, The two types of record access can the administrator grant are:
C. Read/Write
D. Read Only
Learn more about record access from
brainly.com/question/8798580
#SPJ1
Answer:
- import java.util.Scanner;
-
- public class Main {
- public static void main (String [] args) {
-
- int jersey_num [] = new int[5];
- int rating [] = new int[5];
-
- Scanner inStream = new Scanner(System.in);
-
- for(int i=0; i < 5; i++){
- System.out.print("Enter player " + (i+1) + "'s jersey number:");
- jersey_num[i] = inStream.nextInt();
-
- System.out.print("Enter player " + (i+1) + "'s rating:");
- rating[i] = inStream.nextInt();
- }
-
- System.out.println("ROSTER");
-
- for(int j=0; j < 5; j++){
- System.out.println("Player " + (j+1) + "-- Jersey number: " + jersey_num[j] + ", Rating: " + rating[j]);
- }
- }
- }
Explanation:
The solution code is written in Java. Firstly create two array, jersey_num and rating, with int type. This is to hold the five pairs of numbers input by user (Line 6 -7).
Next, create a for loop that run for 5 iterations and in each iteration prompt user to input jersey number and rating (Line 11 -17). The input number and rating will be set to the array, jersey_num and rating, respectively.
Next, print the title "Roster" (Line 19).
Create another for loop to display the five input pair of values (Line 21 - 23).