Skip to content

Desi banjara

  • “The bravest sight in the world is to see a great man struggling against adversity.”– Seneca Motivational & Inspirational Quotes
  • I know that the most special day in your life is my birthday. But today we are celebrating the most special day in my life – Your birthday. Happy birthday mom. Birthday Wishes For Mom
  • Microsoft Exam AZ-400 Certification Exam Practice Questions – 1 Uncategorized
  • “To travel is to discover that everyone is wrong about other countries.” – Aldous Huxley Quotes
  • Do you believe in miracles? I do, because having you in my life certainly seems like a miracle every single day. I love you mom. Happy Birthday! Birthday Wishes For Mom
  • “It doesn’t matter how slow you go, as long as you don’t stop.”– Confucius Motivational & Inspirational Quotes
  • Entrepreneurship Inspirational Quotes Entrepreneurship
  • “Prosperity makes friends, adversity tries them.”– Publilius Syrus Motivational & Inspirational Quotes

Category: C# 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

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

Interview question: How to sort an array in C#?

Posted on July 31, 2018 By DesiBanjara No Comments on Interview question: How to sort an array in C#?

By using Array.sort (arrayName) method.  It sorts the elements in an entire one-dimensional Array using the IComparable implementation of each element of the Array. If you want to sort in descending order, First sort the array using Array.sort(arrayName) then reverse the same using Array.reverse (arrayName) method. [amazon_link asins=’9351190900,007070368X,8120352068,9386873583|1840787198,1484230175,0985580135′ template=’ProductGrid’ store=’desibanjara22-21|desibanjaraco-21′ marketplace=’IN|UK’ link_id=’66554407-915d-11e8-9dd7-b3406be566d4′]

C# development, Interview questions

Interview question: Which class acts as a base class for all arrays in C#?

Posted on July 31, 2018 By DesiBanjara No Comments on Interview question: Which class acts as a base class for all arrays in C#?

The Array class is the base class for all the arrays in C#. It is defined in the System namespace. The Array class provides various properties and methods to work with arrays.  

C# development, Interview questions, IT/Software development

Interview question: What are the types of arrays in C#?

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

There are three types of array in C#: Single-Dimensional Multidimensional Jagged arrays [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: 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 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

Posts navigation

1 2 … 4 Next



Archives

  • February 2023
  • February 2022
  • June 2021
  • March 2021
  • January 2021
  • December 2020
  • November 2020
  • October 2020
  • September 2020
  • July 2020
  • June 2020
  • April 2020
  • December 2019
  • December 2018
  • November 2018
  • October 2018
  • September 2018
  • August 2018
  • July 2018
  • June 2018
  • May 2018
  • April 2018
  • January 2018
  • September 2017
  • August 2017
  • July 2017
  • June 2017
  • May 2017
  • April 2017
  • August 2015
  • May 2015
  • April 2014
  • November 2013

Categories

  • Acer
  • Amazon AWS Certification Exam
  • Amazon Kindle
  • Android phones
  • ASP.Net MVC
  • ASP.NET Web API
  • AWS DevOps Engineer Professional Exam
  • AZ-300: Microsoft Azure Architect Technologies Exam
  • Azure Active Directory
  • Azure App Services
  • Azure Data Factory
  • Azure Logic Apps
  • Azure Mobile Apps
  • Azure Virtual Machine
  • Best Wishes Messages
  • birthday messages for boyfriend
  • Birthday messages For Girlfriend
  • Birthday Wishes
  • Birthday Wishes For Mom
  • Business
  • C# development
  • Cameras
  • Canon
  • Cloud
  • Cloud services
  • digital-cameras
  • Diwali
  • Entrepreneurship
  • eReaders
  • Family Quotes
  • Family Quotes
  • Friendship Quotes
  • Gadgets
  • Games
  • Get Well Soon Messages
  • GIT
  • Good Morning Wishes
  • Google
  • Gratitude Quote
  • Guru Nanak Jayanti
  • Halloween
  • Happiness Quote
  • Happy Diwali Wishes
  • Happy Independence Day Wishes
  • Happy New Year Wishes
  • HTC
  • HTC One
  • HTML
  • I Miss You Messages
  • Inspirational Quotes
  • Inspirational Travel Quotes
  • Interview questions
  • IT/Software development
  • Leadership Quote
  • Life lessons
  • Love Quotes
  • Love shayari
  • Messages
  • 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 Exam AZ-220
  • Microsoft Excel
  • Microsoft Office
  • Microsoft word
  • Mobile phones
  • Motivational & Inspirational Quotes
  • Nature Quotes
  • Nexus
  • Nikon
  • Pixels
  • PL-200: Microsoft Power Platform Functional Consultant Certification
  • PL-900: Microsoft Power Platform Fundamentals
  • postman
  • Quotes
  • Robin Sharma
  • Samsung Galaxy S5
  • Self improvement quotes
  • Self-Confidence Quote
  • SonarQube
  • Sony PlayStation 4
  • SQL
  • SQL Server
  • Success Quotes
  • Travel Quotes
  • Uncategorized
  • Uplifting Quotes
  • WCF (Windows Communication Foundation)
  • Web development
  • Wishes
  • Wishes for Newborn Baby

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org



Recent Posts

  • Azure Data Factory
  • What is Azure Active Directory?
  • Azure Virtual Machine
  • Azure Logic Apps
  • Azure Mobile Apps

Recent Comments

  • Yosianus on Error while sending json model in POST request to web API service using postman
  • “People are like stained-glass windows. They sparkle and shine when the sun is out, but when the darkness sets in their true beauty is revealed only if there is light from within.” Elisabeth Kübler-Ross Motivational & Inspirational Quotes
  • A day full of all things good is what a friend wishes for you. Birthday Wishes
  • AWS DevOps Engineer Professional Exam Practice Questions – 6 AWS DevOps Engineer Professional Exam
  • How to take screenshot in Samsung galaxy S5 Android phones
  • How to take a screenshot on HTC One phones? Android phones
  • With as much love, as I can share, I wanted to let you know I care. Sending lots of love your way, On your very special day! Happy Birthday, sweetheart! Birthday Wishes
  • “To travel is to discover that everyone is wrong about other countries.” – Aldous Huxley Quotes
  • Thank you for being strong enough to say no when you know it won’t be good for me at all. Thanks for being soft enough to always say yes whenever you realize it is for my own good. I love you Mom! Birthday Wishes For Mom

Copyright © 2023 Desi banjara.

Powered by PressBook News WordPress theme