Quack-Ware.com Free Software & Tutorials

24Dec/111

Interview Questions #3 – Reversing a String – C Sharp C# Visual Studio 2010

In this tutorial I show you how to solve common interview questions. In this specific video I go over the simple interview question of reversing a string and talk about what might happen if the interviewer asks a more difficult problem afterwards. WEBSITE: www.Quack-Ware.com

20Dec/110

Interview Questions #2 – Check if a Number is Prime – C Sharp C# Visual Studio 2010

In this tutorial I show you how to solve common interview questions. In this specific video I go over the problem of checking whether a number is prime or not. I also talk about the importance of efficiency in interview questions. WEBSITE: www.Quack-Ware.com

19Dec/110

Interview Questions #1 – Clock Angle Problem – C Sharp C# Visual Studio 2010

In this tutorial I show you how to solve common interview questions. In this specific video we go over the "Clock Angle Problem" where you are given a time and you have the find the angle in between the two hands. WEBSITE: www.Quack-Ware.com

16Aug/113

Inheritance, Abstract Classes, and Interfaces – C# C Sharp Visual Studio 2010

In this tutorial I show you how to use inheritance, abstract classes, and interfaces and talk about how they help your programming style. WEBSITE: www.Quack-Ware.com FREE CODE SNIPPETS http

30Jul/110

Using Enums – C# C Sharp Visual Studio 2010

In this tutorial I show you how to use enums and also a few tricks in using them. WEBSITE: www.Quack-Ware.com FREE CODE SNIPPETS http

28Jul/111

Properties & Indexers – C# C Sharp Visual Studio 2010

In this tutorial I show you how to create properties for your C# class along with having indexers into the class. WEBSITE: www.Quack-Ware.com FREE CODE SNIPPETS http

18Dec/100

Start, Stop, & List Processes – C# C Sharp Visual Studio 2010

In this tutorial I show you how to start, stop, and list processes from your machine. You can create a

14Nov/100

BubbleSort in C# – C# C Sharp Visual Studio 2010

In this tutorial I show you how to implement the O(n^2) sorting algorithm bubblesort in c sharp. WEBSITE: www.Quack-Ware.com FORUMS

14Nov/100

BubbleSort in C# – C# C Sharp Visual Studio 2010

In this tutorial I show you how to implement the O(n^2) sorting algorithm bubblesort in c sharp. WEBSITE: www.Quack-Ware.com FORUMS http FREE CODE SNIPPETS www.freecodesnippets.com

12Nov/100

LinkedList From Scratch PART 2 – C# C Sharp Visual Studio 2010

In this tutorial I show you how to create your own linked list similar to the List in C# from