Skip to content

Desi banjara

learn and grow together

  • Azure
    • Azure Compute
      • Azure Logic Apps
      • Azure Mobile Apps
      • Azure App Service
      • Azure Serverless Computing
        • Azure Functions
    • Azure Networking services
      • Azure Networking – VNET
    • Azure Database Services
      • Azure SQL
      • Azure Data Factory
      • Azure Databricks
    • Azure Analytics Services
    • Azure Cognitive Services
    • Azure Data and Storage
    • Azure Devops
    • Azure landing zone
    • Azure IaaS
    • Azure Internet of Things (IoT)
      • Azure Machine Learning
      • Azure AI and ML services
    • Azure Migration
    • Microsoft Azure Log Analytics
  • Azure Security
    • Azure Identity and Access Management
    • Azure Active Directory
    • Azure Defender
    • Azure security tools for logging and monitoring
    • Azure Sentinel
    • Azure Sentinel – Data connectors
  • Agile Software development
    • Atlassian Jira
  • Amazon Web Services (AWS)
    • Amazon EC2
    • Amazon ECS
    • AWS Lambda
  • Google
    • Google Cloud Platform (GCP)
    • gmail api
    • Google Ads
    • Google AdSense
    • Google Analytics
    • Google Docs
    • Google Drive
    • Google Maps
    • Google search console
  • Software architecture
    • Service-oriented architecture (SOA)
    • Domain-Driven Design (DDD)
    • Microservices
    • Event-Driven Architecture
    • Command Query Responsibility Segregation (CQRS) Pattern
    • Layered Pattern
    • Model-View-Controller (MVC) Pattern
    • Hexagonal Architecture Pattern
    • Peer-to-Peer (P2P) pattern
    • Pipeline Pattern
  • Enterprise application architecture
  • IT/Software development
    • API development
    • ASP.Net MVC
    • ASP.NET Web API
    • C# development
    • RESTful APIs
  • Cybersecurity
    • Cross Site Scripting (XSS)
    • Reflected XSS
    • DOM-based XSS
    • Stored XSS attacks
    • Ransomware
    • cyber breaches
    • Static Application Security Testing (SAST)
  • Interview questions
    • Microsoft Azure Interview Questions
    • Amazon Web Services (AWS) Interview Questions
    • Agile Software development interview questions
    • C# interview questions with answers
    • Google analytics interview questions with answers
    • Javascript interview questions with answers
    • Python interview questions with answers
    • WordPress developer interview questions and answers
  • Cloud
    • Cloud computing
    • Infrastructure as a Service (IaaS)
    • Platform as a Service (PaaS)
    • Software as a Service (SaaS)
    • Zero Trust strategy
  • Toggle search form
  • Azure Security, Privacy, Compliance, and Trust Azure Security
  • What is Stored XSS? Stored XSS attacks
  • Interview question: In how many ways you can pass parameters to a method? C# development
  • Hub and scope networking pattern IT Infrastructure networking
  • What is the difference between SQL Server on Azure VM and Azure SQL Database? Azure
  • Google Cloud Platform (GCP) Google Cloud Platform (GCP)
  • C# interview Questions – What is struct in C#? C# development
  • DOM-based XSS Cybersecurity

Author: DesiBanjara

IAAS vs PAAS vs SAAS – different types of cloud services

Posted on April 25, 2020 By DesiBanjara No Comments on IAAS vs PAAS vs SAAS – different types of cloud services

IAAS : In infrastructure as a service, you get the raw hardware from your cloud provider as a service i.e you get a server which you can configure with your own will. For Example: Azure VM, Amazon EC2 PAAS: Platform as a Service, gives you a platform to publish without giving the access to the underlying…

Read More “IAAS vs PAAS vs SAAS – different types of cloud services” »

Cloud services

Top 20 GIT Interview Questions

Posted on December 25, 2018 By DesiBanjara No Comments on Top 20 GIT Interview Questions

Top 20 [amazon_textlink asin=’B01ISNIKES|1449316387′ text=’GIT ‘ template=’ProductLink’ store=’desibanjara22-21|desibanjaraco-21′ marketplace=’IN|UK’ link_id=’68a83645-0879-11e9-9eea-b3538ea6ba7b’] interview questions:   What is a repository in GIT? Git stores this information in a data structure called a repository. A repository contains a directory named .git, where git keeps all of its metadata for the repository. The content of the .git directory are private to git….

