Related questions
Concept explainers
//Assignment 06
*/
public static void main[](String[] args) {
String pass= "ICS 111";
System.out.printIn(valPassword(pass));
}
/*
public static boolean valPassword(String password)
{
if(password.length() > 6)
{
if(checkPass(password)
{
return true;
}
else
{
return false;
}
}
else
System.out.print("Too small");
return false;
}
public static boolean checkPass (String password)
{
boolean hasNum=false; boolean hasCap = false; boolean hasLow = false; char c;
for(int i = 0; i < password.length(); i++)
{
c = password.charAt(1);
if(Character.isDigit(c));
{
hasNum = true;
}
else if(Character.isUpperCase(c))
{
hasCap = true;
}
else if(Character.isLowerCase(c))
{
hasLow = true;
}
} return true;
{
return false;
}
}
This is very simple.
Here is the complete and correct Java code for the given problem.
Note: The errors are indentation and syntax errors.
--------------------------------------------- Java Code -------------------------------------------------
public class printPassword{
public static void main(String args[]){
String pass= "ICS 111";
System.out.println(valPassword(pass));
}
}
public class valPassword{
public static boolean valPassword(String password){
if(password.length() > 6){
if(checkPass(password)){
return true;
}
else
{
return false;
}
}
else{
System.out.println("Too small");
return false;
}
}
public static boolean checkPass (String password){
boolean hasNum=false; boolean hasCap = false;
boolean hasLow = false; char c;
for(int i = 0; i < password.length(); i++){
c = password.charAt(1);
if(Character.isDigit(c)){
hasNum = true;
}
else if(Character.isUpperCase(c)){
hasCap = true;
}
else if(Character.isLowerCase(c)){
hasLow = true;
}
} return true;
return false;
}
Step by stepSolved in 2 steps
- PROBLEM STATEMENT: An anagram is a word that has been rearranged from another word, check tosee if the second word is a rearrangement of the first word. public class AnagramComputation{public static boolean solution(String word1, String word2){// ↓↓↓↓ your code goes here ↓↓↓↓return true;}} Can you help me with this java question the language is java please use the code I gavearrow_forwardpublic class SeperateDuplicates { public static void main(String[ args) { System.out.printIn(seperateDuplicatesChars("Hello")); System.out.printin(seperateDuplicatesChars ("Bookkeeper"')); System.out.printin(seperateDuplicatesChars("Yellowwood door"')); System.out.printin(seperateDuplicatesChars("Chicago Cubs")); */ public static String seperateDuplicatesChars(String str) { //To be completed } }arrow_forwardPlease read my question and help me answer! Thanks! public class CustomString { String myString; boolean isSet; public CustomString() { // TODO Implement constructor this.myString = null; this.isSet = false; } /** * Returns a new string version of the current string where the capitalization is reversed (i.e., lowercase to uppercase, * and uppercase to lowercase) for the alphabetical characters specified in the given arg. * * All non-alphabetical characters are unaffected. * If the current string is null, empty, or has not been set to a value, this method should return an empty string. * * Example(s): * - For a current string "abc, XYZ; 123.", calling reverse("bcdxyz@3210.") would return "aBC, xyz; 123." * - For a current string "abc, XYZ; 123.", calling reverse("6,.") would return "abc, XYZ; 123." * - For a current string "abc, XYZ; 123.", calling reverse("") would return "abc, XYZ; 123." * - For a...arrow_forward
- Lab 9 C balance the same, y, n, why? class CheckingAct { . . . . private int balance; public void processCheck( int amount ) { int charge; if ( balance < 100000 ) charge = 15; else charge = 0; balance = balance - amount - charge ; // change the local copy of the value in "amount" amount = 0 ; } } public class CheckingTester { public static void main ( String[] args ) { CheckingAct act; int check = 5000; act = new CheckingAct( "123-345-99", "Your Name", 100000 ); System.out.println( "check:" + check ); // prints "5000" // call processCheck with a copy of the value 5000 act.processCheck( check ); System.out.println( "check:" + check ); // prints "5000" --- "check" was not changed } }arrow_forwardExercise 3: The following code asks a user to enter her/his age then determines if a user is an adult or not. Trace the code, to find and solve the syntax errors. You need to identify the errors and rewrite the correct code. import java.util.Scanner; public class Ex3 { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.println(("Enter your age:"); int age = input.nextInt(); double flag = isAdult(double age); if(flag) { System.out.println("You are an adult."); } else { System.out.println("You are not an adult."); } } public boolean isAdult(int age) { if(age> 18) { return true; } else { return false;arrow_forward1 a. is the amount the same, yes or no, why? public class CheckingAct { private String actNum; private String nameOnAct; private int balance; . . . . public void processDeposit( int amount ) { balance = balance + amount ; } // modified toString() method public String toString() { return "Account: " + actNum + "\tName: " + nameOnAct + "\tBalance: " + amount ; } } b. public class CheckingAct { private String actNum; private String nameOnAct; private int balance; . . . . public void processDeposit( int amount ) { // scope of amount starts here balance = balance + amount ; // scope of amount ends here } public void processCheck( int amount ) { // scope of amount starts here int charge; incrementUse(); if ( balance < 100000 ) charge = 15; else charge = 0; balance = balance - amount - charge ; // scope of amount ends here } } c. is the...arrow_forward
- using System; class Program { publicstaticvoid Main(string[] args) { int number,max=-9999999; while (true) { Console.WriteLine("Enter a number: "); number=Convert.ToInt32(Console.ReadLine()); if(number==0) { break; } else { if(number>max) { max=number; } } } Console.WriteLine("Largest number is "+max); } } Hello! Hope you are well! This C# program gets numbers from the user and prints the largest one. How can it be fixed to only ask for 6 numbers from the user and then choose the largest one? Thank you!arrow_forwardC programming #include <stdio.h>int main() {int i, j, n ;printf("height? ") ;scanf("%2d", &n) ;for (i = 1 ; i <= n ; i++) {// printf("%d: ", i) ;for (j = 1 ; j <= i ; j++) {// Pick *one* of the following// printf("%d", j % 10) ;printf("*") ;}printf("\n") ;}return 0 ;} How can I get output like this by editing the given programming -- height? 5************************* and then how can I get the following?- height? 7 1 123 12345 1234567 123456789 12345678901 1234567890123arrow_forwardJava Input class main { publicstaticvoid main(String args[]) { boolean a =true; boolean b =false; boolean c = a ^ b; System.out.println(!c); } } Find output.arrow_forward
- public class KnowledgeCheckTrek { public static final String TNG = "The Next Generation"; public static final String DS9 = "Deep Space Nine"; public static final String VOYAGER = "Voyager"; public static String trek(String character) { if (character != null && (character.equalsIgnoreCase("Picard") || character.equalsIgnoreCase("Data"))) { // IF ONE return TNG; } else if (character != null && character.contains("7")) { // IF TWO return VOYAGER; } else if ((character.contains("Quark") || character.contains("Odo"))) { // IF THREE return DS9; } return null; } public static void main(String[] args) { System.out.println(trek("Captain Picard")); System.out.println(trek("7 of Nine")); System.out.println(trek("Odo")); System.out.println(trek("Quark")); System.out.println(trek("Data").equalsIgnoreCase(TNG));...arrow_forwardComplete the isExact Reverse() method in Reverse.java as follows: The method takes two Strings x and y as parameters and returns a boolean. The method determines if the String x is the exact reverse of the String y. If x is the exact reverse of y, the method returns true, otherwise, the method returns false. Other than uncommenting the code, do not modify the main method in Reverse.java. Sample runs provided below. Argument String x "ba" "desserts" "apple" "regal" "war" "pal" Argument String y "stressed" "apple" "lager" "raw" "slap" Return Value false true false true true falsearrow_forwardStatic Length, Limited Dynamic Length, and Dynamic Length String implementations have what advantages and disadvantages?arrow_forward
- Text book imageDatabase System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationText book imageStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONText book imageDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- Text book imageC How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONText book imageDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningText book imageProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education