{"id":2256,"date":"2022-06-16T12:15:51","date_gmt":"2022-06-16T06:45:51","guid":{"rendered":"https:\/\/codequotient.com\/blog\/?p=2256"},"modified":"2024-02-14T17:31:24","modified_gmt":"2024-02-14T12:01:24","slug":"c-online-interview-questions-answers","status":"publish","type":"post","link":"https:\/\/codequotient.com\/blog\/c-online-interview-questions-answers\/","title":{"rendered":"10 C# Online Interview Questions and Answers for Freshers"},"content":{"rendered":"<p>First released at the turn of the century in 2000, C# (pronounced as <strong>&#8220;C-Sharp&#8221;<\/strong>) is a simple, modern, generic-purpose, object-oriented programming language developed by Microsoft within its .NET initiative.<\/p>\n<p>It was built to meet the growing demand for web-based applications that Visual Basic (VB) or C++ could not fulfil. C# merges the best features of Java and C++, making it easier for C and C++ developers to start using C#.<\/p>\n<p>The <a href=\"https:\/\/www.glassdoor.co.in\/Salaries\/c-developer-salary-SRCH_KO0,11.htm#:~:text=Developer%20C%2FC%2B%2B%20Salaries%20in%20India&amp;text=The%20national%20average%20salary%20for,%E2%82%B97%2C56%2C062%20in%20India.\">average salary<\/a> in the India for a C# developer ranges from <b>\u20b97,56,062<\/b>! This makes C# one of the most lucrative programming languages to learn for any budding developer who aspires to lead a fulfilling career in the programming industry.<\/p>\n<p>For any freshers preparing for a C# interview, it is essential to note that although interviewers may ask many questions, knowing the basics of this programming language certainly improves the chances of getting hired.<\/p>\n<p>With that in mind, here are 10 essential questions that every fresher should know when appearing for an interview for any C# role.<\/p>\n<h2><b>10 Essential C# Questions Freshers Must Know<\/b><\/h2>\n<p><img fetchpriority=\"high\" decoding=\"async\" class=\"aligncenter size-full wp-image-2257\" src=\"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2022\/06\/10-C-Online-Interview-Questions-And-Answers-For-Freshers-Body-Image.jpg\" alt=\"10-C-Online-Interview-Questions-And-Answers-For-Freshers\" width=\"1480\" height=\"774\" \/><\/p>\n<h3><b>1.\u00a0 What is C#?<\/b><\/h3>\n<p>C# is an object-oriented, type-safe programming language developed and compiled within Microsoft\u2019s .NET framework used to develop windows applications.<\/p>\n<p>It is used to develop professional and dynamic websites on the .NET platform, open-source software, Windows applications and video games.<\/p>\n<p>Want to see what it takes to go from a learner to a software engineer, read Baljeet\u2019s inspirational journey <a href=\"https:\/\/codequotient.com\/blog\/learner-software-engineer-baljeets-journey\/\">here<\/a>.<\/p>\n<h3><b>2. Can you name some benefits of C#?<\/b><\/h3>\n<p>It has a low learning curve, making it easier for freshers to grasp basic concepts and start developing creative applications. It is also highly scalable as the strict nature of its static coding makes programs very consistent and reliable, no matter their size and scope.<\/p>\n<p>It enjoys enormous community support. As per <a href=\"https:\/\/insights.stackoverflow.com\/survey\/2019\">StackOverflow\u2019s 2019 survey<\/a>, C# has the world&#8217;s third-largest community of developers. In addition, <b>67% of developers love it, and thousands of C# jobs are available in the US at any time.<\/b><\/p>\n<p>It has reusable components for faster product development and a vast library that provides high functionality, simplicity and efficiency.<\/p>\n<h3><b>3. What are the types of comments in C#?<\/b><\/h3>\n<p>There are three different types of comments in C#:<\/p>\n<ul>\n<li aria-level=\"1\"><b>Single line:\u00a0<\/b><\/li>\n<\/ul>\n<p>\/\/This is a single line comment<\/p>\n<ul>\n<li aria-level=\"1\"><b>Multiple line (\/* *\/):\u00a0<\/b><\/li>\n<\/ul>\n<p>\/*This is a multiple line comment<\/p>\n<p>We are in line 2<\/p>\n<p>Last line of comment*\/<\/p>\n<ul>\n<li aria-level=\"1\"><b>\u00a0XML Comments (\/\/\/):\u00a0<\/b><\/li>\n<\/ul>\n<p>\/\/\/ summary;<\/p>\n<p>\/\/\/ Set error message for multilingual language.<\/p>\n<p>\/\/\/ summary<\/p>\n<h3><b>4. Can multiple catch blocks be executed in C#?<\/b><\/h3>\n<p>No, several catch blocks of a similar kind cannot be executed at the same time. Instead, control is given to the \u2018finally\u2019 block when the correct catch code has been executed, and then the code following the \u2018finally\u2019 block is executed.<\/p>\n<h3><b>5. What is the difference between public, static, and void in C#?<\/b><\/h3>\n<p>Public declared variables and methods can be accessed from anywhere in the programme. Without generating an instance of the class, static declared variables or methods are globally available.<\/p>\n<h3><\/h3>\n<p>By default, static members are not globally available; however, this can be changed depending on the type of access modification employed.<\/p>\n<p>Instead, the method&#8217;s address is saved as the entry point, and the compiler utilises this information to start execution before any objects are generated.<\/p>\n<p>Finally, Void is a type modifier stating that the method or variable returns no value or null.<\/p>\n<p>If you\u2019d like to understand the difference between a compiler and an interpreter, <a href=\"https:\/\/codequotient.com\/blog\/difference-compiler-interpreter-java\/\">Click here<\/a>.<\/p>\n<h3><b>6. What is an object in C#?<\/b><\/h3>\n<p>An object is an instance of a class that allows us to access its methods. To construct an object, you can use the <strong>&#8220;New&#8221;<\/strong> keyword.<\/p>\n<p>The information regarding the methods, variables, and behaviour of a class that generates an object in memory will be stored in that class.<\/p>\n<h3><b>7. What are constructors in C#?<\/b><\/h3>\n<p>A constructor is a member function in a class that has the same name as its class. The constructor is automatically invoked whenever an object class is created. It constructs the values of data members while initialising the class.<\/p>\n<h3><b>8. What are Jagged Arrays in C#?<\/b><\/h3>\n<p>Any Array with elements of the type \u2018array\u2019 is called a jagged Array. Unlike normal arrays, the elements within a jagged array can be of different dimensions and sizes. Therefore, we can also call a jagged Array an Array of arrays.<\/p>\n<h3><b>9. What are serialisation and de-serialization in C#?<\/b><\/h3>\n<p>Whenever we wish to send an item over the internet, we must first turn it into a stream of bytes. Serialisation is the process of transforming an item into a stream of bytes.<\/p>\n<p>To be serialisable, an object must implement the ISerialize Interface. De-serialization is the process of constructing an object from a stream of bytes in the opposite direction.<\/p>\n<h3><b>10. What is the difference between constants and read-only in C#?<\/b><\/h3>\n<p>Constant variables are declared and initialised at compile time. Their values get fixed and cannot be changed afterwards.<\/p>\n<p>Read-only is used only when we want to assign the value to a variable at run time.<\/p>\n<p>These were a few critical questions to help you cover some of the basics of the C# language to crack your interview as a fresher.<\/p>\n<p>Going through these answers and understanding the concepts is a surefire way to increase your grasp of the C# programming language.<\/p>\n<p>Whether you are a fresher, an experienced professional, or simply an avid learner, <a href=\"https:\/\/codequotient.com\/\">CodeQuotient<\/a> offers the industry-renowned <a href=\"https:\/\/codequotient.com\/supercoders-program\">SuperCoders Program <\/a>&#8211; a three-month online, &#8216;full-stack development\u2019 course that focuses on project-based learning to help you become a knowledgable and skilled programmer to give your career and learning a big boost!<\/p>\n<p><strong>Do you want to start your software engineering journey but are not sure what to begin with?<\/strong> Click <a href=\"https:\/\/codequotient.com\/blog\/career-programming-insights-codequotients-founder\/\">here<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>First released at the turn of the century in 2000, C# (pronounced as &#8220;C-Sharp&#8221;) is a simple, modern, generic-purpose, object-oriented programming language developed by Microsoft within its .NET initiative. It was built to meet the growing demand for web-based applications that Visual Basic (VB) or C++ could not fulfil. C# merges the best features of&#8230;<\/p>\n","protected":false},"author":1,"featured_media":2258,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[131],"tags":[70,137,15,29,21,25],"class_list":{"0":"post-2256","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","6":"hentry","7":"category-software-engineering-bootcamp","8":"tag-coding-assessment","9":"tag-coding-exams","10":"tag-coding-jobs","11":"tag-developer","12":"tag-tech-interviews","13":"tag-tech-recruitment","14":"nt-post-class","15":"","18":"excerpt-none"},"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>10 C# Online Interview Questions and Answers for Freshers - CodeQuotient<\/title>\n<meta name=\"description\" content=\"10 of the most essential C# interview questions that every fresher should know if they want to get that lucrative job!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codequotient.com\/blog\/c-online-interview-questions-answers\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"10 C# Online Interview Questions and Answers for Freshers - CodeQuotient\" \/>\n<meta property=\"og:description\" content=\"10 of the most essential C# interview questions that every fresher should know if they want to get that lucrative job!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codequotient.com\/blog\/c-online-interview-questions-answers\/\" \/>\n<meta property=\"og:site_name\" content=\"CodeQuotient\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codequotient\" \/>\n<meta property=\"article:published_time\" content=\"2022-06-16T06:45:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-14T12:01:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2022\/06\/10-C-Online-Interview-Questions-And-Answers-For-Freshers.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1480\" \/>\n\t<meta property=\"og:image:height\" content=\"774\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Team CodeQuotient\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codequotient\" \/>\n<meta name=\"twitter:site\" content=\"@codequotient\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Team CodeQuotient\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-online-interview-questions-answers\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-online-interview-questions-answers\\\/\"},\"author\":{\"name\":\"Team CodeQuotient\",\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/#\\\/schema\\\/person\\\/d84614276ce2ccc8578c447a515c02f8\"},\"headline\":\"10 C# Online Interview Questions and Answers for Freshers\",\"datePublished\":\"2022-06-16T06:45:51+00:00\",\"dateModified\":\"2024-02-14T12:01:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-online-interview-questions-answers\\\/\"},\"wordCount\":938,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-online-interview-questions-answers\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/10-C-Online-Interview-Questions-And-Answers-For-Freshers.jpg\",\"keywords\":[\"Coding Assessment\",\"Coding Exams\",\"Coding Jobs\",\"Developer\",\"Tech Interviews\",\"Tech Recruitment\"],\"articleSection\":[\"Software Engineering Bootcamp\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-online-interview-questions-answers\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-online-interview-questions-answers\\\/\",\"url\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-online-interview-questions-answers\\\/\",\"name\":\"10 C# Online Interview Questions and Answers for Freshers - CodeQuotient\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-online-interview-questions-answers\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-online-interview-questions-answers\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/10-C-Online-Interview-Questions-And-Answers-For-Freshers.jpg\",\"datePublished\":\"2022-06-16T06:45:51+00:00\",\"dateModified\":\"2024-02-14T12:01:24+00:00\",\"description\":\"10 of the most essential C# interview questions that every fresher should know if they want to get that lucrative job!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-online-interview-questions-answers\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-online-interview-questions-answers\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-online-interview-questions-answers\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/10-C-Online-Interview-Questions-And-Answers-For-Freshers.jpg\",\"contentUrl\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/10-C-Online-Interview-Questions-And-Answers-For-Freshers.jpg\",\"width\":1480,\"height\":774,\"caption\":\"10-C-Online-Interview-Questions-And-Answers-For-Freshers\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-online-interview-questions-answers\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"10 C# Online Interview Questions and Answers for Freshers\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/\",\"name\":\"CodeQuotient\",\"description\":\"Resources to be a better programmer\",\"publisher\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/#organization\",\"name\":\"CodeQuotient\",\"url\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/codequotient-logo.png\",\"contentUrl\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/codequotient-logo.png\",\"width\":238,\"height\":104,\"caption\":\"CodeQuotient\"},\"image\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/codequotient\",\"https:\\\/\\\/x.com\\\/codequotient\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/codequotient\",\"https:\\\/\\\/www.instagram.com\\\/codequotient\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/#\\\/schema\\\/person\\\/d84614276ce2ccc8578c447a515c02f8\",\"name\":\"Team CodeQuotient\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/612e6d66a89f62c087fb5a3e21cc59e53d1478a67562e8d08ec755a92ada292b?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/612e6d66a89f62c087fb5a3e21cc59e53d1478a67562e8d08ec755a92ada292b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/612e6d66a89f62c087fb5a3e21cc59e53d1478a67562e8d08ec755a92ada292b?s=96&d=mm&r=g\",\"caption\":\"Team CodeQuotient\"},\"sameAs\":[\"https:\\\/\\\/blog.codequotient.com\"],\"url\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/author\\\/codequotient\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"10 C# Online Interview Questions and Answers for Freshers - CodeQuotient","description":"10 of the most essential C# interview questions that every fresher should know if they want to get that lucrative job!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/codequotient.com\/blog\/c-online-interview-questions-answers\/","og_locale":"en_GB","og_type":"article","og_title":"10 C# Online Interview Questions and Answers for Freshers - CodeQuotient","og_description":"10 of the most essential C# interview questions that every fresher should know if they want to get that lucrative job!","og_url":"https:\/\/codequotient.com\/blog\/c-online-interview-questions-answers\/","og_site_name":"CodeQuotient","article_publisher":"https:\/\/www.facebook.com\/codequotient","article_published_time":"2022-06-16T06:45:51+00:00","article_modified_time":"2024-02-14T12:01:24+00:00","og_image":[{"width":1480,"height":774,"url":"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2022\/06\/10-C-Online-Interview-Questions-And-Answers-For-Freshers.jpg","type":"image\/jpeg"}],"author":"Team CodeQuotient","twitter_card":"summary_large_image","twitter_creator":"@codequotient","twitter_site":"@codequotient","twitter_misc":{"Written by":"Team CodeQuotient","Estimated reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codequotient.com\/blog\/c-online-interview-questions-answers\/#article","isPartOf":{"@id":"https:\/\/codequotient.com\/blog\/c-online-interview-questions-answers\/"},"author":{"name":"Team CodeQuotient","@id":"https:\/\/codequotient.com\/blog\/#\/schema\/person\/d84614276ce2ccc8578c447a515c02f8"},"headline":"10 C# Online Interview Questions and Answers for Freshers","datePublished":"2022-06-16T06:45:51+00:00","dateModified":"2024-02-14T12:01:24+00:00","mainEntityOfPage":{"@id":"https:\/\/codequotient.com\/blog\/c-online-interview-questions-answers\/"},"wordCount":938,"commentCount":0,"publisher":{"@id":"https:\/\/codequotient.com\/blog\/#organization"},"image":{"@id":"https:\/\/codequotient.com\/blog\/c-online-interview-questions-answers\/#primaryimage"},"thumbnailUrl":"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2022\/06\/10-C-Online-Interview-Questions-And-Answers-For-Freshers.jpg","keywords":["Coding Assessment","Coding Exams","Coding Jobs","Developer","Tech Interviews","Tech Recruitment"],"articleSection":["Software Engineering Bootcamp"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codequotient.com\/blog\/c-online-interview-questions-answers\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codequotient.com\/blog\/c-online-interview-questions-answers\/","url":"https:\/\/codequotient.com\/blog\/c-online-interview-questions-answers\/","name":"10 C# Online Interview Questions and Answers for Freshers - CodeQuotient","isPartOf":{"@id":"https:\/\/codequotient.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codequotient.com\/blog\/c-online-interview-questions-answers\/#primaryimage"},"image":{"@id":"https:\/\/codequotient.com\/blog\/c-online-interview-questions-answers\/#primaryimage"},"thumbnailUrl":"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2022\/06\/10-C-Online-Interview-Questions-And-Answers-For-Freshers.jpg","datePublished":"2022-06-16T06:45:51+00:00","dateModified":"2024-02-14T12:01:24+00:00","description":"10 of the most essential C# interview questions that every fresher should know if they want to get that lucrative job!","breadcrumb":{"@id":"https:\/\/codequotient.com\/blog\/c-online-interview-questions-answers\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codequotient.com\/blog\/c-online-interview-questions-answers\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/codequotient.com\/blog\/c-online-interview-questions-answers\/#primaryimage","url":"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2022\/06\/10-C-Online-Interview-Questions-And-Answers-For-Freshers.jpg","contentUrl":"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2022\/06\/10-C-Online-Interview-Questions-And-Answers-For-Freshers.jpg","width":1480,"height":774,"caption":"10-C-Online-Interview-Questions-And-Answers-For-Freshers"},{"@type":"BreadcrumbList","@id":"https:\/\/codequotient.com\/blog\/c-online-interview-questions-answers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codequotient.com\/blog\/"},{"@type":"ListItem","position":2,"name":"10 C# Online Interview Questions and Answers for Freshers"}]},{"@type":"WebSite","@id":"https:\/\/codequotient.com\/blog\/#website","url":"https:\/\/codequotient.com\/blog\/","name":"CodeQuotient","description":"Resources to be a better programmer","publisher":{"@id":"https:\/\/codequotient.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codequotient.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/codequotient.com\/blog\/#organization","name":"CodeQuotient","url":"https:\/\/codequotient.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/codequotient.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2020\/12\/codequotient-logo.png","contentUrl":"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2020\/12\/codequotient-logo.png","width":238,"height":104,"caption":"CodeQuotient"},"image":{"@id":"https:\/\/codequotient.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codequotient","https:\/\/x.com\/codequotient","https:\/\/www.linkedin.com\/company\/codequotient","https:\/\/www.instagram.com\/codequotient\/"]},{"@type":"Person","@id":"https:\/\/codequotient.com\/blog\/#\/schema\/person\/d84614276ce2ccc8578c447a515c02f8","name":"Team CodeQuotient","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/612e6d66a89f62c087fb5a3e21cc59e53d1478a67562e8d08ec755a92ada292b?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/612e6d66a89f62c087fb5a3e21cc59e53d1478a67562e8d08ec755a92ada292b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/612e6d66a89f62c087fb5a3e21cc59e53d1478a67562e8d08ec755a92ada292b?s=96&d=mm&r=g","caption":"Team CodeQuotient"},"sameAs":["https:\/\/blog.codequotient.com"],"url":"https:\/\/codequotient.com\/blog\/author\/codequotient\/"}]}},"featured_image_src":"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2022\/06\/10-C-Online-Interview-Questions-And-Answers-For-Freshers.jpg","featured_image_src_square":"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2022\/06\/10-C-Online-Interview-Questions-And-Answers-For-Freshers.jpg","author_info":{"display_name":"Team CodeQuotient","author_link":"https:\/\/codequotient.com\/blog\/author\/codequotient\/"},"_links":{"self":[{"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/posts\/2256","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/comments?post=2256"}],"version-history":[{"count":4,"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/posts\/2256\/revisions"}],"predecessor-version":[{"id":2293,"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/posts\/2256\/revisions\/2293"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/media\/2258"}],"wp:attachment":[{"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/media?parent=2256"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/categories?post=2256"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/tags?post=2256"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}