In Systems development or traditional waterfall approach will the process of analysis, design, development, test, deployment, and maintenance be a useful approach.
<h3>What is software development?</h3>
Software development is known to be a term that connote the composition of computer science works made for the process of developing , designing, and aiding software.
Note that In Systems development or traditional waterfall approach will the process of analysis, design, development, test, deployment, and maintenance be a useful approach. as it also uses the dteps listed above.
Learn more about software from
brainly.com/question/1538272
#SPJ1
Coordination in a global information system requires a decentralized architecture for data, standardization within departments
Answer:
import java.util.Scanner;
public class DashLine {
public static void main(String[] args) {
// Declaring variables
int n;
/*
* Creating an Scanner class object which is used to get the inputs
* entered by the user
*/
Scanner sc = new Scanner(System.in);
// Getting the input entered by the user
System.out.print("Enter a number :");
n = sc.nextInt();
// calling the method by passing the user entered input as argument
dashedLine(n);
}
//This method will print the dashed line for number greater than zer
private static void dashedLine(int n) {
if (n > 0) {
for (int i = 1; i <= n; i++) {
System.out.print("-");
}
System.out.println();
}
}
}
Explanation:
Answer:
yes / true
Explanation:
it is one of the factors in determining the speed of the microprocessor