1) Explain Bert and how is it different from GPT
Ai Software Engineer Interview Questions
205 ai software engineer interview questions shared by candidates
OPP, classi generiche e astratte
You are working on a backend system that retrieves data from a database. The database has two tables: users and posts. Each user can have many posts, and each post belongs to a user. You are notified that the system is experiencing a performance drop in production, and you isolate the issue to the following snippet: async function getUsersWithPostCountAndEarliestPostDate() { const users = await db.query('SELECT u.id AS user_id, u.name AS user_name FROM users'); for (let user of users) { const posts = await db.query('SELECT * FROM posts WHERE user_id = ?', [user.id]); user.post_count = posts.length; user.earliest_post_date = posts.reduce((earliest, post) => post.created_at < earliest ? post.created_at : earliest, Infinity); if (user.earliest_post_date === Infinity) { user.earliest_post_date = null; } } return users; } What type of problem does this code have? How do we fix it?
En la primera entrevista: Podrias hablarme de los proyectos con uso de IA que tienes en tu portafolio?
Describe a time you overcame something difficult you had never worked with before.
Q: had to solve some logic problems Q: how would you approach a certain ML problem
1) To check whether two string word and goal after rotation is same or not 2) To check anagram 3) SQL query on self join 4) To check binary trees are identical or not.
What I did in a side-project I referenced to elaborate more.
HR questions, logic, and algorithmic tests.
Given a phone number in digits, generate all possible phonewords from that number (map digits to letters)
Viewing 31 - 40 interview questions