KASHII UPDATEZ Everyday Student Requirements & Python Coding Tutorials by Python Kashi
REQUIREMENT_ID_91 • 3-DAY_ACTIVE_POLICY

AI Platform Engineer — Agentic SDLC

Company
Company Sutherland Global
Type
Opportunity Type Internship
Salary
Stipend / Salary ₹15 LPA - ₹20 LPA
Location
Location Bengaluru, KA
Posted Date
Posted Date Yesterday
TypeScript Node.js Azure OpenAI Prompt Engineering Kiro IDE Model Context Protocol Retrieval Augmented Generation Vector Search Embedding Pipelines Playwright fast-check Jest Rally Azure DevOps Jira GitHub Actions Docker AKS React 18 TailwindCSS shadcn/ui Express Prisma PostgreSQL Redis Bull queues Markdown Mermaid
📖
Aptitude Practice Questions Open Resource ↗
Curated quantitative and logical reasoning problems to sharpen the analytical skills needed for the online assessment.
📖
Company Interview Preparation Guide Open Resource ↗
Comprehensive interview experiences and tips that help candidates understand the typical Sutherland interview flow and question patterns.
📖
Comprehensive Interview Prep Resource Open Resource ↗
A one‑stop resource covering coding, system design and behavioral questions, useful for all interview rounds at Sutherland.
📖
Algorithm Practice Problems Open Resource ↗
Extensive problem set for practicing data structures and algorithms, essential for the coding assessment stage.

B.Tech/B.E. or M.Tech in Computer Science, Information Technology, Electronics, or related engineering discipline; minimum 60% aggregate (or CGPA 6.5/10); graduating batch 2024‑2026; no active backlogs at the time of joining; strong programming fundamentals and passion for AI/ML; excellent communication skills in English.

1
Round 1: Online coding assessment (DSA and TypeScript problems)
2
Round 2: Technical interview (AI agent design, RAG pipelines, system architecture)
3
Round 3: HR interview (cultural fit, career aspirations).
Sutherland is a global digital engineering and services firm that helps enterprises accelerate innovation through AI, automation, cloud engineering and advanced analytics. With a portfolio of 363 unique inventions—250 of them AI‑driven—the company has built a strong IP base that powers large‑scale digital transformation for iconic brands across industries. Its "Digital Outcomes" model delivers end‑to‑end solutions as a seamless "as‑a‑service" offering, enabling clients to modernise operations, reinvent customer experiences and unlock new business value. The AI Platform Engineer role sits at the heart of Sutherland’s next‑generation software development lifecycle (SDLC) platform built on the Kiro IDE. This platform is AI‑first, using autonomous agents, Model Context Protocol (MCP) integrations and event‑driven hooks to automate every phase of software delivery—from requirements gathering to deployment gating. As an AI Platform Engineer you will extend and harden this platform, creating new agent capabilities, designing retrieval‑augmented generation (RAG) pipelines, and building governance guardrails that keep the system reliable, secure and compliant. **Key Responsibilities** 1. Design and implement multi‑step AI agents that orchestrate SDLC workflows (fetch → generate → execute → validate → sync). 2. Build RAG pipelines that ingest architecture documents, coding standards and Rally artifacts to provide grounded context for LLMs. 3. Develop MCP servers and integrate enterprise tools such as Rally, Playwright, Git, Confluence and Azure DevOps. 4. Author steering files (persona, governance, lifecycle) that enforce formal rules on agent behaviour. 5. Create self‑healing and auto‑remediation mechanisms with bounded autonomy and human escalation paths. 6. Design state‑machine models for artifact lifecycles (requirements → design → code → test → deploy). 7. Implement event‑driven hooks for CI/CD pipelines, nightly runs and release gating. 8. Write property‑based tests using fast‑check to formally verify system correctness. 9. Package and deploy agent infrastructure using Docker, Azure Kubernetes Service (AKS) and manage credentials securely. 10. Collaborate with product, UX and DevOps teams to deliver dashboards and reporting UI using React and TailwindCSS. **Tech Stack**: TypeScript, Node.js, Azure OpenAI (GPT‑4), Kiro IDE agents, MCP, vector‑DB embeddings, Playwright, fast‑check, Jest, Rally, Azure DevOps, Jira, GitHub Actions, Docker, AKS, React 18, TailwindCSS, shadcn/ui, Express, Prisma, PostgreSQL, Redis/Bull queues, Markdown, Mermaid. **Growth Path**: Starting as an AI Platform Engineer, you can progress to Senior Engineer, Lead AI Systems Architect, or Product Owner for AI‑native development platforms. The role offers exposure to cutting‑edge LLM integration, large‑scale cloud infrastructure and enterprise‑grade AI governance—skills that are in high demand across the tech ecosystem. **Why Join Sutherland?** The company provides a vibrant, innovation‑driven culture where engineers get to work on AI‑first products that impact Fortune‑500 clients. You will be part of a global team, enjoy flexible work‑from‑home arrangements, and receive continuous learning opportunities through internal labs, certifications and mentorship programs. The blend of deep technical challenges and business impact makes this role ideal for ambitious freshers looking to accelerate their AI engineering career.

