Interview Q&A

Master technical and career interviews with structured answers—short definition, real examples, pitfalls, and how to answer in 60–90 seconds.

4608 total questions 4508 technical 100 career & HR 4272 from PDF library

Showing 3751–3775 of 4608

Career & HR topics

By tech stack

Popular tracks

Mid PDF
What are pipeline environments?

Short answer: Logical groups representing Dev, QA, Staging, Production. Support approval gates, deployment strategy, and rollback. Real-world example (ShopNest) ShopNest on Azure typically uses App Service + SQL Database…

Azure Read answer
Mid PDF
How do you manage secrets in Azure DevOps pipelines?

Short answer: Use Pipeline Variables (secret) or Azure Key Vault integration. Example code variables: name: MySecret value: $(MySecretFromVault) isSecret: true Real-world example (ShopNest) Connection strings and payment…

Azure Read answer
Junior PDF
What is the purpose of Azure Artifacts?

Short answer: Centralized package repository for NuGet, npm, Maven, or Python packages. Enables sharing, versioning, and dependency management across teams. Real-world example (ShopNest) ShopNest on Azure typically uses…

Azure Read answer
Mid PDF
How do you publish and consume NuGet packages?

Short answer: Publish in pipeline: task: NuGetCommand@2 inputs: command: push packagesToPush: '**/*.nupkg' publishVstsFeed: 'MyFeed' Consume in projects by adding feed URL in nuget.config. Real-world example (ShopNest) S…

Azure Read answer
Junior PDF
What is the use of Azure Boards?

Short answer: Track work items, bugs, features, and tasks. Plan sprints, create Kanban boards, and monitor team velocity. Real-world example (ShopNest) ShopNest on Azure typically uses App Service + SQL Database + Blob S…

Azure Read answer
Junior PDF
What is a work item in Azure Boards?

Short answer: A unit of work like bug, task, user story, or feature. Can be assigned, tracked, and linked to code commits. Real-world example (ShopNest) ShopNest on Azure typically uses App Service + SQL Database + Blob…

Azure Read answer
Mid PDF
How do you track project progress in Azure DevOps?

Short answer: Use Boards, Dashboards, Queries, and Analytics. Monitor burn-down charts, lead time, and cycle time. Real-world example (ShopNest) ShopNest on Azure typically uses App Service + SQL Database + Blob Storage…

Azure Read answer
Mid PDF
How do you connect Azure DevOps with GitHub?

Short answer: Link GitHub repo in Service Connections. Configure build pipeline to trigger on GitHub pushes or pull requests. Real-world example (ShopNest) ShopNest on Azure typically uses App Service + SQL Database + Bl…

Azure Read answer
Mid PDF
What are self-hosted agents?

Short answer: Machines managed by you to run CI/CD pipelines. Useful for custom software, large builds, or on-prem resources. Real-world example (ShopNest) ShopNest on Azure typically uses App Service + SQL Database + Bl…

Azure Read answer
Mid PDF
What are pipeline variables?

Short answer: Key-value pairs used in pipelines for configuration, secrets, or dynamic values. Can be set at pipeline, stage, or runtime. Real-world example (ShopNest) ShopNest on Azure typically uses App Service + SQL D…

Azure Read answer
Mid PDF
How do you implement stage-based deployment?

Short answer: Define stages in YAML for Dev, QA, Staging, and Production. Example: stages: stage: Build jobs: job: BuildJob steps: script: dotnet build stage: Deploy dependsOn: Build jobs: deployment: DeployJob environme…

Azure Read answer
Mid PDF
How do you handle rollback in CI/CD?

Short answer: Use deployment slots in Azure App Service. Configure previous successful release as rollback target in pipeline. Example: swap staging → production if failure occurs. Real-world example (ShopNest) ShopNest…

Azure Read answer
Junior PDF
What is Azure Active Directory?

Short answer: Azure Active Directory (Azure AD) is a cloud-based identity and access management service. Provides authentication, single sign-on (SSO), multi-factor authentication (MFA), and identity protection for apps…

Azure Read answer
Mid PDF
How does authentication work with Azure AD?

