<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Jason</title>
    <description>The latest articles on DEV Community by Jason (@kj2whe).</description>
    <link>https://dev.to/kj2whe</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F177116%2F1b1c137f-6fa6-4fcf-b1dd-e3ce52f41566.jpeg</url>
      <title>DEV Community: Jason</title>
      <link>https://dev.to/kj2whe</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kj2whe"/>
    <language>en</language>
    <item>
      <title>Interview question(s) about  concepts you don't interact with often, if at all</title>
      <dc:creator>Jason</dc:creator>
      <pubDate>Thu, 14 Jan 2021 03:11:41 +0000</pubDate>
      <link>https://dev.to/kj2whe/interview-question-s-about-concepts-you-don-t-interact-with-often-if-at-all-1829</link>
      <guid>https://dev.to/kj2whe/interview-question-s-about-concepts-you-don-t-interact-with-often-if-at-all-1829</guid>
      <description>&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fs57aj89c0nzli7zxpeqd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fs57aj89c0nzli7zxpeqd.png" alt="Technical Interviews"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;TLDR: How do you answer a question in the interview where you've never found a use for the thing being asked about, so you never learned it?&lt;/p&gt;

&lt;p&gt;I'm interested how others have handled this situation in a technical interview.&lt;/p&gt;

&lt;p&gt;What do you say when asked about a specific technology/concept/keyword during a technical interview that you have never used so therefore you can't speak on it?  Keep in mind, it probably wasn't listed in the job requirements either.&lt;/p&gt;

&lt;p&gt;For example, I was asked&lt;/p&gt; 

&lt;p&gt;'&lt;strong&gt;&lt;em&gt;What is the difference between var and dynamic?&lt;/em&gt;&lt;/strong&gt;' (this is c# btw)&lt;/p&gt;

&lt;p&gt;Honestly I didn't know. I use var all the time, but not dynamic.  As I looked it up later, with the definition being&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;With var the type is set at compile time where as dynamic, type is set at run time.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That lead me to think &lt;/p&gt;

&lt;p&gt;'&lt;strong&gt;&lt;em&gt;Is dynamic something I'm missing out on?  How have I gotten so far without ever using it?&lt;/em&gt;&lt;/strong&gt;'&lt;/p&gt;

&lt;p&gt;Further reading seems to indicate that&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;dynamic was primarily a way to allow C# to interop with languages such as Python, which is not statically typed&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Ok, so I personally haven't done this, but this lead me to wonder &lt;/p&gt;

&lt;p&gt;'&lt;strong&gt;&lt;em&gt;Does this job do this often and that is why they asked?&lt;/em&gt;&lt;/strong&gt;'.&lt;/p&gt;

&lt;p&gt;Now, when I get asked this type of question I tend to answer it to the best of my abilities, and I now reply with &lt;/p&gt;

&lt;p&gt;'&lt;strong&gt;&lt;em&gt;Interesting question, I haven't found a use case for that.  Can you explain when and how you've used this here?&lt;/em&gt;&lt;/strong&gt;'&lt;/p&gt;

&lt;p&gt;I'm not even being sarcastic, I honestly would like to know in what scenario they have used dynamic enough to warrant asking this. There is a limited amount of time in an interview to judge a candidate, why did you choose this concept? &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Is it that important&lt;/em&gt;&lt;/strong&gt;?&lt;/p&gt;

&lt;p&gt;I've been asked the same question but with different technologies/concepts/keywords like 'Explain Delegates'.  I know that a delegate is passing a function as a parameter, but I don't think I've ever typed &lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight csharp"&gt;&lt;code&gt;&lt;span class="k"&gt;public&lt;/span&gt; &lt;span class="k"&gt;delegate&lt;/span&gt; &lt;span class="k"&gt;void&lt;/span&gt; &lt;span class="nf"&gt;MyDelegate&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kt"&gt;string&lt;/span&gt; &lt;span class="n"&gt;msg&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Does it have its uses, I think so but I've never used it and yet&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;my code compiles&lt;/li&gt;
&lt;li&gt;my unit tests run &lt;/li&gt;
&lt;li&gt;my work items get closed&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So, after my long ramble, I would like to ask you dear reader?  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;How do you answer questions like this, when you haven't used the specific concept at all&lt;/em&gt;&lt;/strong&gt;?  &lt;/p&gt;

</description>
      <category>csharp</category>
      <category>career</category>
      <category>discuss</category>
    </item>
  </channel>
</rss>
