|
Hello Reader, Six months ago, an interviewer asking about Gen AI was a bonus round. Today it is standard. At AWS, Microsoft, Meta, JP Morgan, Verizon, and most large enterprise technology teams, Gen AI questions are showing up in every SA, FDE, and AI engineer interview regardless of the role's primary focus. The candidates who answer these well are not the ones who have read the most blog posts. They are the ones who can connect the concepts to real architecture decisions and explain the trade-offs without getting lost in jargon. Here are the questions coming up most often right now and the answers that actually land. What is the difference between CPU and GPU?The average answer CPU is good for general purpose applications, and GPU is good for running AI ML workloads Why average? This answer doesn't highlight the superpowers considering this is a Gen AI interview question. Think of it like this - if interviewer asks you "What is the difference between EC2 and Lambda?", and you answer EC2 is servers/Virtual Machines on the cloud, and Lambda is Serverless, that won't be a good answer. Good answer A CPU or Central Processing Unit has a small number of powerful cores optimized for sequential, general-purpose tasks such as application logic, branching, database operations. A GPU or Graphical Processing Unit has thousands of simpler cores optimized for parallel workloads where you're doing the same operation on massive amounts of data simultaneously. Then add an AWS example to delight the interviewer - some examples of CPU EC2 instance families are M, C series, and sample GPU instance families are P4, P5. How will you cost optimize Gen AI workflow and application?This question is getting more popular fast, driven largely by companies worried about sending proprietary data to a model provider. The average answer Some of the average answers I hear are:
Why average?
Good answer Understand and memorize 3-5 from the below to delight the interviewer, as well as optimize cost in real-world projects.
What is an AI agent?The average answer Agents can perform complex tasks with prompts. Then mention random Gen AI terms like MCP, LLM, Tool. Why average? This answer doesn't have the depth. And you need to correlate the terms in regards to AI Agent. Think of it like this - if interviewer asks you "What is a microservice?", and you just say the name of AWS services like EC2, Lambda, ALB, APi Gateway, that won't be a good answer Good answer An AI agent is a software process that autonomously and independently makes decisions and takes actions until task completion. Standalone large language model cannot take action and cannot go back and forth till the task is done. Then you mention an example. So let me take an example. Let's say I have AI agent for troubleshooting. I can send a prompt like identify issues in my AWS application and fix them. And to fix this, the agent may need to go to different places, logs of the application, infrastructure or database, some metrics, etc. And it happens using agentic code interacting with large language model and a bunch of tools. And you don't have to code or specify how many times a tool needs to be called. It's all happening automatically. And once the issue is found, this agentic code using a tool can also go fix it. Now regarding the components of AI agent which ties to the next question. So you can add part from the next answer to this answer as well to impress the interviewer. What are the components of AI Agent (Also asked as : Give me a sample AI Agent Architecture)AI agent has the following components:
So this question and the previous question is kind of overlapping so you can use them accordingly. If you get these questions, make sure to crush it! I will cover more Gen AI questions in future editions. Keep learning and keep rocking 🚀, Raj P.S - If you want to get an AWS Solutions Architect job without coding or learning every AWS service, the 9th cohort for AWS SA Bootcamp is launching on Aug 1st, 12 PM ET (Eastern Time) via live workshop. This program now includes our updated GenAI curriculum. Please register below:
Here’s what you get when you show up LIVE:
And good news - it already worked for last cohort's students who secured cloud jobs in top companies, including at AWS, Microsoft, Google, JPMorgan, Reddit, and some of them didn't even have cloud experience 💰. Spots are limited, so don't miss it! |
Free Cloud Interview Guide to crush your next interview. Plus, real-world answers for cloud interviews, and system design from a top AWS Solutions Architect.
Hello Reader, This question is getting more popular fast, driven largely by companies worried about sending proprietary data to a model provider. In this edition, we will go over how to self-host it on Kubernetes. Good answer: The agent code itself is straightforward. Containerize it, push it to Amazon ECR, and run it as a pod. The model is the hard part. A model has two pieces: the model image, containing the tokenizer and configuration, and the model weights, which for an 80 billion...
Hello Reader, Are you thinking about becoming an AWS SA, and getting yourself a salary boost - maybe still in 2026? The demand for AWS Solutions Architects has never been higher, cloud computing already crossed $723 billion in 2025 and is projected to top $1 trillion by 2027, accelerated by AI (Source: Gartner). SA Bootcamp is developed to be the most direct and guided route to become a Solutions Architect and get a high paying cloud job fast, without wasting time doing it the hard way like...
Hello Reader, AWS released something this week that is going to confuse a lot of people. It is related to the Gen-AI Word of the Week: Harness. In this newsletter, we are going to go over what is Agent Harness and how this newly released Agent Core Harness is related to it or differs from it. And more importantly, how much should you learn about it for your interviews and real-world projects? What a harness actually is First let's understand what is an AI agent. Most people focus on the LLM...