Recent content by shucx022

  1. S

    🔒 Closed Coding mga Lods Need Help With FlowChart

    import java.math.BigDecimal; import java.util.*; public class App { private static final String InvalidInput = "Invalid input please try again!"; private static final String EnterIncomeLabel = "Enter Income($): "; private static final String OutputTaxLabel = "Tax: "; private...
  2. S

    🔒 Closed DELETE OPERATION in Database. (help) Please ;(

    -- Not a Pro Database person pero here's my simple explanation CREATE TABLE test.EMPLOYEE(ID int not null auto_increment primary key, name varchar(50) not null); CREATE TABLE test.WORKS_ON(ID int not null auto_increment primary key, EMPLOYEE_ID int not null, WORK_DESC varchar(255), FOREIGN KEY...
  3. S

    🔒 Closed Pa help po java code

    sorry newbie ako sa pag post ng code. if ever na late, hope maka tulong saiyo kahit reference mo nalang. treskalibre1515 :)
  4. S

    🔒 Closed Pa help po java code

    import java.math.BigDecimal; import java.util.ArrayList; import java.util.List; import java.util.Optional; import java.util.Scanner; public class App { private static final String AvailableFruitsHeader = "Available Fruits: "; private static final String AvailableFruitsTemplate = "%s. %s...
  5. S

    🔒 Closed Saan po kayo natututo ng advance webdev?

    kung gusto mo ng advance, try mo mag dive sa frameworks like angular/react js. Bukod sa school at work, sa Udemy din ako natuto, bumili nga lang ako ng course. Worth it naman kasi from beginner to advance yung flow ng lecture then may certificate after.
  6. S

    🔒 Closed Tanong po about sa programming

    hmmm, well possible reason kung bakit naka instantiate sa no args String constructor yung variable, dahil siguro sa coding standard. Sa industry kasi, pwedeng iflag(need to refactor) yung pag iinitialize ng string literal ng mga plugins sa project app like checkstyle, solarlint etc. or mismong...
Back
Top