SELECT
    device_id, 
    gender, 
    age, 
    university, 
    gpa
FROM
    user_profile
WHERE
    gender = 'male' and
    gpa > 3.5
;