What is a singleton linked list?
Answer / arun
it is a data structure of collection of nodes,which contain
data and address part.. address part hold the address of
next data.
| Is This Answer Correct ? | 10 Yes | 1 No |
i want to insert textbox value to sql db. i have only one text box but store four values. ple give any one give sample code in asp.net c#..
what is the difference between a looping statement and a decision statement
Write 5 differences between Memory Reference Instruction and Register Reference Instruction.
Write a program to calculate the following i want a Java program for this condition 1+4+9+16+….+100 Like this (1^2+2^2) Hint use function pow(a,b)
Data Structure: How many comparisons are necessary to find the largest and smallest of a set of n distinct elements?
how can i split string in a textbox in windows appication using C#.net
1.Describe about your project?
why we use abstract in awt?
Explain polymorphism. Provide an example.
How do you initialize a static member of a class with return value of some function?
Write a pseudo code to evaluate a number to any base given (2...16) based on the input. Number greater than 9 should be given as A-F for 10-15.
1. Consider the following code in our example assembly language: ; an example bit of assembly code ROOT: W FATHER FATHER: W SON1 W SON2 SON1: W NIL W NIL ; ---------------------- SON2: W GRANDSON W NIL GRANDSON: W NIL W NIL NIL = 0 Assemble this code carefully following the two pass model, and show the symbol table at the point marked by the dashed line during each pass.