Answer:
continual user involvement gives the flexibility to analyze the requirements in right direction. because there is continuous meetings with the end user and he can provide right direction or avoids wrong interpretation of the requirement
Explanation:
continual user involvement is useful when we are following agile methodology where we are building complex systems. it is not useful for simple sytems and following waterfall methodology
Answer:
Linux, Windows, Macintosh
Explanation:
Answer:
Explanation:
public void printAlphabets(char c){
String capitals = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
String small = "abcdefghijklmnopqrstuvwxyz";
if(capitals.contains(""+c)){
for(int i=0; i<capitals.length();i++){
if (capitals.charAt(i)!=c)
System.out.print(capitals.charAt(i)+" ");
else
break;
}// end for
System.out.print(c);
}else if (small.contains(""+c)){
for(int i=0; i<small.length();i++){
if (small.charAt(i)!=c)
System.out.print(small.charAt(i)+" ");
else
break;
}// end for
System.out.print(c);
}// end else if
}// end printAlphabets method
Answer:
Science
complex problem solving
critical thinking
judgment and decision making
Explanation:
im on endunety