[algogeeks] Interview Questions

2011-09-15 Thread SAMMM
#includecstdio #includeiostream using namespace std; int main() { int w=10; int *p=w; int *x; *x=1000; int *y; *y=100; printf(%d %d %d,*x,*p,*y); return 0; } Wht is the o/p ?? 1)1000 10 100 2)1000 10 10 3)Compilation Error 4)Run Time Error -- You received this message because you

Re: [algogeeks] Interview Questions

2011-09-15 Thread Bhanu Kishore
Runtime Error due to the statetment *x = 1000; On Thu, Sep 15, 2011 at 11:32 PM, SAMMM somnath.nit...@gmail.com wrote: #includecstdio #includeiostream using namespace std; int main() { int w=10; int *p=w; int *x; *x=1000; int *y; *y=100; printf(%d %d %d,*x,*p,*y); return

Re: [algogeeks] Interview Questions

2011-09-15 Thread abhinav gupta
Runtime error.. x pointing to unintialised memory..and then initialised,,, On Thu, Sep 15, 2011 at 11:02 AM, SAMMM somnath.nit...@gmail.com wrote: #includecstdio #includeiostream using namespace std; int main() { int w=10; int *p=w; int *x; *x=1000; int *y; *y=100; printf(%d

Re: [algogeeks] Interview Questions

2011-09-15 Thread sukran dhawan
run time error because pointer is not assigned a address and it will be pointing to some junk location so *x = 1000 will result in a run time error On Thu, Sep 15, 2011 at 11:32 PM, SAMMM somnath.nit...@gmail.com wrote: #includecstdio #includeiostream using namespace std; int main() {

Re: [algogeeks] Interview Questions

2011-08-20 Thread sukran dhawan
most of them look for ur communication skills if though they ask technical stuffs .thats the worst part of banking and finance companies On Wed, Aug 17, 2011 at 11:33 AM, SAMMM somnath.nit...@gmail.com wrote: Can anyone tell me wht does banking firm ask in interview other than Technical stuffs

[algogeeks] Interview Questions

2011-08-17 Thread SAMMM
Can anyone tell me wht does banking firm ask in interview other than Technical stuffs , algo , puzzles?? Any suggestion . -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email to algogeeks@googlegroups.com. To

[algogeeks] interview questions

2011-08-03 Thread pacific :-)
I couldn't find the solution to this problem please help. Find the *first unique* string from a list of strings in *one pass.* * * *unique : *It occurs only once in the list. *one pass : *you are allowed to traverse the list only once. -- regards, chinna. -- You received this message because

Re: [algogeeks] interview questions

2011-08-03 Thread saurabh singh
sorry I may be wrong, On Wed, Aug 3, 2011 at 7:38 PM, saurabh singh saurab...@gmail.com wrote: use a mapstring,bool... On Wed, Aug 3, 2011 at 5:21 PM, pacific :-) pacific4...@gmail.com wrote: I couldn't find the solution to this problem please help. Find the *first unique* string

Re: [algogeeks] Interview Questions ebook

2011-07-01 Thread Aman Goyal
Go for crack the interview. On Fri, Jul 1, 2011 at 9:06 AM, Antony Kotre antonyko...@gmail.com wrote: please suggest me or mail me a good interview questions ebook thanks -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this

[algogeeks] Interview Questions ebook

2011-06-30 Thread Antony Kotre
please suggest me or mail me a good interview questions ebook thanks -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, send email to

[algogeeks] Interview questions for multithreading in Java

2011-03-08 Thread vaibhav agrawal
Hi, What interview questions one would expect for multi-threading? Thanks, Vaibhav -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, send email to

Re: [algogeeks] Interview questions for multithreading in Java

2011-03-08 Thread Abhishek Sharma
u can go through the following questions...not sure about the answers...: 1) What are the two types of multitasking? Ans : 1.process-based 2.Thread-based 2) What are the two ways to create the thread? Ans : 1.by implementing Runnable 2.by extending Thread 3) What is the signature of the

Re: [algogeeks] Interview questions for multithreading in Java

2011-03-08 Thread Abhishek Goswami
I think you can go some basic concept which help you. I have collected some info about threading . hope so it will little bit useful http://www.cppcoffe.blogspot.com/ On Tue, Mar 8, 2011 at 9:35 PM, Abhishek Sharma jkabhishe...@gmail.comwrote: u can go through the following questions...not

Re: [algogeeks] Interview questions for multithreading in Java

2011-03-08 Thread vaibhav agrawal
Thanks Abhishek! I was looking for something in Java On Tue, Mar 8, 2011 at 11:13 PM, Abhishek Goswami zeal.gosw...@gmail.comwrote: I think you can go some basic concept which help you. I have collected some info about threading . hope so it will little bit useful