how to speed up the Fibonacci number calculations
Dynamic programming is essentially a tradeoff of space for time. Repeatedly re-computing a given quantity is harmless unless the time ......
Read the rest of this entry »
Algorithm & Data Structures»
Perl interview questions and answers
# What arguments do you frequently use for the Perl interpreter and what do they mean? # What does the ......
Read the rest of this entry »
Interview»
ASP.NET interview questions and answers
# Describe the difference between a Thread and a Process? # What is a Windows Service and how does its ......
Read the rest of this entry »
Interview»
C# interview questions and answers
What’s the advantage of using System.Text.StringBuilder over System.String? StringBuilder is more efficient in the cases, where a lot of manipulation ......
Read the rest of this entry »
Interview»
VB.NET Interview Questions
What is .net.Net is the Development Plateform which provides advanced feature facilities for the web and window application along with ......
Read the rest of this entry »
Interview»
Visual Basic Interview Questions
How do you register a component? Expected answer: Compiling the component, running REGSVR32 MyDLL.dll Name and explain the different compatibility ......
Read the rest of this entry »
Interview»
C Interview Questions
1.Difference between arrays and pointers? - Pointers are used to manipulate data using the address. Pointers use * operator to ......
Read the rest of this entry »
Exam»
HTML Interview Questions
1. How do I indent the first line in my paragraphs? This isn’t really possible in a reliable way, until ......
Read the rest of this entry »
Interview»
JAVA INTERVIEW QUESTIONS
1. What is the difference between private, protected, and public? These keywords are for allowing privileges to components such as ......
Read the rest of this entry »
Interview»
Short Java Notes
1. Source file’s elements (in order) * Package declaration * Import statements * Class definitions 2. Importing packages doesn’t recursively ......