Read More “Top 20 GIT Interview Questions” »

GIT, Interview questions, IT/Software development

ASP.Net MVC Interview Questions

Posted on September 9, 2018 By DesiBanjara No Comments on ASP.Net MVC Interview Questions

Interview Question 1: What is MVC? MVC is an architectural pattern which separates the representation and user interaction. It’s divided into three broader sections, Model, View, and Controller. Below is how each one of them handles the task. The View is responsible for the look and feel. It is the presentation layer in MVC. Model…

Read More “ASP.Net MVC Interview Questions” »

ASP.Net MVC, Interview questions, IT/Software development

Object Oriented Programming (OOP) in C#

Posted on September 9, 2018 By DesiBanjara No Comments on Object Oriented Programming (OOP) in C#

Interview Questions- Object Oriented Programming (OOP) in C#   1- What is Object oriented programming? Object-oriented programming (OOP) is a programming model based on the concept of “objects”. Objects are the real world entities which can have data and some behaviour. Data we call as attributes or fields or properties. Behaviour we call as procedures…

Read More “Object Oriented Programming (OOP) in C#” »

C# development, Interview questions, IT/Software development

SOLID Design Principles

Posted on September 9, 2018 By DesiBanjara No Comments on SOLID Design Principles

[amazon_textlink asin=’1484227611|1484236394′ text=’SOLID Design Principles’ template=’ProductLink’ store=’desibanjara22-21|desibanjaraco-21′ marketplace=’IN|UK’ link_id=’c71be429-b44f-11e8-bcc2-e9178ccb09b7′] are the design principles that enable us developers to manage most of the software design problems. The term SOLID is an acronym for five design principles intended to make software designs more understandable, flexible and maintainable. The principles are a subset of many principles introduced by…

Read More “SOLID Design Principles” »

C# development, Interview questions, IT/Software development, Web development

Differences between struct and classes in C# : Interview question

Posted on September 2, 2018 By DesiBanjara No Comments on Differences between struct and classes in C# : Interview question

Differences between struct and classes are: Struct Class Struct are value types; A variable of a structure type contains the structure’s data. Classes are reference types. A variable of a class type contains a reference to the data as a class type does. Struct use stack allocation. Classes use heap allocation. All struct elements are…

Read More “Differences between struct and classes in C# : Interview question” »

C# development, Interview questions, IT/Software development

C# interview Questions – What is struct in C#?

Posted on September 2, 2018 By DesiBanjara No Comments on C# interview Questions – What is struct in C#?

What is struct in C#? A struct type is a value type that is typically used to encapsulate small groups of related variables. When an object is created from a struct and assigned to a variable, the variable contains the complete value of the struct. When a variable that contains a struct is copied, all…

Read More “C# interview Questions – What is struct in C#?” »

C# development, Interview questions, IT/Software development

Asp.Net WebApi Interview Questions – Cont.

Posted on August 21, 2018 By DesiBanjara No Comments on Asp.Net WebApi Interview Questions – Cont.

Interview Questions 16 – What is the benefit of using REST in WebAPI? REST is used to make fewer data transfers between client and server which make it an ideal for using it in mobile apps. WebAPI also supports HTTP protocol. Therefore, it reintroduces the traditional way of the HTTP verbs for communication. Interview Questions…

Read More “Asp.Net WebApi Interview Questions – Cont.” »

ASP.NET Web API, Interview questions, IT/Software development, Web development

Asp.Net WebApi Interview Questions

Posted on August 21, 2018May 13, 2023 By DesiBanjara No Comments on Asp.Net WebApi Interview Questions

Asp.Net WebApi Interview Questions   Interview Questions 1 – Explain what is REST and RESTFUL? Representational State Transfer (REST) is an architectural style that defines a set of constraints to be used for creating web services and APIs. It has defined guidelines for creating services which are scalable. REST used with HTTP protocol using its…

Read More “Asp.Net WebApi Interview Questions” »

ASP.NET Web API, Interview questions, IT/Software development, Postman, Web development

Top 20 beginner level C# interview questions

Posted on August 4, 2018 By DesiBanjara No Comments on Top 20 beginner level C# interview questions

