fill out the form and meet the hiring manager,introductions, broad questions and answers, position-related questions, and the conclusion; fill out the form and meet the hiring manager,introductions, broad questions and answers, position-related questions, and the conclusion
short interview but nice people, ask skills, greatest strength, greatest weakness, experience,education, salary expectations. handle stress and pressure. describe yourself, willing to relocate? Describe the work ethic.
work well with other people,
Interview questions [1]
Question 1
education, skills,work experience , salary expectations,handle stress and pressure
The process took 1 day. I interviewed at Merion (El Monte, CA) in Jan 2015
Interview
ask some question about codeNote the use of PDO::FETCH_ASSOC in the fetch() and fetchAll() code above. This tells PDO to return the rows as an associative array with the field names as keys. Other fetch modes like PDO::FETCH_NUM returns the row as a numerical array. The default is to fetch with PDO::FETCH_BOTH which duplicates the data with both numerical and associative keys. It's recommended you specify one or the other so you don't have arrays that are double the size! PDO can also fetch objects with PDO::FETCH_OBJ