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
  • How to deploy ARM templates with parameter file? ARM templates
  • Interview question: What is the use of NULL Coalescing Operator (??) in C#? Interview questions
  • Azure Active Directory Azure Active Directory
  • Interview question: What are the types of arrays in C#? C# development
  • Top Amazon Web Services (AWS) Interview Questions Amazon Web Services (AWS)
  • Some useful Microsoft word shortcut keys Microsoft Office
  • Get started with Azure Cosmos DB Azure Cosmos DB
  • Overview of Microsoft Teams Microsoft Teams

Tag: C#

Interview question: In c#, How can we create a function which can accept varying number of arguments?

Posted on July 31, 2018 By DesiBanjara No Comments on Interview question: In c#, How can we create a function which can accept varying number of arguments?

By using the params keyword, a method parameter can be specified which takes a variable number of arguments or even no argument. After the params keyword used in a method declaration, no additional parameters are permitted. Also only one params keyword is allowed in a method declaration. [amazon_link asins=’B0719KCBZT,B0779CNVM8,B011V135LM,B01CZWN0TI,B078NRPJT6,B00F0P2H06,B01FFQ1FS4,B00XHVQZNA,B011V108H6|B000BJVUS6,B01HEZ5H6K,B00IG6GEVO,B0199NOWM0,B00SNH9TKO,B01I9EFN1Y,B00EEV2QVW,B0107BYPLG,B005ANYMG0′ template=’ProductGrid’ store=’desibanjara22-21|desibanjaraco-21′ marketplace=’IN|UK’ link_id=’85aaae9a-94e4-11e8-aef2-6dca01bb821b’]

C# development, Interview questions, IT/Software development

Interview question: What is the use of NULL Coalescing Operator (??) in C#?

Posted on July 31, 2018 By DesiBanjara No Comments on Interview question: What is the use of NULL Coalescing Operator (??) in C#?

The Null coalescing operator is used with the nullable value types and reference types. It is a binary operator that simplifies checking for null values. If the value of the first operand is null, then the operator returns the value of second operand, otherwise it returns the value of the first operand. Example:  x ??…

Read More “Interview question: What is the use of NULL Coalescing Operator (??) in C#?” »

Interview questions, IT/Software development

Interview question: What are nullable types in C#?

Posted on July 31, 2018 By DesiBanjara No Comments on Interview question: What are nullable types in C#?

C# provides a special data types, the nullable types, to which you can assign normal range of values as well as null values. [amazon_link asins=’B0719KCBZT,B0779CNVM8,B01CZWN0TI,B011V135LM,B0072T3X38,B078NRPJT6,B01FFQ1FS4,B00XHVQZNA,B011V108H6|B000BJVUS6,B01HEZ5H6K,B0199NOWM0,B00SNH9TKO,B01I9EFN1Y,B00EEV2QVW,B0107BYPLG,B005ANYMG0′ template=’ProductGrid’ store=’desibanjara22-21|desibanjaraco-21′ marketplace=’IN|UK’ link_id=’8afacfe7-94e3-11e8-8441-67501bd4f6a0′]

C# development, Interview questions, IT/Software development

Interview question: What is the purpose of an access specifier in C#?

Posted on July 31, 2018 By DesiBanjara No Comments on Interview question: What is the purpose of an access specifier in C#?

The purpose of an access specifier is to define the scope and visibility of a class member. C# provides five access specifiers: public, private , protected , internal and protected internal. Public access specifier allows a class to expose its member variables and member functions to other functions and objects. Any public member can be accessed from…

Read More “Interview question: What is the purpose of an access specifier in C#?” »

C# development, Interview questions, IT/Software development

Interview question: What is encapsulation?

Posted on July 31, 2018 By DesiBanjara No Comments on Interview question: What is encapsulation?

