21Iklan lowongan kerja kreatif
dari
http://id.jobsdb.com/ID/EN/Job.asp?R=JDBID019265799&30912
=====
package com.mayagen;
public class Candidate {
boolean bCreative = false;
boolean bLogical = false;
public Candidate(boolean bCreative, boolean bLogical) {
this.bCreative = bCreative;
this.bLogical = bLogical;
}
public boolean getCandidate(int iLearningSpeed, int iMotivation, boolean bTeamWork, boolean bLoveOpenSource) {
boolean bPass1 = false;
if(iLearningSpeed + iMotivation > 17) bPass1 = true;
if(bPass1 && bCreative && bLogical && bTeamWork && bLoveOpenSource) return true;
return false;
}
public String getCompanyInfo() {
return("We are a national licensed facility and service based company that has been in the ICT business for more than 30 years");
}
public void sendCv() {
Runtime.getRuntime().exec("sendmail -YourFullName -YourCV -YourEmail jobs@dtp.net.id");
}
} // end class