Master technical and career interviews with structured answers—short definition, real examples, pitfalls, and how to answer in 60–90 seconds.
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…
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…
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…
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…
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…
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…
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…
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…
Short answer: Use Microsoft.Identity.Web for ASP.NET Core. Configure authentication in Program.cs: builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationS cheme) .AddMicrosoftIdentityWebApi(builder.Configura…
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…
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…
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…
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…
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…
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…
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…
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…
Short answer: Register app with multi-tenant support in Azure AD. Use common or organizations endpoint for authentication: Validate tenant ID in API to ensure authorized access. Real-world example (ShopNest) ShopNest on…
Short answer: APIM is a full-featured API gateway for publishing, securing, monitoring, and analyzing APIs. Helps abstract backend services, provide security, and manage consumption by developers. Real-world example (Sho…
Short answer: Import via OpenAPI/Swagger, WSDL (SOAP), or Azure Functions. Example in Azure Portal: Go to APIM → APIs → Add API → OpenAPI Upload your .json or .yaml API specification Configure backend URL and endpoints R…
Short answer: API Keys: Generated per subscription, required in request headers or query parameters. OAuth 2.0: APIM can validate bearer tokens issued by Azure AD or external IdP. Example – API key header: GET Header: Oc…
Short answer: Policies are configuration statements to modify API behavior. Can be applied at global, API, or operation level. Examples: rate limit, caching, authentication, request/response transformation Example – Rate…
Short answer: Use the <rate-limit> or <quota> policy in APIM. Controls max requests per minute/hour to prevent abuse. Real-world example (ShopNest) ShopNest on Azure typically uses App Service + SQL Database…
Short answer: Create API versions via URL path, query string, or header. Example: URL versioning: /v1/products Header versioning: api-version: 1.0 Example code Create API versions via URL path, query string, or header. E…
Short answer: Enable Azure Monitor, Application Insights, or built-in logging. Track requests, response times, errors, and throttling events. Real-world example (ShopNest) ShopNest on Azure typically uses App Service + S…
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.
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
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.
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
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
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
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.
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
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.
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
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.
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
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
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
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.
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
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.
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
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.
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);
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
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.
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
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.
ShopNest’s API runs on Azure App Service with staging slots—swap staging to production after smoke tests.
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.
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
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.
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
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
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
Microsoft Azure Microsoft Azure Tutorial · Azure
Short answer: Go to App Registration → API permissions Add delegated or application permissions Admin consent may be required
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
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; });
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
Microsoft Azure Microsoft Azure Tutorial · Azure
Short answer: Register app with multi-tenant support in Azure AD. Use common or organizations endpoint for authentication: Validate tenant ID in API to ensure authorized access.
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
Microsoft Azure Microsoft Azure Tutorial · Azure
Short answer: APIM is a full-featured API gateway for publishing, securing, monitoring, and analyzing APIs. Helps abstract backend services, provide security, and manage consumption by developers.
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
Microsoft Azure Microsoft Azure Tutorial · Azure
Short answer: Import via OpenAPI/Swagger, WSDL (SOAP), or Azure Functions. Example in Azure Portal: Go to APIM → APIs → Add API → OpenAPI Upload your .json or .yaml API specification Configure backend URL and endpoints
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
Microsoft Azure Microsoft Azure Tutorial · Azure
Short answer: API Keys: Generated per subscription, required in request headers or query parameters. OAuth 2.0: APIM can validate bearer tokens issued by Azure AD or external IdP. Example – API key header: GET Header: Ocp-Apim-Subscription-Key: <your-subscription-key>
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
Microsoft Azure Microsoft Azure Tutorial · Azure
Short answer: Policies are configuration statements to modify API behavior. Can be applied at global, API, or operation level. Examples: rate limit, caching, authentication, request/response transformation Example – Rate limit policy: <rate-limit calls="10" renewal-period="60" />
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
Microsoft Azure Microsoft Azure Tutorial · Azure
Short answer: Use the <rate-limit> or <quota> policy in APIM. Controls max requests per minute/hour to prevent abuse.
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
Microsoft Azure Microsoft Azure Tutorial · Azure
Short answer: Create API versions via URL path, query string, or header. Example: URL versioning: /v1/products Header versioning: api-version: 1.0
Create API versions via URL path, query string, or header. Example: URL versioning: /v1/products Header versioning: api-version: 1.0
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
Microsoft Azure Microsoft Azure Tutorial · Azure
Short answer: Enable Azure Monitor, Application Insights, or built-in logging. Track requests, response times, errors, and throttling events.
ShopNest on Azure typically uses App Service + SQL Database + Blob Storage + Application Insights for monitoring.
Install Toolliyo like an app Free
Home-screen access to tutorials, coding practice & career tools — no app store needed.
On iPhone/iPad: tap Share then Add to Home Screen.