Top 20 beginner level C# interview questions What is C#? C# is a simple, modern, type-safe, managed and object oriented language, which is compiled by .Net framework for generating intermediate language (IL). It is designed to be a platform-independent language although it is implemented primarily on Windows. Its syntax is similar to C and C++…

Read More “Top 20 beginner level C# interview questions” »

C# development, Interview questions, IT/Software development

Posts pagination

Previous 1 … 29 30 31 … 35 Next



Categories

  • Agile Software development
  • AI Writing & Automation
  • Amazon AWS Certification Exam
  • Amazon EC2
  • Amazon ECS
  • Amazon Web Services (AWS)
  • Apache Kafka
  • API development
  • API development
  • Apple Mac
  • Applications of Graph Theory
  • ARM templates
  • Artificial intelligence
  • ASP.NET Core
  • ASP.Net MVC
  • ASP.NET Web API
  • Atlassian Jira
  • Availability zones
  • AWS DevOps Engineer Professional Exam
  • AWS Lambda
  • AZ-300: Microsoft Azure Architect Technologies Exam
  • Azure
  • Azure Active Directory
  • Azure AD B2C
  • Azure AD Domain Services
  • Azure AI and ML services
  • Azure Analytics Services
  • Azure App Service
  • Azure Application Gateway
  • Azure Archive Storage
  • Azure Blob Storage
  • Azure Cache for Redis
  • Azure Cognitive Services
  • Azure Compute
  • Azure Container Instances (ACI)
  • Azure Core Services
  • Azure Cosmos DB
  • Azure Data and Storage
  • Azure Data Factory
  • Azure Data Lake Storage
  • Azure Database for MySQL
  • Azure Database for PostgreSQL
  • Azure Database Migration Service
  • Azure Database Services
  • Azure Databricks
  • Azure DDoS Protection
  • Azure Defender
  • Azure Devops
  • Azure Disk Storage
  • Azure ExpressRoute
  • Azure File Storage
  • Azure Firewall
  • Azure Functions
  • Azure HDInsight
  • Azure IaaS
  • Azure Identity and Access Management
  • Azure instance metadata service
  • Azure Internet of Things (IoT)
  • Azure Key Vault
  • Azure Kubernetes Service (AKS)
  • Azure landing zone
  • Azure Lighthouse
  • Azure Load Balancer
  • Azure Logic Apps
  • Azure Machine Learning
  • Azure Machine Learning
  • Azure Migration
  • Azure Mobile Apps
  • Azure Network Watcher
  • Azure Networking – VNET
  • Azure Networking services
  • Azure Pricing and Support
  • Azure Pricing Calculator
  • Azure Queue Storage
  • Azure regions
  • Azure Resource Manager
  • Azure Security
  • Azure Security Center
  • Azure Security Information and Event Management (SIEM)
  • Azure security tools for logging and monitoring
  • Azure Security, Privacy, Compliance, and Trust
  • Azure Sentinel
  • Azure Sentinel – Data connectors
  • Azure Serverless Computing
  • Azure Service Level Agreement (SLA)
  • Azure SLA calculation
  • Azure SQL
  • Azure SQL Database
  • Azure Storage
  • Azure Stream Analytics
  • Azure Synapse Analytics
  • Azure Table Storage
  • Azure Virtual Machine
  • Azure VNET
  • Azure VPN Gateway
  • Blogging
  • Business
  • C# development
  • C# interview questions with answers
  • Career success
  • CDA (Clinical Document Architecture)
  • ChatGPT
  • CI/CD pipeline
  • CISSP certification
  • CKEditor
  • Cloud
  • Cloud computing
  • Cloud Computing Concepts
  • Cloud FinOps
  • Cloud FinOps Optmisation
  • Cloud services
  • COBIT
  • Command Query Responsibility Segregation (CQRS) Pattern
  • Configure SSL offloading
  • Content Creation
  • Content management system
  • Continuous Integration
  • conversational AI
  • Cross Site Scripting (XSS)
  • cyber breaches
  • Cybersecurity
  • Data Analysis
  • Data Clean Rooms
  • Data Engineering
  • Data Warehouse
  • Database
  • DeepSeek AI
  • DevOps
  • DevSecOps
  • Docker
  • DOM-based XSS
  • Domain-Driven Design (DDD)
  • Dynamic Application Security Testing (DAST)
  • Enterprise application architecture
  • Event-Driven Architecture
  • GIT
  • git
  • gmail api
  • Google
  • Google Ads
  • Google AdSense
  • Google Analytics
  • Google analytics interview questions with answers
  • Google Cloud Platform (GCP)
  • Google Docs
  • Google Drive
  • Google Flights API
  • Google Maps
  • Google search console
  • Graph Algorithms
  • Graph theory
  • Healthcare Interoperability Resources
  • Hexagonal Architecture Pattern
  • HL7 vs FHIR
  • HTML
  • IBM qradar
  • Information security
  • Infrastructure as a Service (IaaS)
  • Internet of Things (IoT)
  • Interview questions
  • Introduction to DICOM
  • Introduction to FHIR
  • Introduction to Graph Theory
  • Introduction to HL7
  • IT governance
  • IT Infrastructure networking
  • IT/Software development
  • Javascript interview questions with answers
  • Kubernetes
  • Layered Pattern
  • Leadership
  • Leadership Quote
  • Life lessons
  • Load Balancing Algorithms
  • Low-code development platform
  • Management
  • Microservices
  • Microservices
  • Microsoft
  • Microsoft 365 Defender
  • Microsoft AI-900 Certification Exam
  • Microsoft AZ-104 Certification Exam
  • Microsoft AZ-204 Certification Exam
  • Microsoft AZ-900 Certification Exam
  • Microsoft Azure
  • Microsoft Azure certifications
  • Microsoft Azure Log Analytics
  • Microsoft Cloud Adoption Framework
  • Microsoft Exam AZ-220
  • Microsoft Exam AZ-400
  • Microsoft Excel
  • Microsoft Office
  • Microsoft Teams
  • Microsoft Teams
  • Microsoft word
  • Model-View-Controller (MVC) Pattern
  • Monitoring and analytics
  • NoSQL
  • OpenAI
  • OutSystems
  • Peer-to-Peer (P2P) pattern
  • Personal Growth
  • Pipeline Pattern
  • PL-100: Microsoft Power Platform App Maker
  • PL-200: Microsoft Power Platform Functional Consultant Certification
  • PL-900: Microsoft Power Platform Fundamentals
  • Platform as a Service (PaaS)
  • Postman
  • Project management
  • Python interview questions with answers
  • Rally software
  • Ransomware
  • Reflected XSS
  • RESTful APIs
  • Rich Text Editor
  • SC-100: Microsoft Cybersecurity Architect
  • Scrum Master Certification
  • Service-oriented architecture (SOA)
  • SIEM
  • Software architecture
  • Software as a Service (SaaS)
  • SonarQube
  • Splunk
  • SQL
  • SQL Azure Table
  • SQL Server
  • Startup
  • Static Application Security Testing (SAST)
  • Stored XSS attacks
  • System Design Interview
  • Table Storage
  • Test Driven Development (TDD)
  • TinyMCE
  • Top technology trends for 2023
  • Types of Graphs
  • Uncategorized
  • User Experience (UX) design
  • Version control system
  • virtual machine scale set
  • visual studio
  • WCF (Windows Communication Foundation)
  • Web development
  • Windows Hello
  • WordPress
  • WordPress developer interview questions and answers
  • Yammer
  • Zero Trust strategy



Recent Posts

  • Ace Your FAANG System Design Interview like Google & Amazon: The 8 Whitepapers You Must Read
  • From $0 to $10K/Month Writing Online – The Exact Roadmap to Build a Profitable Writing Career
  • How to Write an AI-Generated Article That Feels 100% Human Using ChatGPT
  • DeepSeek AI: The OpenAI Rival You Didn’t See Coming (But Should)
  • 10 Ways AI is Revolutionizing Healthcare (And Why Your Doctor Might Just Be a Robot Soon)
  • Microsoft AI-900 Certification Exam Practice Questions Microsoft AI-900 Certification Exam
  • WordPress Content management system
  • Sample Exam Questions 5: AZ-300: Microsoft Azure Architect Technologies AZ-300: Microsoft Azure Architect Technologies Exam
  • Azure Analytics Services Azure
  • Scrum Master Certification Scrum Master Certification
  • PL-100: Microsoft Power Platform App Maker Certification – Exam Practice Questions PL-100: Microsoft Power Platform App Maker
  • How to build high performing teams? Project management
  • What is OpenAI? OpenAI

Copyright © 2025 Desi banjara.

Powered by PressBook News WordPress theme