Implement a t9 mobile dictionary.
(Give code with explanation )



Implement a t9 mobile dictionary. (Give code with explanation )..

Answer / guna

http://www.eecs.yorku.ca/course_archive/2004-05/F/4441/T9.java

http://javatroops.blogspot.in/2012/10/implement-mobile-t9-using-trie.html

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More C Code Interview Questions

main() { if ((1||0) && (0||1)) { printf("OK I am done."); } else { printf("OK I am gone."); } } a. OK I am done b. OK I am gone c. compile error d. none of the above

5 Answers   HCL,


write the function. if all the character in string B appear in string A, return true, otherwise return false.

11 Answers   Google,


main() { register int a=2; printf("Address of a = %d",&a); printf("Value of a = %d",a); }

3 Answers  


void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }

2 Answers  


main() { int i; float *pf; pf = (float *)&i; *pf = 100.00; printf("\n %d", i); } a. Runtime error. b. 100 c. Some Integer not 100 d. None of the above

2 Answers   HCL, LG,






int DIM(int array[]) { return sizeof(array)/sizeof(int ); } main() { int arr[10]; printf(“The dimension of the array is %d”, DIM(arr)); }

2 Answers   CSC,


# include <stdio.h> int one_d[]={1,2,3}; main() { int *ptr; ptr=one_d; ptr+=3; printf("%d",*ptr); }

1 Answers  


Is the following code legal? struct a { int x; struct a b; }

1 Answers  


Write a program to model an exploding firecracker in the xy plane using a particle system

0 Answers   HCL,


void main() { int const * p=5; printf("%d",++(*p)); }

3 Answers   Infosys, Made Easy, State Bank Of India SBI,


main() { int i=5,j=6,z; printf("%d",i+++j); }

2 Answers  


How to read a directory in a C program?

4 Answers  


Categories