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 Migration Azure
  • Interview question: What are the types of arrays in C#? C# development
  • Unveiling the Art of FinOps: Evaluating Cost Efficiency in Cloud Architectures Cloud
  • How to send outlook email to Microsoft Teams channel? Microsoft Teams
  • Azure Cache for Redis Azure
  • Exam AZ-900 – AZURE FUNDAMENTALS Azure
  • Modernising your .net applications to azure app service & Azure SQL Azure
  • Microsoft AZ-204 Certification Exam Practice Questions – 1 Microsoft AZ-204 Certification Exam

Category: C# development

Interview question: Which class act as a base class for all the data types in .net?

Posted on July 30, 2018 By DesiBanjara No Comments on Interview question: Which class act as a base class for all the data types in .net?

System.Object is the base class for all data types in C# Common Type System (CTS). Object is an alias for System.Object class. The object types can be assigned values of any other types, value types, reference types. Predefined or user-defined types. However, before assigning values, it needs type conversion.   [amazon_link asins=’9351190900,1787287041,9386873583,007070368X,8120349172,9351343189,8120352068,9352136640,B016Z18MLG|1840787198,B016Z18MLG,0985580135,1119458684,1484230175,1119428114,1491987650,1491988533,1119449278′ template=’ProductGrid’ store=’desibanjara22-21|desibanjaraco-21′ marketplace=’IN|UK’…

Read More “Interview question: Which class act as a base class for all the data types in .net?” »

C# development, Interview questions, IT/Software development

Interview question: Can we assign null value into value type variable?

Posted on July 30, 2018 By DesiBanjara No Comments on Interview question: Can we assign null value into value type variable?

No we cannot assign null value into value type variable, but we can assign null values into reference type variable.   [amazon_link asins=’9351190900,8120352068,9352136640,007070368X,B078NRPJT6,B0072T3X38,B011V10Z2O,B06X6JTX4B,B01FFQ1FS4,B0719KCBZT|1840787198,1491988533,1491987650,1484230175,B00IAGBTZQ,B00UNEHS44,B01AWLB1PY,B01N0AKAYE,B00SX8GSGG’ template=’ProductGrid’ store=’desibanjara22-21|desibanjaraco-21′ marketplace=’IN|UK’ link_id=’20ae0718-93c0-11e8-baef-7374f0f50c99′]

C# development, Interview questions, IT/Software development

Interview question: What is the difference between ref and out parameters?

Posted on July 30, 2018 By DesiBanjara No Comments on Interview question: What is the difference between ref and out parameters?

Reference parameter (Ref parameter) copies the reference to the memory location of an argument into the formal parameter. This means that changes made to the parameter affect the argument. Output parameters are similar to reference parameters, except that they transfer data out of the method rather than into it. [amazon_link asins=’9351190900,9352136640,8120349172,007070368X,B076HG97KS,B019MQLUZG,B079R17XY2,B01N3BN5E8|1840787198,1484230175,1491987650,1491988533,B00IAGBTZQ,B01AWLB1PY,B00UNEHS44,B01N0AKAYE’ template=’ProductGrid’ store=’desibanjara22-21|desibanjaraco-21′ marketplace=’IN|UK’ link_id=’68ddef8e-93bc-11e8-92e5-1f0ecc2f4de5′]

C# development, Interview questions, IT/Software development

Interview question: Can you return multiple values from a function in C#?

Posted on July 30, 2018 By DesiBanjara No Comments on Interview question: Can you return multiple values from a function in C#?

Yes, by using output parameters, we can return multiple values from a function in C#. A return statement can be used for returning only one value from a function. However, using output parameters, you can return two values from a function.   [amazon_link asins=’007070368X,9352136640,1787287041,8120349172,B078NRPJT6,B011V10Z2O,B011V135LM,B0719KCBZT|1840787198,1491987650,1491988533,1119449278,B01AC6P7OU,B00RCIU1S4,B0036DUP1M,B06Y1V7SZC’ template=’ProductGrid’ store=’desibanjara22-21|desibanjaraco-21′ marketplace=’IN|UK’ link_id=’085f5b85-93b9-11e8-9df3-cd704103ff25′]

