<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Interview Questions For Dot Net &#8211; Sibeesh Passion</title>
	<atom:link href="https://sibeeshpassion.com/tag/interview-questions-for-dot-net/feed/" rel="self" type="application/rss+xml" />
	<link>https://sibeeshpassion.com</link>
	<description>My passion towards life</description>
	<lastBuildDate>Wed, 02 Jun 2021 15:16:00 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>/wp-content/uploads/2017/04/Sibeesh_Passion_Logo_Small.png</url>
	<title>Interview Questions For Dot Net &#8211; Sibeesh Passion</title>
	<link>https://sibeeshpassion.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>C sharp Interview Questions And Answers</title>
		<link>https://sibeeshpassion.com/c-sharp-interview-questions-and-answers/</link>
					<comments>https://sibeeshpassion.com/c-sharp-interview-questions-and-answers/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Sat, 24 Oct 2015 08:06:18 +0000</pubDate>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Interview]]></category>
		<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[C sharp Interview Questions And Answers]]></category>
		<category><![CDATA[Career Advice]]></category>
		<category><![CDATA[CSharp]]></category>
		<category><![CDATA[Interview Questions For Dot Net]]></category>
		<guid isPermaLink="false">http://sibeecst_passion.com/?p=10839</guid>

					<description><![CDATA[[toc] Introduction In this article, we will discuss the most asked C# interview questions and answers. If you need to know other interview questions and answers, I strongly recommend to follow this link: Interview Questions. Now in this post, we are going to share the interview questions for C# or a Dot Net developer. No matter you are experienced or fresher, it is important that you must aware of these. So please read it carefully. I hope you will like this article. Background C# is one of my favorite programming languages. So I am really happy to share you some [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>[toc]</p>



<h2 class="wp-block-heading">Introduction</h2>



<p>In this article, we will discuss the most asked C# interview questions and answers. If you need to know other interview questions and answers, I strongly recommend to follow this link: <a href="http://sibeeshpassion.com/category/interview/" target="_blank" rel="noopener noreferrer">Interview Questions</a>. Now in this post, we are going to share the interview questions for C# or a Dot Net developer. No matter you are experienced or fresher, it is important that you must aware of these. So please read it carefully. I hope you will like this article.</p>



<h2 class="wp-block-heading">Background</h2>



<p>C# is one of my favorite programming languages. So I am really happy to share you some interview questions related to C#. You can always read my other interview questions here in the below links.</p>



<ul class="wp-block-list"><li><a rel="noopener noreferrer" href="http://sibeeshpassion.com/dot-net-interview-questions-for-experienced-and-fresher/" target="_blank">Interview Questions For Experienced and Beginner .NET Professionals</a></li><li><a rel="noopener noreferrer" href="http://sibeeshpassion.com/infosys-interview-questions-for-dotnet-professionals/" target="_blank">Infosys Interview Questions For DotNet Professionals</a></li><li><a rel="noopener noreferrer" href="http://sibeeshpassion.com/sql-interview-questions-and-answers/" target="_blank">SQL Interview Questions And Answers</a></li><li><a rel="noopener noreferrer" href="http://sibeeshpassion.com/important-ado-net-interview-questions/" target="_blank">Important ADO.NET Interview Questions</a> <p>So shall we now discuss C# interview questions? </p></li></ul>



<h3 class="wp-block-heading">C# Interview Questions   </h3>



<p>What are Abstract Classes? </p>



<p>The purpose of an abstract class is to define some common behavior that can be inherited by multiple sub classes, without implementing the entire class. In C#, the abstract keyword designates both an abstract class and a pure virtual method. The purpose of an abstract class is to provide a common definition of a base class that multiple derived classes can share. For example, a class library may define an abstract class that is used as a parameter to many of its functions and require programmers using that library to provide their own implementation of the class by creating a derived class. </p>



<h4 class="wp-block-heading">Properties </h4>



<ul class="wp-block-list"><li>An abstract class cannot be instantiated.</li><li>It can be inherited.</li><li>It can have method implementations, class members.</li><li>Only abstract classes can have abstract methods.</li></ul>



<h4 class="wp-block-heading">Syntax</h4>



<script src="https://gist.github.com/SibeeshVenu/2fa66bd9f38b408fe13317d502e08dc1.js"></script>



<h4 class="wp-block-heading">What are Abstract methods?Give an example?</h4>



<h5 class="wp-block-heading">Abstract Methods</h5>



<p>Abstract methods have no implementation, so the method definition is followed by a semicolon instead of a normal method block. (See above example for syntax)</p>



<p>Derived classes of the abstract class must implement all abstract methods.<br>When an abstract class inherits a virtual method from a base class, the abstract class can override the virtual method with an abstract method.</p>



<h5 class="wp-block-heading">Example</h5>



<script src="https://gist.github.com/SibeeshVenu/08fb0fe1e57b4c9d8cd46d0caf2bfbe9.js"></script>



<script src="https://gist.github.com/SibeeshVenu/a597cb326601e52f65758c6cffd0047b.js"></script>



<h4 class="wp-block-heading">What is Interface? Explain with an example?</h4>



<p>An interface is useful when you want to be able to use some common functionality of otherwise unrelated classes- they share no implementation details, only the function signatures. In C#, function declarations within an interface are implicitly pure virtual.</p>



<p>An interface contains only the signatures of methods, properties, events or indexers. A class or struct that implements the interface must implement the members of the interface that are specified in the interface definition.</p>



<h5 class="wp-block-heading">Properties</h5>



<p>An interface can be a member of a namespace or a class and can contain signatures of methods, properties, events, indexers.<br>An interface can inherit from one or more base interfaces. A class that implements an interface can explicitly implement members of that interface. An explicitly implemented member cannot be accessed through a class instance, but only through an instance of the interface.</p>



<p><strong>Example</strong><em> </em></p>



<script src="https://gist.github.com/SibeeshVenu/3057b3fcb14f7455c4b039b217876398.js"></script>



<script src="https://gist.github.com/SibeeshVenu/d1815c018ef376231553005f421b0949.js"></script>



<script src="https://gist.github.com/SibeeshVenu/a710e1206ab1aaff58263d1b299c7b7e.js"></script>



<p><em><strong>Calling the metho</strong></em><strong>ds </strong></p>



<script src="https://gist.github.com/SibeeshVenu/e54d38f6d8751c9cf06252657197ab78.js"></script>



<script src="https://gist.github.com/SibeeshVenu/8cec8789031f25287a997b150a7fb6cf.js"></script>



<script src="https://gist.github.com/SibeeshVenu/a415a854c7cb4de11e625650a039327b.js"></script>



<h4 class="wp-block-heading">Explain The Difference Between Abstract Class and Interface ?</h4>



<p>An Abstract class doesn&#8217;t provide full abstraction but an interface does provide full abstraction; i.e. both a declaration and a definition is given in an abstract class but not so in an interface. Using Abstract we cannot achieve multiple inheritances but be using an Interface we can achieve multiple inheritances. We cannot declare a member field in an Interface. We cannot use any access modifier i.e. public, private, protected, internal etc. because within an interface by default everything is public. An Interface member cannot be defined using the keyword static, virtual, abstract or sealed.</p>



<h4 class="wp-block-heading">Explain Generic Collections &amp; Array Lists ?</h4>



<p>Generics allow you to delay the specification of the data type of programming elements in a class or a method until it is actually used in the program. In other words, generics allow you to write a class or method that can work with any data type. Generic Collections helps us to create flexible type-safe, strong type collections at compile time.</p>



<h5 class="wp-block-heading">Syntax</h5>



<script src="https://gist.github.com/SibeeshVenu/12e01a38f7fe93800ed2d9e28af1d248.js"></script>



<h5 class="wp-block-heading">Namespace</h5>



<script src="https://gist.github.com/SibeeshVenu/0f0b6f01abc509c5a0c1ed44aecb95c2.js"></script>



<h5 class="wp-block-heading">ArrayList</h5>



<p>They are ordered a collection of objects, that can be resized automatically, that has dynamic memory allocation and which can contain different types of data. Arraylist stores its members as objects, so in order to retrieve it, we must type cast it.</p>



<h5 class="wp-block-heading">Syntax and Example</h5>



<script src="https://gist.github.com/SibeeshVenu/8533989c2ec614777133e892986e18ae.js"></script>



<h5 class="wp-block-heading">Namespace</h5>



<script src="https://gist.github.com/SibeeshVenu/8f232eefceb895791b4a5fa193d499f2.js"></script>



<h4 class="wp-block-heading">What are Finalize and Dispose? Can you list down the differences between them?</h4>



<p>Finalizers are run by the Garbage Collection before an object that is eligible for collection is reclaimed. Dispose() is meant for cleaning up unmanaged resources, like network connections, files, handles to OS stuff, &amp;c. It works best in conjunction with the using block where the compiler makes sure that Dispose() will be called immediately once you are done with an object – and also ensures that you cannot work with the object anymore once it&#8217;s disposed of.</p>



<h5 class="wp-block-heading">Dispose() Method</h5>



<ul class="wp-block-list"><li>This dispose method will be used to free unmanaged resources like files, database connection etc.</li><li>To clear unmanaged resources, we need to write code manually to raise dispose() method.</li><li>This Dispose() method belongs to the IDisposable interface.</li><li>If we need to implement this method for any custom classes we need to inherit the class from IDisposable interface.</li><li>It will not show any effect on the performance of the website and we can use this method whenever we want to free objects immediately.</li></ul>



<h5 class="wp-block-heading">Finalize() Method</h5>



<ul class="wp-block-list"><li>This method also free unmanaged resources like database connections, files etc…</li><li>It is automatically raised by garbage collection mechanism whenever the object goes out of scope.</li><li>This method belongs to object class.</li><li>We need to implement this method whenever we have unmanaged resources in our code and make sure these resources will be freed when garbage collection process was done.</li><li>It will show the effect on the performance of the website and it will not suitable to free objects immediately.</li></ul>



<h4 class="wp-block-heading">What is Dependency Injection?How can we implement it?</h4>



<p>Simply put Dependency injection is for decoupling two components. It can be explained by a simple example.</p>



<script src="https://gist.github.com/SibeeshVenu/6f2681e284b50352ed9e2457ef182515.js"></script>



<script src="https://gist.github.com/SibeeshVenu/22b96305a7e43336e28a3109883fce47.js"></script>



<p>Have a look at the code above.</p>



<p>I have an ErrorLogger class that writes an error into database. The method is actually called from another class ApplicationWatcher.<br>In a later stage, if I want to send an email instead of writing into the database, this design will not suffice. I will have created another class that has a method that sends an email and creates its instance in the application watches.</p>



<h4 class="wp-block-heading">What is Data Encapsulation and explain its Implementation?</h4>



<p>To know about the Data encapsulation in C#, I recommend you to read here:<br><a href="http://www.tutorialspoint.com/csharp/csharp_encapsulation.htm" target="_blank" rel="noopener noreferrer">Data Encapsulation and Its Implementation </a><br>That&#8217;s all. Have a great day.</p>



<h3 class="wp-block-heading">Conclusion</h3>



<p>Did I miss anything that you may think which is needed? Could you find this post as useful? I hope you liked this article. Please share me your valuable suggestions and feedback.</p>



<h3 class="wp-block-heading">Your turn. What do you think?</h3>



<p>A blog isn’t a blog without comments, but do try to stay on topic. If you have a question unrelated to this post, you’re better off posting it on C# Corner, Code Project, Stack Overflow, Asp.Net Forum instead of commenting here. Tweet or email me a link to your question there and I’ll definitely try to help if I can.</p>



<p>Kindest Regards<br>Sibeesh Venu</p>
]]></content:encoded>
					
					<wfw:commentRss>https://sibeeshpassion.com/c-sharp-interview-questions-and-answers/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
		<item>
		<title>Infosys Interview Questions For DotNet Professionals</title>
		<link>https://sibeeshpassion.com/infosys-interview-questions-for-dotnet-professionals/</link>
					<comments>https://sibeeshpassion.com/infosys-interview-questions-for-dotnet-professionals/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Mon, 18 Aug 2014 10:48:45 +0000</pubDate>
				<category><![CDATA[Career Advice]]></category>
		<category><![CDATA[Interview]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Dot Net Q&A]]></category>
		<category><![CDATA[Infosys Interview]]></category>
		<category><![CDATA[Infosys Interview Questions For DotNet Professionals]]></category>
		<category><![CDATA[Interview Questions For Dot Net]]></category>
		<guid isPermaLink="false">https://sibeeshpassion.com/?p=281</guid>

					<description><![CDATA[[toc] Introduction In this article I am going to share my interview experience with Infosys as a dot net developer. This post covers most of the interview questions asked by the interviewer. If you are going to attend any dot net interview, I recommend you to go through this article. It covers the basic dot net interview questions too. I hope you will fine this post useful. You can read another series of interview questions here : Interview Questions For Software Engineers Background On August 18, 2014 I attended an interview with Infosys, Chennai. When I entered the compound, there [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>[toc]</p>



<h3 class="wp-block-heading">Introduction</h3>



<p>In this article I am going to share my interview experience with Infosys as a dot net developer. This post covers most of the interview questions asked by the interviewer. If you are going to attend any dot net interview, I recommend you to go through this article. It covers the basic dot net interview questions too. I hope you will fine this post useful.</p>



<p>You can read another series of interview questions here : <a href="http://sibeeshpassion.com/category/interview/" target="_blank" rel="noopener noreferrer">Interview Questions For Software Engineers</a></p>



<h3 class="wp-block-heading">Background</h3>



<p>On <em>August 18, 2014</em> I attended an interview with Infosys, Chennai. When I entered the compound, there were many candidates. The atmosphere and culture in Infosys was very nice. I have attended many interviews in my life, but the interview with Infosys was something different. I thought to share that experience with you all.</p>



<h3 class="wp-block-heading">Points to be remember</h3>



<p>There are some mistakes I made in the interview, and I don&#8217;t want you to do the same.</p>



<ul class="wp-block-list"><li>Please ensure that you are maintaining eye contact with the interviewer.</li><li>Be confident of what you say. Don&#8217;t change your answer if the interviewer tries to make you do so.</li><li>Please avoid the unwanted examples.</li><li>Please never use any other technical terms that may provoke the interviewer into asking questions about it.</li><li>If you don&#8217;t know the answer, please say &#8220;I don&#8217;t know&#8221;. It is always better to say so instead of going with the wrong answer.</li></ul>



<p>You can find more tips here: <a href="http://www.wikihow.com/Prepare-for-a-Job-Interview" target="_blank" rel="noopener noreferrer">How to Prepare for a Job Interview</a></p>



<h3 class="wp-block-heading">Questions asked and answers</h3>



<p>(Here I am giving the answers that I answered .)</p>



<p><strong>Question 1:</strong> Tell me about yourself?</p>



<p><strong>Answer:</strong> You can find many answers to this question in the internet. Please see the following link:</p>



<p><a href="http://placement.freshersworld.com/power-preparation/Interview-preparation/tell-me-about-yourself-35714" target="_blank" rel="noopener noreferrer">Tell me about yourself</a></p>



<p><strong>Question 2:</strong> What is your role in your project? What is the team size?</p>



<p><strong>Answer:</strong> I said &#8220;My main role is coding, unit testing, big fixing and maintenance. My team size is 7&#8221;.</p>



<p><strong>Question 3:</strong> What is the hierarchy of your team?</p>



<p><strong>Answer:</strong> First I was confused by this question. Then I answered &#8220;Project Manager, Team Leader, Software Engineers, Trainees&#8221;.</p>



<p><strong>Question 4:</strong> Describe the projects that you have worked on?</p>



<p><strong>Answer:</strong> I described them. Please include the technologies you used in your projects and what kind of architecture (for example: 3-tire, n- tier) you used.</p>



<p><strong>Question 5:</strong> What is the employee size in your company? You don&#8217;t need to be accurate. You can provide the approximate value.</p>



<p><strong>Answer:</strong> I said &#8220;150 to 200&#8221;.</p>



<p><em>Then he moved to the programming section.</em></p>



<p><strong>Question 6:</strong> Write an algorithm and program to determine whether or not a word is a palindrome.</p>



<p>We can do it in either of the following two ways</p>



<ul class="wp-block-list"><li>Using a built-in function as in the following</li></ul>



<script src="https://gist.github.com/SibeeshVenu/9f4993420d0546720a10b3ebff8855ab.js"></script>



<p>Ref: <a href="http://www.codeproject.com/Tips/153399/To-check-string-is-palindrome-or-not-in-NET-C" target="_blank" rel="noopener noreferrer">To check string is palindrome or not in .NET (C#)</a></p>



<ul class="wp-block-list"><li>Without using a built-in function</li></ul>



<p>When I wrote the first program, the interviewer asked me to write the same without using a built-in function.</p>



<script src="https://gist.github.com/SibeeshVenu/d82f8dcec4a5b80a44d0aacfb47236f2.js"></script>



<p>Ref: You can find more here: <a href="http://www.dotnetperls.com/palindrome" target="_blank" rel="noopener noreferrer">C# Palindrome</a></p>



<p><strong>Question 7:</strong> Write a program to determine the count of a specific character in a string.</p>



<p><strong>Answer:</strong></p>



<script src="https://gist.github.com/SibeeshVenu/d3cf541eaee6d815ae7a1e3ec3ba20f3.js"></script>



<p>Please see this for more suggestions: <a href="http://www.codeproject.com/Questions/177626/count-number-of-characters-in-a-string" target="_blank" rel="noopener noreferrer">count the number of characters in a string.</a></p>



<p><strong>Question 8:</strong> Next he gave me a program like the following and asked me what the output of this will be?</p>



<script src="https://gist.github.com/SibeeshVenu/1d6e350e3c1eb478fac97943d2edd21c.js"></script>



<p>Answer: I said &#8220;Here we have a constructor A; a constructor should not have a return type. So the code above will throw a compilation error.&#8221;</p>



<p><strong>Question 9:</strong> What may be the output of the following program?</p>



<script src="https://gist.github.com/SibeeshVenu/610aa6170a1acbe0afceadffe8483627.js"></script>



<p><strong>Answer:</strong> I said the output will be as preceding.</p>



<p>Hi you are in class A</p>



<p>Hi you are in class B</p>



<p>Even though you are creating an object of the derived class, it will invoke the base class first.</p>



<p><strong>Question 10:</strong> Write the output of the following program?</p>



<script src="https://gist.github.com/SibeeshVenu/a9afe1f0a04654f4d4c148daf06f73a6.js"></script>



<p><strong>Answer:</strong> It will throw a compilation error. B does not contain a constructor that takes 1 argument. If you want to make this program run, you must create a constructor with parameters for class B also.</p>



<p><strong>Question 11:</strong> Abstract and interface real time examples.</p>



<p><strong>Answer:</strong> Please read it here: <a href="http://www.codeproject.com/Questions/341625/Real-time-example-of-interface" target="_blank" rel="noopener noreferrer">Real time example of interface</a></p>



<p><strong>Question 12:</strong> Describe authentication, types, differences?</p>



<p><strong>Answer:</strong> Forms, Windows, Passport. Please read more here: <a href="http://www.codeproject.com/Articles/98950/ASP-NET-authentication-and-authorization" target="_blank" rel="noopener noreferrer">ASP.NET authentication and authorization</a></p>



<p><strong>Question 13:</strong> Why DBMS? Why don&#8217;t we save data in separate files?</p>



<p>Answer: I didn&#8217;t know what exactly he meant, I got stuck there for a while. Finally I came up with the answer that &#8220;Normalization&#8221; is the main advantage of a DBMS.</p>



<p>Read more here: <a href="http://courses.cs.washington.edu/courses/cse544/99sp/lectures/intro/sld010.htm" target="_blank" rel="noopener noreferrer">Why use a DBMS?</a></p>



<p><strong>Question 14:</strong> What is the differences between a Primary key and a Unique key?</p>



<p><strong>Answer:</strong> Primary key doesn&#8217;t allow NULL, a unique key does.</p>



<p><strong>Question 15:</strong> What exactly is happening when we make a field a primary key?</p>



<p><strong>Answer:</strong> A clustered index will be created for that specific field.</p>



<p><strong>Question 16:</strong> How may clustered index we can create in table?</p>



<p><strong>Answer:</strong> Basically we can create only one clustered index, but there is a way to have more. Please read here: <a href="http://technet.microsoft.com/en-us/library/ms165305(v=sql.105).aspx" target="_blank" rel="noopener noreferrer">Only one clustered index can be created on table . (Visual Database Tools)</a></p>



<p><strong>Question 17:</strong> What is the difference between a clustered and a non-clustered index?</p>



<p><strong>Answer:</strong> I explained, please read here: <a href="http://www.codeproject.com/Articles/173275/Clustered-and-Non-Clustered-Index-in-SQL" target="_blank" rel="noopener noreferrer">Clustered and Non-Clustered Index in SQL 2005</a></p>



<p><strong>Question 18:</strong> What is a Distributed System?</p>



<p><strong>Answer:</strong> A collection of autonomous computers. Find out more <a href="http://www.csc.villanova.edu/~schragge/CSC8530/Intro.html" target="_blank" rel="noopener noreferrer">http://www.csc.villanova.edu/~schragge/CSC8530/Intro.html</a></p>



<figure class="wp-block-image alignnone"><a href="http://sibeeshpassion.com/wp-content/uploads/2014/08/Distributed-System.gif"><img fetchpriority="high" decoding="async" width="421" height="295" src="http://sibeeshpassion.com/wp-content/uploads/2014/08/Distributed-System.gif" alt="Distributed System" class="wp-image-12442"/></a><figcaption>Distributed System</figcaption></figure>



<p>Image Courtesy : MSDN</p>



<p><strong>Question 19:</strong> What will be the output for the below mentioned lines in JQuery?</p>



<script src="https://gist.github.com/SibeeshVenu/64d6dcfb8306fc5a3f8a02e5af1cb69d.js"></script>



<p>That was little tricky at that time. For a while I thought, and I just wrote the question to a paper, and replied.</p>



<script src="https://gist.github.com/SibeeshVenu/5bb28d85a3d40c2a4869c523a51d0be9.js"></script>



<p>Hmmm finally he said &#8220;You are selected for the next round&#8221; 🙂</p>



<p>Next was the direct HR round. That was a simple round. He just asked me to fill in some forms. And then, after a week they sent me an Offer Letter 🙂</p>



<h3 class="wp-block-heading">Conclusion</h3>



<p>Did I miss anything that you may think which is needed? Could you find this post as useful? I hope you liked this article. Please share me your valuable suggestions and feedback. The questions and answers mentioned may or may not ask in your interview. So please refer all the interview questions and answers from all the experts :). Be prepared. I wish you <strong>Good Luck</strong> .</p>



<h3 class="wp-block-heading">Your turn. What do you think?</h3>



<p>A blog isn’t a blog without comments, but do try to stay on topic. If you have a question unrelated to this post, you’re better off posting it on C# Corner, Code Project, Stack Overflow, Asp.Net Forum instead of commenting here. Tweet or email me a link to your question there and I’ll definitely try to help if I can.</p>



<p>Kindest Regards<br>Sibeesh Venu</p>
]]></content:encoded>
					
					<wfw:commentRss>https://sibeeshpassion.com/infosys-interview-questions-for-dotnet-professionals/feed/</wfw:commentRss>
			<slash:comments>67</slash:comments>
		
		
			</item>
	</channel>
</rss>
