Re: [algogeeks] Re: symantec

2011-09-29 Thread rashmi i
mmm... i dont remember the questions but these are the 1s i faintly
remember:
1. semaphore based qs
2. a question from theory of computation
3. some questions on the big O-notation.
4. b-tree vs b+-tree
5. some questions on unix
6. http,tcp based qs..
well sorry but these r da 1s i m able 2 recollect.

On Thu, Sep 29, 2011 at 10:36 AM, swetha rahul swetharahu...@gmail.comwrote:

 @ Rashmi thanks a lot


 On Thu, Sep 29, 2011 at 8:49 AM, siva viknesh sivavikne...@gmail.comwrote:

 @rashmi .thanks of lot for sharing.It would be of great
 help if u detail much about written test pattern and share the
 questions whatever u remember...thanks in advance..

 On Sep 29, 6:40 am, sush57 sushaant...@gmail.com wrote:
  didsymanteccome to your col...how many did they shortlist in first
  rounds...can u say pattern of written test...
 
  On Sep 28, 11:30 pm, rashmi i rash...@gmail.com wrote:
 
 
 
 
 
 
 
   they have a package of around 5.8 in hand. they have a written test
 followed
   by 2-3 interviews.The written test questions belonged to previous
 years GATE
   questions. The interviews were easier and the questions ranged  from
 OS, OOP
   concepts, Java, Databases.
 
   On Wed, Sep 28, 2011 at 12:09 AM, swetha rahul 
 swetharahu...@gmail.comwrote:
 
can anyone tell the recruitment procedure ofsymantec?
what is the package?
 
--
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.
 
   --
   R@$!-!
   DoN'T LimIt Ur cHaLlEngeS, ChAlLenGe uR LImItS.

 --
 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.




-- 
R@$!-!
DoN'T LimIt Ur cHaLlEngeS, ChAlLenGe uR LImItS.

-- 
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: symantec

2011-09-28 Thread swetha rahul
@ Rashmi thanks a lot

On Thu, Sep 29, 2011 at 8:49 AM, siva viknesh sivavikne...@gmail.comwrote:

 @rashmi .thanks of lot for sharing.It would be of great
 help if u detail much about written test pattern and share the
 questions whatever u remember...thanks in advance..

 On Sep 29, 6:40 am, sush57 sushaant...@gmail.com wrote:
  didsymanteccome to your col...how many did they shortlist in first
  rounds...can u say pattern of written test...
 
  On Sep 28, 11:30 pm, rashmi i rash...@gmail.com wrote:
 
 
 
 
 
 
 
   they have a package of around 5.8 in hand. they have a written test
 followed
   by 2-3 interviews.The written test questions belonged to previous years
 GATE
   questions. The interviews were easier and the questions ranged  from
 OS, OOP
   concepts, Java, Databases.
 
   On Wed, Sep 28, 2011 at 12:09 AM, swetha rahul 
 swetharahu...@gmail.comwrote:
 
can anyone tell the recruitment procedure ofsymantec?
what is the package?
 
--
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.
 
   --
   R@$!-!
   DoN'T LimIt Ur cHaLlEngeS, ChAlLenGe uR LImItS.

 --
 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: Symantec System programming ques

2011-09-18 Thread sagar pareek
I am supposing that file is count.txt and is already exists

so in initials of the main()
do this

*int count;
FILE* fp;

if((fp=fopen(count.txt,r))==NULL)
{
 printf(File does not exist\n);
 exit(0):
}

fscanf(fp,%d,count);
count++;

fclose(fp);

fp=fopen(count.txt,w);

fprintf(fp,%d,count);

fclose(fp);

*

On Sat, Sep 17, 2011 at 9:36 PM, siva viknesh sivavikne...@gmail.comwrote:

 hi anyone at least provide code using file handling.i found this
 ques from other site

 On Sep 17, 6:35 pm, sivaviknesh s sivavikne...@gmail.com wrote:
  you have to write a program which tell about how many times it has run.
 ex:
 
  if you run first time it will print 1.
  if you run second time it will print 2.
  like this.
 
  this can easily done by File Handling but think other solution like IPC.
 
  after booting your system, your program's output start from 1
 
  answers plz???
 
  --
  Regards,
  $iva

 --
 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
SAGAR PAREEK
COMPUTER SCIENCE AND ENGINEERING
NIT ALLAHABAD

-- 
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.