C# development, Interview questions, IT/Software development

Interview question: In how many ways you can pass parameters to a method?

Posted on July 30, 2018 By DesiBanjara No Comments on Interview question: In how many ways you can pass parameters to a method?

There are three ways we can pass parameters to a method: Value parameters – This method copies the actual value of an argument into the formal parameter of the function. In this case, changes made to the parameter inside the function have no side effect on the argument. Reference parameters – This method copies the…

Read More “Interview question: In how many ways you can pass parameters to a method?” »

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

Interview question: What is Jagged Array in C#?

Posted on July 30, 2018 By DesiBanjara No Comments on Interview question: What is Jagged Array in C#?

A jagged array is an array whose elements are arrays. The elements of a jagged array can be of different dimensions and sizes. A jagged array is also called an “array of arrays”. You can initialize a jagged array as – int [ ][ ] myArray = new int [2][ ] {new int [ ]{10,11,12},…

Read More “Interview question: What is Jagged Array in C#?” »

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

Interview question: Describe the difference between a Thread and a Process?

Posted on July 29, 2018 By DesiBanjara No Comments on Interview question: Describe the difference between a Thread and a Process?

A thread can do anything a process can do. But since a process can consist of multiple threads, a thread could be considered a ‘lightweight’ process. So the essential difference between a thread and a process is the work that each one is used to accomplish. Threads are used for small tasks, whereas processes are…

Read More “Interview question: Describe the difference between a Thread and a Process?” »

C# development, Interview questions, IT/Software development

Interview question: What is mean by operators in C#?

Posted on July 29, 2018 By DesiBanjara No Comments on Interview question: What is mean by operators in C#?

Operators, in C#, are symbols used within an expression or statement to specify the operations to be performed during evaluation of the expression. Operators are program elements that can be applied to one or more operands in an expression to perform computations. The operands used with the operator can be literals, fields, local variables and…

Read More “Interview question: What is mean by operators in C#?” »

C# development, Interview questions, IT/Software development

Interview question: What is the use of “using” keyword in C#?

Posted on July 29, 2018 By DesiBanjara No Comments on Interview question: What is the use of “using” keyword in C#?

In C#, we use “using” keyword for two different purpose. “Using” keyword is used to include a namespace in the program. A program generally has multiple using statements. The using statement is used to obtain a resource, execute a statement, and then dispose of that resource. Example: using (SqlConnection dbConn = new SqlConnection(conn)){ // Your…

Read More “Interview question: What is the use of “using” keyword in C#?” »

C# development, Interview questions, IT/Software development

Interview question: What are the namespaces in C#.NET?

Posted on July 27, 2018 By DesiBanjara No Comments on Interview question: What are the namespaces in C#.NET?

Define namespace? What are the namespaces in C#.NET? Namespace is a logical grouping of classes. The namespace is a container which will be used to organize the hierarchal set of .Net classes. Namespace is designed for providing a way to keep one set of class names separate from another. The class names declared in one…

Read More “Interview question: What are the namespaces in C#.NET?” »

C# development, Interview questions, IT/Software development

Posts pagination

Previous 1 2 3 4 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)
  • Cloud computing – Types of Cloud Models Uncategorized
  • Continuous Integration/Continuous Deployment (CI/CD) CI/CD pipeline
  • Google Cloud Platform (GCP) Google Cloud Platform (GCP)
  • Azure Cosmos DB Azure Cosmos DB
  • Interview question: What is the use of NULL Coalescing Operator (??) in C#? Interview questions
  • Life lessons – Do not let the behavior of others destroy your inner peace Life lessons
  • Azure Analytics Services Azure
  • Interview question: What is the use of “using” keyword in C#? C# development

Copyright © 2025 Desi banjara.

Powered by PressBook News WordPress theme