Re: [algogeeks] difference b/w static global variables and global variables

2012-02-25 Thread Akanksha .
Global variable are accessible from other file as well but static global
variables are only accessible in that particular file.


On Sat, Feb 25, 2012 at 10:21 PM, AMAN AGARWAL  wrote:

> Hi ,
>
> Is there any difference b/w static global variables and global variables
> ???
>
> (apart from that static variables will be limited to that file only and
> global variables will be visible for other files also.)
>
>
> Regards,
> Aman.
>
> --
> AMAN AGARWAL
> "Success is not final, Failure is not fatal: It is the courage to continue
> that counts!"
>
> --
> 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+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/algogeeks?hl=en.
>

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] Re: Reconstruct BST from preorder traversal

2011-10-18 Thread akanksha
yah i also think that for an BST on preorder traversal is efficient to
construct it again a tree :-)

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Sapient Help!!

2011-10-03 Thread Akanksha .
In the technical interview round dey asked me questions on bst
searching, hashing, triggers n other ques in dbms, writing a query, 2
puzzles n some ques on OS which i dnt remember.. n in the HR interview
round, dey asked me specifically abt my projects n others things dat
were der in my resume..

On Mon, Oct 3, 2011 at 6:09 PM, rajul jain  wrote:
> Hi akanksha
> Thanks for your information .Today i have cleared my written, can you please
> share some information about both interview process specifically that
> attribute round  what sort of question they asked in that interview.
> Rajul
>
> On Fri, Sep 30, 2011 at 5:35 PM, Akanksha .  wrote:
>>
>> I m a 2011 passout n sapient had visited my clg in jan 2011.. first of
>> all, u ll go thru a written test consising of apti ( quant, logical
>> reasoning n english ) and one paper of c,ds n c++ combined... den u r
>> shortlisted for technical interview in which dey ask u some puzzles n
>> ques related to dbms, ds, os etc(depends on ur inteviewer),once u
>> clear ur technical round, u ll hav a hr interview which is also an
>> elimination round.. so prepare well n all d best :)
>>
>> On Fri, Sep 30, 2011 at 4:59 PM, Prags  wrote:
>> > @Akaknsha- hv sapient visited ur college ?? if yes , then what is its
>> > procedure ?
>> >
>> > On Wed, Sep 28, 2011 at 9:32 PM, Akanksha . 
>> > wrote:
>> >>
>> >> wrk culture is gud mostly.. if u want to do gud technical wrk den
>> >> avoid dis company otherwise if u r interested in management or nething
>> >> like dat den u can go for it..
>> >>
>> >> On Wed, Sep 28, 2011 at 8:15 PM, rohit  wrote:
>> >> > Is anybody know about sapient working culture?
>> >> >
>> >> > --
>> >> > 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+unsubscr...@googlegroups.com.
>> >> > For more options, visit this group at
>> >> > http://groups.google.com/group/algogeeks?hl=en.
>> >> >
>> >> >
>> >>
>> >> --
>> >> 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+unsubscr...@googlegroups.com.
>> >> For more options, visit this group at
>> >> http://groups.google.com/group/algogeeks?hl=en.
>> >>
>> >
>> > --
>> > 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+unsubscr...@googlegroups.com.
>> > For more options, visit this group at
>> > http://groups.google.com/group/algogeeks?hl=en.
>> >
>>
>> --
>> 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+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/algogeeks?hl=en.
>>
>
> --
> 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+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/algogeeks?hl=en.
>

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] Re: Needed recursive sol

2011-10-01 Thread akanksha
int sum(int f0,int f1)
{
if(f1<=1000)
{
int x= sum(f1,f0+f1);
if(f1%2==0) x+=f1;
return x;
}
else
return 0;
}

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Sapient Help!!

2011-09-30 Thread Akanksha .
I m a 2011 passout n sapient had visited my clg in jan 2011.. first of
all, u ll go thru a written test consising of apti ( quant, logical
reasoning n english ) and one paper of c,ds n c++ combined... den u r
shortlisted for technical interview in which dey ask u some puzzles n
ques related to dbms, ds, os etc(depends on ur inteviewer),once u
clear ur technical round, u ll hav a hr interview which is also an
elimination round.. so prepare well n all d best :)

On Fri, Sep 30, 2011 at 4:59 PM, Prags  wrote:
> @Akaknsha- hv sapient visited ur college ?? if yes , then what is its
> procedure ?
>
> On Wed, Sep 28, 2011 at 9:32 PM, Akanksha .  wrote:
>>
>> wrk culture is gud mostly.. if u want to do gud technical wrk den
>> avoid dis company otherwise if u r interested in management or nething
>> like dat den u can go for it..
>>
>> On Wed, Sep 28, 2011 at 8:15 PM, rohit  wrote:
>> > Is anybody know about sapient working culture?
>> >
>> > --
>> > 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+unsubscr...@googlegroups.com.
>> > For more options, visit this group at
>> > http://groups.google.com/group/algogeeks?hl=en.
>> >
>> >
>>
>> --
>> 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+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/algogeeks?hl=en.
>>
>
> --
> 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+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/algogeeks?hl=en.
>

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Sapient Help!!

2011-09-28 Thread Akanksha .
wrk culture is gud mostly.. if u want to do gud technical wrk den
avoid dis company otherwise if u r interested in management or nething
like dat den u can go for it..

