Skill
Update Level of the contacts to Primary if phone and email is not missing.
Solution
List<Contact> conList = [SELECT Id, Level__c FROM Contact WHERE Phone != null and Email != Null];
for(Contact con : conList){
con.Level__c ='Primary';
}
update conList;
Video
Video does not exists.