Ho sostenuto un colloquio presso Cisco (Bengaluru)
Colloquio
3 rounds,
Tr
Mr
Hr
Tr and Mr on technical(made me solve basic python questions and networking based questions and some basic programming questions. They asked me about cloud as I did ccp certification
Ho sostenuto un colloquio presso Cisco (Nuova Delhi)
Colloquio
The Cisco Graduate Trainee Apprenticeship interview starts with an online test covering aptitude, technical, and reasoning questions. If shortlisted, you’ll face a technical interview focusing on networking basics, coding, and problem-solving. Finally, an HR round assesses your communication skills, teamwork, and cultural fit. Be confident, and research Cisco’s values!
Domande di colloquio [1]
Domanda 1
The primary difference between `DELETE` and `TRUNCATE` in SQL lies in their usage and performance. `DELETE` is used to remove specific rows from a table using a condition, supports rollback within a transaction, and logs each deleted row, making it slower for large datasets. It also activates triggers associated with the table. On the other hand, `TRUNCATE` is used to remove all rows from a table, retains the table structure, and operates much faster due to minimal logging. It does not support conditions or activate triggers, making it ideal for quickly clearing entire tables.