c# interview questions and answers - Part 6 Real time example of recursion
Database, Information Technology
c# interview questions and answers
- Part 1 Can you store different types in an array in c#
- Part 2 What is jagged array
- Part 3 Why and when should we use an abstract class
- Part 4 What are the advantages of using interfaces
- Part 5 Recursive function c# example
- Part 6 Real time example of recursion
- Part 7 Storing different list types in a single generic list
- Part 8 Can an abstract class have a constructor
- Part 9 Call an abstract method from an abstract class constructor
- Part 10 What happens if finally block throws an exception
- Part 11 What is the difference between is and as keyword in c#
- Part 12 Difference between int and Int32 in c#
- Reverse each word in a string using c#
- C# abstract class virtual method
- C# default constructor access modifier
Part 6 Real time example of recursion
Link for code samples used in the demo
http://csharp-video-tutorials.blogspot.com/2013/10/part-6-real-time-example-of-recursion.html
Link for csharp, asp.net, ado.net, dotnet basics, mvc and sql server video tutorial playlists
http://www.youtube.com/user/kudvenkat/playlists
This is continuation to Part 5. Please watch Part 5 from C# Interview Questions tutorial before proceeding.
Probably in an interview, an interviewer may ask you to give an example, where you have used recursion in your project.
To find all the files in a folder and in all the sub-folders in the hierarchy. This is a very good example of where we could use recursion.
// find all files in subdirectories c#.png
Please make sure to include the following using declaration.
using System.IO;
public class Program
{
public static void Main()
{
// Prompt the user to enter folder path
Console.WriteLine(“Please enter folder path”);
// Read the path from the console
string folderPath = Console.ReadLine();
// Invoke FindFiles() recursive function
FindFiles(folderPath);
}
private static void FindFiles(string path)
{
// Loop thru each file in the current directory and print it’s name
foreach (string fileName in Directory.GetFiles(path))
{
Console.WriteLine(fileName);
}
// If there is a subdirectory in the current directory, then recursively call FindFiles() method.
// The recursion will break when the innermost directory with no subdirectory is found.
foreach (string directory in Directory.GetDirectories(path))
{
// Notice that FindFiles() is calling itself
FindFiles(directory);
}
}
}
-
.Net
abstract
abstract class
advantage
Advantages
array
arraylist
AS
asp.net
benefits
block
C (Programming Language)
C#
c# class default constructor access modifier
c# interview questions and answers
c# reflection constructor access modifier
c# reflection constructor not found
c# reflection default constructor
c# reflection get constructor
c# reflection private constructor
c# reflection protected constructor
call
cast
catch
class
constructor
csharp
Data
DataTypes
difference between
Difference between int and Int32 in c#
different
directory
dot net
dotnet
Each
example
exception
exceptions
factorial
files
Finally
folder
frequently asked
function
generic
Handle
happens
int vs int32
interfaces
interview
is
jagged
keyword
LINQ
list
Lists
method
Number
occur
Operator
Overriding
purpose
question
questions
Real
Real-time
real-world
realtime
Recursion
recursive
reverse
Sentence
single
store
String
Structure
subdirectories
Throw
throws
time
try
Types
Use
using
virtual method
what
when
where
Why
Word
World