Pre-Employment tests: Difference between revisions

From My Limbic Wiki
Line 44: Line 44:
* Biometric datas
* Biometric datas
=Standard Traps (in Java)=
=Standard Traps (in Java)=
{
public class Test {  
public class Test {  
     public static void main(String[] args){  
     public static void main(String[] args){  
Line 51: Line 52:
         System.out.println(s1.equals(s2)); //true - In Java, string equals() method compares the two given strings based on the data/content of the string
         System.out.println(s1.equals(s2)); //true - In Java, string equals() method compares the two given strings based on the data/content of the string
     }  
     }  
}
}
}

Revision as of 21:41, 23 August 2019

Personality Test

http://www.journaldunet.com/management/0607/0607143-tests-personnalite.shtml

  • L'extraversion,
  • La conscience professionnelle,
  • La stabilité émotionnelle,
  • L'ouverture d'esprit,
  • La convivialité.

MTBI

Ce test permet de positionner le candidat sur quatre échelles bipolaires, codifiées chacune par une lettre :

  • Orientation de l'énergie : E extraversion - I introversion
  • Recueil d'information : S sensation - N intuition
  • Critère de prise de décision : T pensée logique - F sentiments
  • Mode d'action : J jugement - P perception

Cognitive Tests

  • TELUQ - English, French, Mathematics

Emotional Intelligence

Logical Reasoning Test

English Proficiency Tests

Grammary

www.anglaisfacile.com

Irregular Verbs

wikipedia:en: English_irregular_verbs

Sample Job Task Tests

Background Checks and Credit Checks

  • Police Check
  • Biometric datas

Standard Traps (in Java)

{ public class Test {

   public static void main(String[] args){ 
       String s1 = new String("HELLO"); 
       String s2 = new String("HELLO"); 
       System.out.println(s1 == s2); //false - both have different addresses in memory.
       System.out.println(s1.equals(s2)); //true - In Java, string equals() method compares the two given strings based on the data/content of the string
   } 

} }