Published Questions » Technical Questions

Question: Given a line of text, write a regular expression to strip all the HTML tags from it? Answer: public static string CleanHTML(string htmlPag ...
Write a function to find a largest sub-sequence in a given array of integers both positive and negative. Examples: { -100, 1, 2, 3, -20, -20, -20, ...
Linked list is a linear collection of Self-Referential class objects, called nodes, connected by reference links. Many people tend to think of it as o ...
The main difference between the linked list and the array is that while the array is a static data structure (with fix number of elements). On the oth ...
Linked lists allow only sequential access to elements O(n) while arrays allow random access O(1). Linked lists requires an extra storage for reference ...
You are asked to write a function Node Reverse(Node head) which has a pointer to the head element of the linked list as a parameter and need to revers ...
This problem can be easily solved by using simple recursion and again creates a basis for solving subset of related coding problems. Possible soluti ...
Task:“Compute the sum of all the values in the nodes of a single linked list”   The only thing is needed to solve this problem is linked list tr ...
Saved Stories

Sponsored Categories