import java.util.Scanner;
public class JavaApplication46 {
public static boolean passwordCheck(String pass){
String alphanum = "abcdefghijklmnopqrstuvwxyz1234567890";
boolean legit = true;
if (pass.length()>= 8){
for(int i = 0; i < pass.length(); i++){
if (alphanum.indexOf(pass.charAt(i)) != -1 && legit != false){
legit = true;
}
else{
legit = false;
}
}
}
else{
legit = false;
}
return legit;
}
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.print("Enter a password: ");
String password = scan.next();
System.out.println(passwordCheck(password));
}
}
I hope this helps!
Answer:b) ERP
Explanation: ERP(Enterprise resource planning) is the strategical formal planning process which is regarding the business process management .ERP provides services form the improving productivity ,delivery, efficiency with the use of integrated application, software and technology.
Other options are incorrect because CRM (Customer relationship management) works in maintaining relation between the organisation and the customer, SCM(Supply chain management) is the business process for management of the execution, planning and flow of the business .
KM(Knowledge management) is for the maintenance of data/information.Therefore, the correct option is option(b)
I believe that that statement is true