[amazon_textlink asin=’8120352068|1491987650′ text=’Encapsulation’ template=’ProductLink’ store=’desibanjara22-21|desibanjaraco-21′ marketplace=’IN|UK’ link_id=’f15ac4fb-aa0b-11e8-8a76-3b617ede6a31′] is defined ‘as the process of enclosing one or more items within a physical or logical package’. In other words, Encapsulation is a process of binding data members (variables, properties) and member functions (methods) into a single unit. And Class is the best example of encapsulation. In [amazon_textlink asin=’9351191494|1292024011′…

Read More “Interview question: What is encapsulation?” »

C# development, IT/Software development

Interview question: What is the purpose of “is” operator in C#?

Posted on July 31, 2018 By DesiBanjara No Comments on Interview question: What is the purpose of “is” operator in C#?

“is” operator determines whether an object is of certain type. Ex- If (David is Employee) // checks if David is an object of the Employee class. [amazon_link asins=’007070368X,8120352068,9352136640,8120349172,B015KHN65I,B075GTLVJ2,B06X3WF5FJ|1491988533,1491987650,B016Z18MLG,B000BJVUS6,B00DUQH1IK,B01HLBUXR0,B00SNH9TKO,B01HEZ5H6K,B0107BYPLG,B005ANYMG0′ template=’ProductGrid’ store=’desibanjara22-21|desibanjaraco-21′ marketplace=’IN|UK’ link_id=’7cb2d21b-9492-11e8-b23a-8b26c4ccd908′]

C# development, Interview questions, IT/Software development

Interview question: What is the difference between GetType() and typeof()?

Posted on July 31, 2018 By DesiBanjara No Comments on Interview question: What is the difference between GetType() and typeof()?

typeof() typeof keyword takes the Type itself as an argument and returns the underline Type of the argument. System.Type t1= typeof(Event); // Event is a Type GetType() GetType() will return the given variable base data type. It can only be invoked on the instance of the type. Event event= new Event(); System.Type t2= event.GetType(); // event…

Read More “Interview question: What is the difference between GetType() and typeof()?” »

C# development, Interview questions, IT/Software development

Interview question: What is the difference between dynamic type variables and object type variables?

Posted on July 31, 2018 By DesiBanjara No Comments on Interview question: What is the difference between dynamic type variables and object type variables?

Dynamic types are similar to object types except that type checking for object type variables takes place at compile time, whereas for the dynamic variables type checking take place at run time. [amazon_link asins=’9351190900,1787287041,9386873583,9351343189,8120349172,007070368X,8120352068,9352136640,B016Z18MLG|1840787198,B016Z18MLG,1491988533,1491987650,1119428114,1484230175,1119449278,1119458684,0985580135′ template=’ProductGrid’ store=’desibanjara22-21|desibanjaraco-21′ marketplace=’IN|UK’ link_id=’23be5044-948b-11e8-b877-0dfd42244dbc’]  

C# development, Interview questions, IT/Software development

Interview question: What are dynamic type variables in C#?

Posted on July 30, 2018 By DesiBanjara No Comments on Interview question: What are dynamic type variables in C#?

You can store any type of value in the dynamic type variable. Type checking for these types of variables takes place at runtime. Syntax: dynamic <variable_name> = value; Example: dynamic d = 20; [amazon_link asins=’9351190900,1787287041,9386873583,007070368X,8120349172,8120352068,9352136640|1840787198,1491987650,1491988533,0985580135,1509306986,1119458684,1119428114,1484230175′ template=’ProductGrid’ store=’desibanjara22-21|desibanjaraco-21′ marketplace=’IN|UK’ link_id=’ffa1faf1-93fb-11e8-a5ca-59726084cb0d’]

C# development, Interview questions, IT/Software 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

Posts pagination

Previous 1 2 3 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)
  • Azure Security Azure
  • Graph Algorithms Graph Algorithms
  • Azure Active Directory Azure Active Directory
  • Postman API development
  • What is Azure App Services? Microsoft Azure
  • How to build high performing teams? Project management
  • Yammer: Empowering Collaboration and Communication within Organisations Yammer
  • AWS DevOps Engineer Professional Exam Practice Questions – 3 AWS DevOps Engineer Professional Exam

Copyright © 2025 Desi banjara.

Powered by PressBook News WordPress theme