Sutherland Global — Data Analytics & SQL Interview Guide

Previously asked questions, exam syllabus, coding benchmarks & round strategy.

APTITUDE & LOGIC 📖
Aptitude Practice Questions & Online Mock Tests

Curated logical, quantitative, and verbal reasoning problems to sharpen reasoning skills required for the initial screening test.

Open Resource ↗
COMPANY GUIDE 🎯
Sutherland Global Interview Preparation Corner

Comprehensive guide covering typical interview formats, common questions, and preparation tips for Sutherland Global and off-campus tech roles.

Open Resource ↗
MOCK TESTS & PAPERS 📝
Comprehensive Interview Prep Resources & Syllabus

Collection of previous year questions, company-specific test patterns, and interview experiences for technical and HR rounds.

Open Resource ↗
CODING PRACTICE 💻
Algorithm and Data Structure Problem Set

Practice problems to improve coding proficiency and algorithm problem-solving speed for technical rounds.

Open Resource ↗
Round 1: Online Assessment (OA)
Aptitude, Quantitative Logic & 2 Coding Problems
Focus on accuracy and speed. Practice arrays, strings, and standard arithmetic puzzles.
Round 2: Technical Interview 1
Core Tech Stack (TypeScript, Node.js, Azure OpenAI, Prompt Engineering, Kiro IDE, Model Context Protocol, Retrieval Augmented Generation, Vector Search, Embedding Pipelines, Playwright, fast-check, Jest, Rally, Azure DevOps, Jira, GitHub Actions, Docker, AKS, React 18, TailwindCSS, shadcn/ui, Express, Prisma, PostgreSQL, Redis, Bull queues, Markdown, Mermaid) & Live Code Tracing
Explain your thought process aloud. Analyze time & space complexities before coding.
Round 3: System Design & Problem Solving
Database Schemas, APIs & Architecture Basics
Clarify edge cases, diagram schemas cleanly, and discuss scalability trade-offs.
Round 4: HR & Cultural Fit Discussion
Sutherland Global Core Values, Learning Agility & Offer Terms
Demonstrate passion, strong communication, and readiness for full-time collaboration.
What is the difference between WHERE and HAVING clauses in SQL? Answer ▼
Model Answer: WHERE filters rows before any groupings are applied, while HAVING filters aggregated groups after GROUP BY has executed.
Explain SQL Window functions: ROW_NUMBER(), RANK(), and DENSE_RANK(). Answer ▼
Model Answer: ROW_NUMBER() assigns unique sequential integers. RANK() assigns identical ranks to ties and skips ranks. DENSE_RANK() assigns identical ranks to ties without skipping rank numbers.
How do you handle NULL and missing values during data cleaning in Python/Pandas? Answer ▼
Model Answer: Use .isna().sum() to identify missing values. Impute with mean/median using .fillna() or remove with .dropna(subset=[...]) depending on variance impact.
What is the difference between Star Schema and Snowflake Schema in Data Warehousing? Answer ▼
Model Answer: Star Schema has denormalized dimension tables directly connected to the central Fact table. Snowflake Schema normalizes dimension tables into sub-dimensions to minimize redundancy.
How do you calculate MoM (Month-over-Month) growth in SQL? Answer ▼
Model Answer: Use LAG(revenue, 1) OVER (ORDER BY month) to fetch the previous month's revenue and compute (revenue - prev_revenue) / prev_revenue * 100.
Why do you want to join Sutherland Global as a AI Platform Engineer — Agentic SDLC?
Preparation Tip: Highlight Sutherland Global's market reputation, recent tech innovations, and how your skills in TypeScript directly solve their team's objectives.
Describe a challenging bug or academic project roadblock and how you resolved it.
Preparation Tip: Use the STAR method: Situation (project context), Task (what needed solving), Action (specific tools/logic applied), Result (quantifiable positive outcome).
How do you handle strict deadlines or sudden scope changes?
Preparation Tip: Explain your prioritization strategy, proactive communication with mentors/peers, and agile mindset.

More Fresh Requirements in Software & Tech

View Category Feed ↗
Sutherland Global
AI Platform Engineer — Agentic SDLC
Apply Apply Now ↗
Chat Chat with Kashii