Short answer: Users authenticate via OAuth 2.0 / OpenID Connect. Azure AD issues tokens (ID token, access token, refresh token). Tokens are validated by the app to authorize access. Real-world example (ShopNest) ShopNest…

Azure Read answer
Junior PDF
What is the difference between Azure AD and AD B2C?

Short answer: Feature Azure AD Azure AD B2C Target Employees/internal Customers/external Features SSO, MFA, RBAC Customizable login, social logins Protocol OAuth, SAML, OpenID OAuth, OpenID, social authentication Real-wo…

Azure Read answer
Junior PDF
What is RBAC (Role-Based Access Control)?

Short answer: RBAC restricts access to resources based on roles assigned to users/groups. Example: Reader, Contributor, Owner roles in Azure. Real-world example (ShopNest) ShopNest on Azure typically uses App Service + S…

Azure Read answer
Mid PDF
How do you secure a .NET app using Azure AD?

Short answer: Use Microsoft.Identity.Web for ASP.NET Core. Configure authentication in Program.cs: builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationS cheme) .AddMicrosoftIdentityWebApi(builder.Configura…

Azure Read answer
Junior PDF
What is MSAL and how is it used?

Short answer: MSAL (Microsoft Authentication Library) enables apps to authenticate users and acquire tokens. Supports .NET, JavaScript, Python, Java. Example code acquiring token in .NET: var app = ConfidentialClientAppl…

Azure Read answer
Junior PDF
What is OpenID Connect?

Short answer: OpenID Connect (OIDC) is an identity layer on top of OAuth 2.0. Provides authentication and ID tokens for apps. Ensures SSO and identity validation in modern applications. Real-world example (ShopNest) Shop…

Azure Read answer
Mid PDF
How do you configure authentication in Azure App Service?

Short answer: Enable App Service Authentication / “Easy Auth”. Connect to Azure AD under Authentication settings. App Service validates tokens before reaching the app. Real-world example (ShopNest) ShopNest’s API runs on…

Azure Read answer
Mid PDF
What are App Registrations in Azure AD?

Short answer: App Registration represents a client app in Azure AD. Defines Application ID, redirect URIs, API permissions, secrets/certificates. Real-world example (ShopNest) ShopNest on Azure typically uses App Service…

Azure Read answer
Mid PDF
How do you use managed identities in Azure?

Short answer: Managed Identity allows apps to access Azure resources without storing credentials. System-assigned or user-assigned identity is granted access to resources like Key Vault or SQL Database. Real-world exampl…

Azure Read answer
Junior PDF
What is the difference between system-assigned and user-assigned managed identities?

Short answer: Feature System-assigne User-assigned Lifecycle Tied to resource Independent Reusabl No Yes Example App Service Shared across multiple resources Real-world example (ShopNest) ShopNest on Azure typically uses…

Azure Read answer
Mid PDF
How do you grant API permissions using Azure AD?

Short answer: Go to App Registration → API permissions Add delegated or application permissions Admin consent may be required Real-world example (ShopNest) ShopNest on Azure typically uses App Service + SQL Database + Bl…

Azure Read answer
Mid PDF
How do you authenticate APIs using bearer tokens?

Short answer: API validates incoming JWT bearer token from Azure AD. Configure authentication in ASP.NET Core: builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationS cheme) .AddJwtBearer(options => { opt…

Azure Read answer

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: Logical groups representing Dev, QA, Staging, Production. Support approval gates, deployment strategy, and rollback.

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: Use Pipeline Variables (secret) or Azure Key Vault integration.

Example code

variables: name: MySecret value: $(MySecretFromVault) isSecret: true

Real-world example (ShopNest)

Connection strings and payment keys live in Key Vault—not in source control or plain appsettings on disk.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: Centralized package repository for NuGet, npm, Maven, or Python packages. Enables sharing, versioning, and dependency management across teams.

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: Publish in pipeline: task: NuGetCommand@2 inputs: command: push packagesToPush: '**/*.nupkg' publishVstsFeed: 'MyFeed' Consume in projects by adding feed URL in nuget.config.

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: Track work items, bugs, features, and tasks. Plan sprints, create Kanban boards, and monitor team velocity.

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: A unit of work like bug, task, user story, or feature. Can be assigned, tracked, and linked to code commits.

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: Use Boards, Dashboards, Queries, and Analytics. Monitor burn-down charts, lead time, and cycle time.

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: Link GitHub repo in Service Connections. Configure build pipeline to trigger on GitHub pushes or pull requests.

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: Machines managed by you to run CI/CD pipelines. Useful for custom software, large builds, or on-prem resources.

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: Key-value pairs used in pipelines for configuration, secrets, or dynamic values. Can be set at pipeline, stage, or runtime.

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: Define stages in YAML for Dev, QA, Staging, and Production. Example: stages: stage: Build jobs: job: BuildJob steps: script: dotnet build stage: Deploy dependsOn: Build jobs: deployment: DeployJob environment: 'Production' strategy: runOnce: deploy: steps: script: echo Deploying to Production

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: Use deployment slots in Azure App Service. Configure previous successful release as rollback target in pipeline. Example: swap staging → production if failure occurs.

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: Azure Active Directory (Azure AD) is a cloud-based identity and access management service. Provides authentication, single sign-on (SSO), multi-factor authentication (MFA), and identity protection for apps and services.

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: Users authenticate via OAuth 2.0 / OpenID Connect. Azure AD issues tokens (ID token, access token, refresh token). Tokens are validated by the app to authorize access.

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: Feature Azure AD Azure AD B2C Target Employees/internal Customers/external Features SSO, MFA, RBAC Customizable login, social logins Protocol OAuth, SAML, OpenID OAuth, OpenID, social authentication

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: RBAC restricts access to resources based on roles assigned to users/groups. Example: Reader, Contributor, Owner roles in Azure.

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: Use Microsoft.Identity.Web for ASP.NET Core. Configure authentication in Program.cs: builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationS cheme) .AddMicrosoftIdentityWebApi(builder.Configuration.GetSection("AzureA d")); app.UseAuthentication(); app.UseAuthorization(); Tokens from Azure AD validate API requests.

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: MSAL (Microsoft Authentication Library) enables apps to authenticate users and acquire tokens. Supports .NET, JavaScript, Python, Java.

Example code

acquiring token in .NET: var app = ConfidentialClientApplicationBuilder.Create(clientId) .WithClientSecret(clientSecret) .WithAuthority(new Uri($" .Build(); string[] scopes = { " }; var result = await app.AcquireTokenForClient(scopes).ExecuteAsync(); Console.WriteLine(result.AccessToken);

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: OpenID Connect (OIDC) is an identity layer on top of OAuth 2.0. Provides authentication and ID tokens for apps. Ensures SSO and identity validation in modern applications.

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: Enable App Service Authentication / “Easy Auth”. Connect to Azure AD under Authentication settings. App Service validates tokens before reaching the app.

Real-world example (ShopNest)

ShopNest’s API runs on Azure App Service with staging slots—swap staging to production after smoke tests.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: App Registration represents a client app in Azure AD. Defines Application ID, redirect URIs, API permissions, secrets/certificates.

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: Managed Identity allows apps to access Azure resources without storing credentials. System-assigned or user-assigned identity is granted access to resources like Key Vault or SQL Database.

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: Feature System-assigne User-assigned Lifecycle Tied to resource Independent Reusabl No Yes Example App Service Shared across multiple resources

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: Go to App Registration → API permissions Add delegated or application permissions Admin consent may be required

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share

Microsoft Azure Microsoft Azure Tutorial · Azure

Short answer: API validates incoming JWT bearer token from Azure AD. Configure authentication in ASP.NET Core: builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationS cheme) .AddJwtBearer(options => { options.Authority = $" options.Audience = clientId; });

Real-world example (ShopNest)

ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.

Say this in the interview

  1. Define — one clear sentence (the short answer above).
  2. Example — relate it to a project like ShopNest or your real work.
  3. Trade-off — when you would not use it.
Permalink & share
Toolliyo Assistant
Ask about tutorials, ebooks, training, pricing, mentor services, and support. I use public site content only—not admin or internal tools.

care@toolliyo.com

Need callback? Share your details