On Wed, Sep 28, 2011 at 8:15 PM, rohit  wrote:
> Is anybody know about sapient working culture?
>
> --
> 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+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/algogeeks?hl=en.
>
>

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] Re: Modified binary search

2011-09-27 Thread akanksha
/*
A program in which an array have an increasing sequence and an
decreasing sequence .
in these array search an element in o(n)time complexity
these is also called rotated array
*/
#include
#include
#include
using namespace std;
void search(int *array,int intial_index,int last_index,int ele);
int main()
{
int array[]={8,9,18,19,22,25,36,2,3,5,6,7};

search(array,0,11,9);

return 0;
}
void search(int *a,int l,int r,int ele) //l:left and r:right
{
cout<<"\nSearch in array :";
for(int i=l;i<=r;i++)
cout

[algogeeks] Re: MICROSOFT in VJTI mumbai

2011-09-13 Thread akanksha rathore
In our college (MNIT Jaipur) MicrosoftIT visited on 8th sept.Their
interview was mainly based on software engineering and dbms and summer
training project.DBMS sql queries and normalization.in software
engineering different life cycle models.some situation based puzzles
were also asked but they were easy.prepare dbms very well.

On Sep 8, 8:58 pm, dilip makwana  wrote:
> Hey guys MS coming to our college (VJTI Mumbai) ...preferably 14-15 Sept
>
> So *whoevere attended recently in past 2-3 months please share format and
> questions asked ...*
>
> Give details about -  in C/C++ what type of ques asked... etc and* if
> possible post questions ..*
>
> And *what areas one need to hone one's skills before appearing for MS ...*
>
> It'll be Great help to all of us ..[?]
>
> Thanks;
> --
> *Dilip Makwana*
> VJTI
> BTech Computers Engineering
> 2009-2013
>
>  330.gif
> < 1KViewDownload

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] ELitmus test

2011-09-11 Thread Akanksha .
they ll ask u questions related to quant , logical reasoning n
verbal.. prepare well with the help of any cat material.. in qunat
sections questions are mostly frm probability, perm n comb, number
system etc.. in verbel section they ask u to rearrange sentences, read
passage n ans q related to them etc,.. in d logical part der wud be
some q realted to deductive reasoning etc..
On Sun, Sep 11, 2011 at 11:41 PM, 9ight coder <9ightco...@gmail.com> wrote:
> hey!! anyone knows about syllabus, type of questns and also if someone
> knows previous papers
> remebered any ques from that please  reply me soon because  i am to
> give test on 12 sept...
>
> --
> 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+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/algogeeks?hl=en.
>
>

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Re: elitmus test

2011-08-25 Thread Akanksha .
I had taken d test but dnt remember d ques exactly.. but der were
tough ques on quant including number system, probability etc.. on the
verbal side der were ques for arranging of sentences, fill in the
blanks wid given words, reading passages n ansring ques based on dem
etc, den der were some ques on logical reasoning.. level of ques asked
in d test is sufficiently high so prepare well..

On Thu, Aug 25, 2011 at 10:12 AM, prasanna  wrote:
> thanks rohit.
> pls mentions some of the questions asked.
>
> On Aug 25, 9:29 am, ROHIT SINGHAL  wrote:
>> well i got 85 % in that. Its lil tricky test u need to clear ur geometry
>> skills for quant and prepare DI properly for logical portion.
>>
>> On Thu, Aug 25, 2011 at 9:49 AM, prasanna  wrote:
>> > Hi
>> > Whosoever have taken the elitmus test, pls share the type of questions
>> > asked in the test.
>>
>> > --
>> > 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+unsubscr...@googlegroups.com.
>> > For more options, visit this group at
>> >http://groups.google.com/group/algogeeks?hl=en.
>>
>> --
>> Regards:
>> Rohit Singhal
>
> --
> 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+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/algogeeks?hl=en.
>
>

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Elitmus test Help

2011-08-24 Thread Akanksha .
It is  a general aptitude test.. they ask u ques on quant, verbel n
problems solving skills.. prepare well if u r planning to take this
test as ques r tough..

On Wed, Aug 24, 2011 at 11:45 PM, rohit  wrote:
> Is anybody have any idea about pattern of elitmus test , Is It a C
> programming test or General aptitude test?
>
> --
> 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+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/algogeeks?hl=en.
>
>

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Oracle Interview ..Need Help!!

2011-08-03 Thread Akanksha .
In our college they were also looking for the sound fundamentals of header
files, libraries, macros etc. So be prepared with these also.

On Thu, Aug 4, 2011 at 9:21 AM, umesh kewat  wrote:

>  Better way of using DS, able to write good algo and programming puzzles
>
>
> Thanks
> Umesh
> MSIDC hyd
> Sent from my Windows Phone
> --
> From: priya v
> Sent: Thursday, August 04, 2011 7:16 AM
> To: algogeeks@googlegroups.com
> Subject: Re: [algogeeks] Oracle Interview ..Need Help!!
>
> Microsoft's conducting campus test this saturday. Need help!
> What should i concentrate on for the written round?
>
> --
> 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+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/algogeeks?hl=en.
>
> --
> 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+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/algogeeks?hl=en.
>

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.