Friday, May 10, 2019

Kumbakonam Tourist Taxi Services & Taxi Cabs Packages in Kumbakonam

Source 
www.kumbakonamcabs.com





Sri venkateswara Travels,Kumbakonam.

Cabsinkumbakonam offer hire a Taxi, cab services in kumbakonam and Navagraha Temples , kumbakonam Taxi Online booking & Cabs Luxury packages with Specialized in kumbakonam tourist taxi.

Cab In kumbakonam, provide North& South Kumbakonam Tour Packages for the tourists coming to Kumbakonam. our drivers by the professional experience on Kumbakonam road, provides the best Temple Tours and Navagraha Temples, Holidays Leisure for our Guest.

CALL NOW :   +91-6381005302

Website: WWW.KUMBAKONAMCABS.COM


Our Address

Bharathi Nagar South,Near BDO Office Sakkotai Post, Kumbakonam, Tamil Nadu 612001  Call Us  +91-6381005302


Our Timing
Mon – Sun : 12:00 AM – 11:59 PM / 12:00 AM – 11:59 PM



Navagraha Temple Tours Day1 Packages
Navagraha tours from kumbakonam


Tuesday, August 23, 2011

ASP .NET 3.5 Interview Questions & Answers :


1. Explain the life cycle of an ASP .NET page.?
Following are the events occur during ASP.NET Page Life Cycle:

1)Page_PreInit
2)Page_Init
3)Page_InitComplete
4)Page_PreLoad
5)Page_Load
6)Control Events
7)Page_LoadComplete
8)Page_PreRender
9)SaveViewState
10)Page_Render
11)Page_Unload

Among above events Page_Render is the only event which is raised by page. So we can't write code for this event.

2. how does the cookies work in asp.net?
we know Http is an state-less protocol which is required for interaction between clinet and server .

so there is an need to remeber state of request raised by an web browser so that
web server can recognize you have already previously visited or not.

There are two types of state management techniques:
a) Client side state management
b) Server - side statemanagement

Using cookies comes under clinet side statemanagement .In HttpResponse we write
Cookie containing sessionId and other information within it.

when a browser made a request to the web server the same cookie is sent to the server where server recognize the session id and get other information stored to it previously.

3. What is Ispostback method in ASP.Net? Why do we use that??

Basically Post back is an action performed by a interactive Webpage. When it goes to the server side for a non-client Operation Server again posts it back to the client and hence the name.
Ex:

if(!IsPostBack)

will not allow the page to post back again n again bcoz it reduces the performance.

4. Can User Control be stored in library?.
I will say "NO"

there are 3 types of controls:
1) User Control
2) Custom Control
3) Web parts

you can reuse User control in the current project in which you have built it, but you can't move it to other project as unless you just copy paste the same file there and make the changes for that project ( which violets the concept of library).

but custom control can be shared between projects. and you can precompile them even as a dll, so this means you can use them in library of any type.

5. what is the difference between application state and caching?
Application Object and Cached Object both falls under Server side State Management.

Application object resides in InProc i.e. on the same server where we hosted our application.
Cache Object resides on server side/ DownStream/Client Side.

Application Object will be disposed once application will stop.
Cache Object can be disposed using Time based cache dependency.

Only one user can access Application Object at a time hence we have to lock it every time we modify it.

6. what is boxing and unboxing?
Boxing is what happens when a value-type object is assigned to a reference-type variable.
Unboxing is what happens when a reference-type variable is assigned to a value-type variable.
What are the uses of Reflection??
Reflection is a concept using which we can

1) Load assemblies dynamically
2) Invoke methods at runtime
3) Retriving type information at runtime.

8. What is the use of AutoWireup in asp.net?
AutoEventWireup attribute is used to set whether the events needs to be automatically generated or not.
In the case where AutoEventWireup attribute is set to false (by default) event handlers are automatically required for Page_Load or Page_Init. However when we set the value of the AutoEventWireup attribute to true the ASP.NET runtime does not require events to specify event handlers like Page_Load or Page_Init.

9. what events will occur when a page is loaded?
Below are the events occures during page load.

1) Page_PreInit
2) Page_Init
3) Page_InitComplete
4) Page_PreLoad

10. Where is the View state Data stored?
ViewState data is stored in the hidden field. When the page is submitted to the server the data is sent to the server in the form of hidden fields for each control. If th viewstate of the control is enable true the value is retained on the post back to the client when the page is post backed.

11. What is the difference between custom web user control and a custom web server control?
Web User Control:
1) Easy to Create.
2) It Can be used inside the same Application.(To use it in other application we need to add it to that project.)
3) It Can take advantage of Caching Technique.

Web Server Control:
1) Bit tuff to create as compare to User Control.
2) Easy to use.
3) Can be added to ToolBox.

12. Where do the Cookie State and Session State information be stored?
Cookie Information will be stored in a txt file on client system under a
folder named Cookies. Search for it in your system you will find it. Coming to Session State
As we know for every process some default space will be allocated by OS.
In case of InProc Session Info will be stored inside the process where our
application is running.
In case of StateServer Session Info will be stored using ASP.NET State Service.
In case of SQLServer Session info will be stored inside Database. Default DB
which will be created after running InstallSQLState Script is ASPState.
13. What is the difference between adding reference in solution Explorer and adding references by USING ?
Adding reference in solution explorer is used to add the DLL for that project for reference only. If you want to utilize that DLL methods/functions in our aspx.cs/.cs file etc you must write using that nameclass library name in file.

14. What are the different types of sessions in ASP.Net? Name them.?
Session Management can be achieved in two ways

1)InProc
2)OutProc

OutProc is again two types
1)State Server
2)SQL Server

InProc
Adv.:
1) Faster as session resides in the same process as the application
2) No need to serialize the data
DisAdv.:
1) Will degrade the performance of the application if large chunk of data is stored
2) On restart of IIS all the Session info will be lost
State Server
Adv.:
1) Faster then SQL Server session management
2) Safer then InProc. As IIS restart
won't effect the session data
DisAdv.:
1) Data need to be serialized
2) On restart of ASP.NET State Service session info will be lost
3)Slower as compared to InProc
SQL Server
Adv.:
1) Reliable and Durable
2) IIS and ASP.NET State Service
restart won't effect the session data
3) Good place for storing large chunk of data
DisAdv.:
1) Data need to be serialized
2) Slower as compare to InProc and State Server
3)Need to purchase Licensed
version of SQL Serve
15. How do you design a website with multilingual support in ASP.NET?
Multilingual website can be created using Globalization and Localization.
Using Globalization we change the Currency Date Numbers etc to Language Specific Format.
To change the string which is there in the label button etc to language specific string we use Localization.
In Localization we have to create different Resource files for different languages.
During this process we use some classes present in System.Resources System.Globalization System.Threading namespaces.
16. What is caching? What are different ways of caching in ASP.NET?
Caching is a technique of persisting the data in memory for immediate access to requesting program calls. This is considered as the best way to enhance the performance of the application.

Caching is of 3 types:
Output Caching - Caches the whole page.
Fragment Caching - Caches a part of the page
Data Caching - Caches the data

17. What is meant by 3-tier architecture.
We generally split our application into 3-Layers
1)Presentation Layer ( Where we keep all web forms Master Pages and User Controls).
2)Business Layer (Where we keep business logic). e.g Code related to manipulating data Custom Exception classes Custom Control classes Login related code if any etc. etc.
3)Data Access Layer (Where we keep code used to interact with DB). e.g. We can have the methods which are using SQL Helper (Application Block).
18. Explain the basic functionality of garbage collector?
Garbage Collector in .Net Framework is used for Automatic Memory Management i.e. it is collect all unused memory area and give to application. system.gc.collect() is a method for release the memory. But remember one think it is only an request i.e. we can't explicitly release the memory by using system.gc.collect().
19. What is the difference between mechine.config and web.config?
machine.config is a system level configuration i.e it is applied on all application in o/s that the configuration is set where as in web.config it is applicable to only one application i.e each asp.net webapplication will contain atleast on web.config file.
20. How can exception be handled with out the use of try catch?
using Exception Management application block
or
Page_error
Application_error objects
21. What is the difference between Response.Redirect and Server.Transfer.
Server.Transfer transfers page processing from one page directly to the next page without making a round-trip back to the client's browser. This provides a faster response with a little less overhead on the server.Server.Transfer does not update the clients url history list or current url.
Response.Redirect is used toredirect the user's browser to another page or site. This performs a trip back to the client where the client's browser is redirected to the new page. The user's browser history list is updated to reflect the new address.
22. Where the assembly is stored in asp.net?.
private are stored in application / bin directory and public are stored in GAC.
23. How we implement Web farm and Web Garden concept in ASP.NET?.
A web farm is a multi-server scenario. So we may have a server in each state of US. If the load on one server is in excess then the other servers step in to bear the brunt.
How they bear it is based on various models.
1. RoundRobin. (All servers share load equally)
2. NLB (economical)
3. HLB (expensive but can scale up to 8192 servers)
4. Hybrid (of 2 and 3).
5. CLB (Component load balancer).
A web garden is a multi-processor setup. i.e. a single server (not like the multi server above).
How to implement webfarms in .Net:
Go to web.config and
Here for mode you have 4 options.
a) Say mode inproc (non web farm but fast when you have very few customers).
b) Say mode StateServer (for webfarm)
c) Say mode SqlServer (for webfarm)
Whether to use option b or c depends on situation. StateServer is faster but SqlServer is more reliable and used for mission critical applications.
How to use webgardens in .Net:
Go to web.config and
Change the false to true. You have one more attribute that is related to webgarden in the same tag called cpuMask.
24. Is there any limit for query string? means what is the maximum size?..
Servers should be cautious about depending on URI lengths above 255 bytes because some older client or proxy implementations may not properly support these lengths.
Query string length depends on browser compatability

IE supports upto 255
Firefox supports upto 4000
25. What is the exact purpose of http handlers?
ASP.NET maps HTTP requests to HttpHandlers. Each HttpHandler enables processing of individual HTTP URLs or groups of URL extensions within an application. HttpHandlers have the same functionality as ISAPI extensions with a much simpler programming model
Ex
1.Default HttpHandler for all ASP.NET pages ->ASP.NET Page Handler (*.aspx)
2.Default HttpHandler for all ASP.NET service pages->ASP.NET Service Handler (*.asmx)
An HttpHandler can be either synchronous or asynchronous. A synchronous handler does not return until it finishes processing the HTTP request for which it is called. An asynchronous handler usually launches a process that can be lengthy and returns before that process finishes
After writing and compiling the code to implement an HttpHandler you must register the handler using your application's Web.config file.

Saturday, August 6, 2011

HCL – Refer graduates from the 2011 batch to us!!!!

*Dear HCLite,***At HCL, it has always been our aim to recruit the
crème-de-la-crème from across campuses in the country. And we believe that
as an important member of this organization, you can help us achieve that
aim. We are giving you an exclusive opportunity to introduce your friends to
the many opportunities that are available at HCL and usher them to success.*
*

 We are currently looking for dynamic, young graduates with a desire to
excel, and need your help in finding and bringing in the best!  If you know
graduates of the 2011 batch who satisfy the following criteria, please ask
them to register at the following link:

*http://hclcampusregistration.cloudapp.net/*

* *

* *

*Basic eligibility criteria:*

* *

1.      A minimum of 65% aggregate in Class 10, 12 & Graduation are a must
in the below mentioned disciplines

Ø  BE, MCA, M. Tech, ME – CS / IT / ECE / EEE / E&I

Ø  B.SC <http://b.sc/> (Comp Sc / IT / Math / Physics / Electronics /
Stats), BCA, B.Com (CS / IT)

2.     All candidates should have graduated as part of the *2011 batch*

3.     Candidates should have no arrears at the time of registration

4.     Candidates should have excellent verbal and written communication
skills

* *

*Note:*

1.     This registration is open *only* for candidates who have graduated in
2011

2.     Fresher referrals are not covered under the referral policy, please
refer to Natasha for details

3.     We are NOT hiring graduates from 2009 and 2010 under this category

Verizon freshers recruitment

Verizon recruiting freshers please forward your cvs to
 
 
 
eligibility:
1) Graduate from 2011 pass-outs(only BE/B.Tech).
2) Minimum of 65% aggregate throughout academics.
3) Cse & IT Branches only.
4) Good communication skills & Good attitude.
5) willing to work with java/j2ee as domain.

Friday, February 25, 2011

[Freshers] Mu-Sigma off-campus drive for 2011 freshers



Mu-Sigma off-campus recruitment drive for 2011 freshers




Eligibility Criteria: 70% and above

65% (from selected colleges)

Thursday, February 24, 2011

CSC "Computer Sciences Corporation India (P) Ltd"- POOLED OFF - CAMPUS INTERVIEW FOR 2011 passed out

*02-03-2011**Drive for **Engg. Students*


 *Eligibility: Final year -2011 Passing out Batch**


B.E/B.Tech(CSE,IT,EEE,ECE,E&I)/MCA*

- 70 % Consistency in 10th ,+2 and up to 7th SEM**


 - *Salary -3.25 lacs pa.*


  *03-03-2011* *Drive for Diploma Students*


 * * *Eligibility:* *Final year Diploma(CT,IT,EEE,ECE)*


- 60% consistency in 10th, +2, Diploma up to the 5th Sem**

- *Salary - 1.67 lacs pa + Retention Bonus of Rs.50,000 on completion of 1st year.*


Selection Process
  1. Aptitude Test ,
  2. Technical Test,
  3. Communication Skills Evaluation
  4. Technical Interview.
College Address and Venue
Knowledge Institute of Technology,


KIOT Campus, Kakapalayam (PO.),

(17 KM from Salem to Coimbatore Highway NH-47)


 Salem – 637 504


 *Web: **www.kiot.ac.in* **


 *E-mail: csc@kiot.ac.in*


 *Contact Person*
* **Mr.S.Balasubramaniyam , Mr.B.Sasikumar,* *Mr.I.Rajesh*


  Contact Number*
*For Engineering – 97900 61616*


*For Polytechnic - 98948 24645*


*PROCEDURE FOR PARTICIPATION IN THE RECRUITMENT DRIVE*


*The candidates are requested to apply through their College Placement Officer only*
 - The institutions are requested to send the students’ details in the given format to our Mail ID: csc@kiot.ac.in, on or before *28th**February * *2011*.
 - *Only registered candidates will be permitted to attend the interview process*
 - *Only limited registration. First come, first served. In that case, late registration could be out of luck.*
- We request the institution to inform and send your students to the above Venue for the Recruitment Drive.

NOTE: if u want to know more details about campus intake pls send a mail to dnsh.kum@gmail.com with the subject as ADD TO GROUP or send a mail to dnsh_job11@googlegroups.com

Saturday, January 8, 2011

Wipro job openings for freshers 2011 Passout

Company name : Wipro Technologies
Location : Hyderabad
Experience : fresher
Eligibility : B.Tech/B.E
Job Code : T111685

Wipro job openings for freshers 2011 at Hyderabad
Job Description :
Roles and Responsibilities: ETL-L1, Data Modelling-L1, OLAP-L1
Skill & Job Requirements:
” Should have basic understanding of Business Intelligence & Data Warehousing, project life cycle Phases. Should have minimum of 3 years of IT project experience. Should have basic knowledge in at least one leading ETL Tools(Informatics, AbInitio, Data Stage etc.) and familiarity with one or two leading ETL tools Should have working knowledge of RDBMS and SQL skills. Should possess strong communication skills. Experience Range: 4-7 yrs IT project exp.”
Desired Profile :
Skills: Responsible for development, support, maintenance and implementation of small to medium non-complex components of a project module. Works on problems of limited scope, through usage of standard programming concepts and principles. Works under high supervision/ guidance with frequent review of accomplished objectives. Requires theoretical knowledge of programming languages. Expected to learn o the job towards developing domain knowledge along with technical/ proprietary skills.
Apply Details :
To apply online Click here
Job code : T111685


Note: if U want More Job detail Join : dnsh_job@googlegroups.com.

Tuesday, December 14, 2010

Tech mahindra walkin 2010 freshers on 19 Dec 2010

Company name : TECH MAHINDRA
Walk-in Location : Banglore
Experience : Freshers
Eligibility : BE / BTech /MCA
Walk-in Date : 19 December 2010
Tech Mahindra walkins for freshers in Banglore on 19th Dec 2010 Note: Only Allowed who have hallticket.
Desired Profile :
Eligibility Criterion:
Candidates should have graduated in the year 2010 with a consistent Academic Performance of 60% & above, SSC onwards till end of graduation/Post-graduation.
Note : Only 1 year gap is allowed in between courses.
Courses:
1. BE / B.Tech
* Computer Science Engineering
* Information Science Engineering
* Information Technology
* Electronics & Communication
* Electronics & Electrical Engineering
* Telecommunication Engineering
* Electronics & Instrumentation Engineering
* Electronics
* Electrical
2. MCA
Note : Any other discipline or pass outs from any other batch apart from the ones mentioned above will not be consider.
Selection Process:
1. Candidates will be called to join from a merit list which will be prepared based on Academic, Aptitude Test & Interview performance of candidates. Communication to this effect will be sent to candidates by e-mail directly.
2. Those offered will be required to join within 1 – 2 weeks of selection at any of the TechM centers in India for training & subsequent posting. Not joining on given date and location will be considered as rejection.
3. Candidates need to carry following MANDATORY DOCUMENTS (Original + 1 Xerox copy) at the time of Test / interview.
a) Hard copy of Resume.
b) Address proof – Electricity bill/ Ration Card/ Driving License/ BSNL/MTNL Landline bill/ Voters ID.
c) Mark sheets and Certificates of 10th and 12th. (Original + 1 Xerox copy).
d) Mark Sheets (All Semester) and Degree certificates of Graduation and Post Graduation. (Original + 1 Xerox copy)
e) Passport or Receipt of Passport application.
f) 3 Photographs.
Walk-in Date / Time :
Day/Date: Sunday 19th Dec`10,
Walk -in Venue:
: TechMahindra Ltd.
AMR Tech Park, No 23 & 24, Hosur Road
Bommanahalli, Bangalore-560068

Tuesday, November 2, 2010

[MP3] Raththa Charithram (2010) - ACDRip VBR 320kbps

DOWNLOAD:
http://www.fileserve.com/file/DzsvZjq

DVD-RIP Enthiran Video Songs -Lotus Fivestar 2.1


Code:
http://www.megaupload.com/?d=DRLOCKUL
http://www.megaupload.com/?d=VKVAPFY2
http://www.megaupload.com/?d=C0TZCI1M
http://www.megaupload.com/?d=YWSHWOIF
http://www.megaupload.com/?d=UKY1V4O7
http://www.megaupload.com/?d=Q1I2RIXN
http://www.megaupload.com/?d=YJK409YQ

Friday, October 1, 2010

Enthiran - The Robot Movie Review: First On net

FRIDAY, October 1 - The Robot as it is India's most expensive film to date. Superstar Rajinikant's fans who celebrate each of his films as if it were a festival will not be disappointed in this one. Robot is Rajinikant all the way! Directed by Shankar, ROBOT weaves its magic on the viewers from the word go. The film is easily India's most imaginative film to date and can in fact compare favorably to visual extravaganzas like The Matrix or the Godzilla. Robot is all of our favorite action heroes rolled into one pleasing package. Be it Spiderman's agility, Superman's speed or Terminator's magical drive, the Robot has it all and more.


The Robot tells the tale of Chitti, a human who is not born, but is created by the effervescent Dr. Vasi to help the society. Chitti is water and fire resistant, but does have the ability to sing and dance besides having the ability to rout armies single-handedly. Chitti the Robot can also retain memories of an entire telephone directory by simply skimming through the pages within seconds. However the Robot cannot lie and has no emotions.

Once Dr Vasi rectifies this feature and upgrades his processor to give the Robot emotions, all hell breaks loose. Robot falls in Love. What happens next forms the crux of this amazing film.

Director Shankar has managed to make a difficult concept a simple one on the screen. He has breathed life into the film and was nicely helped by stunt coordinator Yuen Woo Ping, the action choreographer of the Matrix sequel fame. [Stan Winston Studio of the Iron Man, Avatar and Jurassic Park fame provided the animatronics technology. Locations for the song sequences are exotic and near perfect.

Rajnikant is brilliant once again as is his wont and delivers an effortless and charming performance. Aishwarya Rai Bachchan looks ethereal and does a commendable job and Danny is his usual self. On the whole ROBOT is hugely entertaining and we recommend that you grab a ticket and enjoy the ride this weekend!

Thursday, September 23, 2010

Freshers Wipro Technologies 2010 passout

Engineering/ Science Graduates
Eligibility:





Location: Job Category: Last Date:
Job Type: Hiring Process:
Job Details
Wipro Technologies, a leading global IT services company offers bright young minds exciting careers at locations across India.
Engineering Graduates of 2010
  • Engineering Graduates of 2010 Wipro's reputation as a pioneering and innovative company in the global technology landscape makes it a determined choice for the best of talented engineers. We invite you to exciting opportunities with us in the software engineering space.
Eligibility Criteria :
  • BE, B.Tech, MCA / ME, M.Tech, MS
  • Minimum 50% in X & XII
  • 60% in Graduation and Post Graduation (if applicable)
Science Graduates of 2010 for WASE
  • Wipro Academy of Software Excellence (WASE) gives you an unique option of pursuing an MS degree from the well renowned BITS, Pilani and simultaneously earn at Wipro Technologies. Now, you have the advantage of learning while working as a qualified IT professional at Wipro.
Eligibility Criteria
  • B.Sc. (CS/IT/Electronics/Physics/Mathematics/Statistics) / BCA / BCM
  • 50% aggregate marks in X & XII
  • 60% aggregate marks in Graduation
  • Mathematics as one subject in 12th - Mandatory
Students who have graduated in the year 2010 can walk-in to the below mentioned location.
Candidates appearing for the walk-in must carry their resume, one passport size photograph and a valid photo ID.
How to apply
Walk-in on: 25 September, 2010.

Reporting Time: 9:00 a.m. to 11:00 a.m.

Wipro Technologies,
No.53/1,Ganappa Towers,
Madivala,
(next to Madivala Police Station)
Bangalore - 560 068
Wipro Technologies
CDC 3, Sterling Building,
105, Anna Salai,
Guindy,
Chennai – 600032
Wipro Technologies,
Manikonda SEZ 203/1,
Manikonda Village,
Gachibowli,
Hyderabad – 500 032
Wipro Technologies
2nd floor, Interface Building no.11,
Malad West,
(Close to Goregaon Sports Complex),
Mumbai - 400 072
Wipro Technologies
Block DM,
Sector - V, Salt Lake City,
Kolkata - 700091
Wipro Limited
Special Economic Zone,
Plot No – 2,3 & 4
Knowledge Park – 4(IT Park),
Gautam Budh Nagar,
Greater Noida – 201306
Wipro Technologies
Phase - 1, Plot No. 2,
MIDC, Pune Infotech Park,
Hinjewadi,
Pune - 411 057
Students who have Engineering Graduated in the year 2010 can click here to apply Click here to apply (Upon registering, you will be called shortly for an interview with us.)
Students graduating in the year 2011 can Click here to apply to WASE
Students unable to attend the walk-in can click here to Apply Online to the job

Tuesday, September 21, 2010

[DVD] Naan Mahan Alla (2010) Lotus Fivestar Video Songs

Banner: STUDIO GREEN
Cast: Karthi, Kajal Agarwal, Soori, Vairavan and others
Director: SUSEENTHIRAN
Music Director: YUVAN SHANKAR RAJA
Producer: K.E. GNANAVEL RAJA




 DOWNLOAD :
http://www.fileserve.com/file/r9RpfFc
http://www.fileserve.com/file/XgQNGZA
http://www.fileserve.com/file/N2zSn8D

Aricent: Offcampus Drive: Hiring Engineering Graduates 2010

Dear Friends,

To support the organization’s fast-paced growth, we need to recruit young qualified talent who possess out of the box thinking abilities. In our quest for looking for these young professionals, we realize that the best person to help us in this search is “YOU.”

Designation: Trainee-Software Engineer/Trainee-Test Engineer

Job Location: Gurgaon/Bangalore/Chennai

Qualification: Candidates from BE/ B.Tech/ME/M. Tech./MCA/ M.Sc (IT) degrees are eligible. (Correspondence courses will not be entertained)

Disciplines: Computer Science, Information Technology, Instrumentation & Control, Electronics & Communication, Electrical Engg & Software Engineering.

Eligibility Criteria:

·         Only 2010 passouts are eligible for this process.
·         Minimum aggregate of 75% and above
·         There should not be any backlog/compartment at the time of appearing for test. 
        Kindly note the following important points while reaching out to someone:
·         Do remember to refer your friends/relatives details by September 20, 2010 on the link given below:
·         The link will be available for registration & it will be removed by COB Monday, September 20, 2010
·         Resumes received through any other mode of communication will not be considered 
·         Short-listed candidates will be intimated about the date and venue for a test via email. 
·         Test Location: Gurgaon/Bangalore/Chennai
·         Test will be conducted on September 25, 2010
  Kindly note that it is an internal link, hence do not forward it to anyone outside Aricent because they will not be able to apply through it.

 Regards,
 iRefer Team
 HR_Talent Acquisition

Monday, September 13, 2010

iNautix recruiting 2010 freshers

Hi Friends,
iNautix is recruiting 2010 freshers. Interested candidates please send your updated CV's to : RaJanakiraman@inautix.co.in
 

Friday, September 10, 2010

CTS Latest Fresher Placement paper 4 & 5 September 2010, Chennai

Hi friends,
I attended my First round of cts written(CBT) test in Anand Instiute coll,chennai.Same pattern was exist.Prepare previous qs papers very well by which u can get clear idea about concepts.Time Managemet is the key.All qs were totally time consuming.No negative marking.
Total Questions: 55
  • Analytical--> 30 (30 mins)
  • Verbal--> 25 (20 mins)
1.Analytical Reasoning: Figure Sequence,puzzle test,Syllogism,Logic,Data Sufficiency,Coding-Decoding etc.
2.Verbal : Two RC(10 qs) that was too long to read,finding correct (5qs)and incorrect sentence(5qs),Jumbled Sentences(5qs)....
Thats it guys.Its is CBT and tht software is not efficient one to interact with...Once again i'm telling u that Time Management is the key.Simple preparation is enough.This is not tough as TCS interview..Easy to crack.They said yht results will be announced after three days.

Friday, August 13, 2010

Madrasapattinam (2010) Sruthi 5.1 Video Songs Free Download

MOVIE INFO
Banner: AGS Entertainment
Cast: Aarya, Amy Jackson, Nasser, Omar, VMC Haneefa
Director: Vijay
Music Director: G.V Prakashkumar
Producer: Kalpathi S Agoram

Download:

Walk In For Freshers -Volantis recruiting 2010 graduates

Experience:0 Years
Location: Bengaluru/Bangalore, Chennai
Compensation:Rupees 1,25,000 - 1,50,000
Education:UG - Any Graduate - Any Specialization PG - Any PG Course - Any Specialization
Industry Type:IT-Software/ Software Services
Role:Tech Support Engnr
Functional Area:IT-Other
Posted Date:10 Aug

Desired Candidate Profile

*Year of pass-out: 2008, 2009, 2010
*Minimum percentage: 60% from 10th till graduation
*Willingness to work in Chennai / Bangalore / Hyderabad.
*Willingness to work in Shifts

Job Description

* Good Communication Skills
* Fresh graduate
*Year of pass-out: 2008, 2009, 2010
*Minimum percentage: 60% from 10th till graduation
*Willingness to work in Chennai / Bangalore / Hyderabad.
*Willingness to work in Shifts
Keywords: fresher,graduate

Company Profile

IT services firm headquartered in the US with more than 12,000 professionals worldwide. For 45 years, Keane has been an Application Services specialist with distinguished project management credentials-PLEASE SEND RESUME TO anuradha@volantis.co.in
Contact Details
Company Name:Volantis Technologies
Executive Name:Anuradha
Address:  #1329, 1st Floor, Tulasi Plaza, 24th A Main
Jayanagar 9th Block, Bangalore - 560069
BANGALORE,
Karnataka,
India

Sonata Software Recruiting 2009 freshers.

Sonata Software Recruiting 2009 freshers.

Location: Bangalore

Eligibility Criteria:

· Engineering Graduates from the 2009 batch

· Graduates from the following disciplines –Computer Science, Electrical & Electronics, Electronics & Communication, Information Science,Information Technology, Electronics & Telecommunication with 65%aggregate

· MCA’s with 70% aggregate

· Minimum 65% in 10th and 12th examination

· No gaps in academic career

· Execute a bond to serve the company for 2 years
from the date of joining

Apply: Please send across the resumes to 
Sonata Software Recruiting 2009 freshers.

Location: Bangalore

Eligibility Criteria:

· Engineering Graduates from the 2009 batch

· Graduates from the following disciplines –Computer Science, Electrical & Electronics, Electronics & Communication, Information Science,Information Technology, Electronics & Telecommunication with 65%aggregate

· MCA’s with 70% aggregate

· Minimum 65% in 10th and 12th examination

· No gaps in academic career

· Execute a bond to serve the company for 2 years
from the date of joining

Apply: Please send across the resumes to freshers@sonata-software.com
-

TCS hiring Engineering Graduates and Postgraduates(2010 passout)

2010 Cognizant Off-Campus Recruitment Process

Monday, August 2, 2010

Enthiran Audio Launch Videos HQ




Banner: Sun Pictures
Cast: Rajinikanth & Aishwarya Rai
Direction: S. Shankar
Production: Kalanidhi Maran
Music: A.R. Rahman
Lyricist: Vairamuthu, Kaarki & P. Vijay
Download
http://www.megaupload.com/?d=4FH2QK05
http://www.megaupload.com/?d=VV12LPWT

Tuesday, July 20, 2010

20th & 21st July 2010 Cognizant IT freshers Recruitment for 2010 pass outs


EDUCATION CRITERIA

·         2010 passouts of B.Sc (Computer Science / IT / CT) and BCA only
·         Consistent academic record of over 60% in X, XII and UG

      MANDATORY REQUIREMENTS
·         Strong understanding of subject fundamentals
·         Good analytical skills  
·         Good verbal and written communication skills

RECRUITMENT PROCESS
·         Written aptitude test
·         Technical interview
·         HR Interview

    VENUE: SEZ Campus

DATE: 20 & 21

Time: 3:00 PM

NOTE: The Written Aptitude Test will be conducted on 20th & 21st July 2010. The candidates will then be advised on when the technical interview will be scheduled.
cid:image002.jpg@01CB1753.4C20BF10

Sunday, July 18, 2010

Nandi Mp3 Song [ACD RIP 320 Kbps]

 

Infosys recruiting BCA or B.Sc graduates.



Position/Role: Infrastructure Management Services (IMS), Independent Validation Solutions (IVS),Operations Executive / Testing Executive

Eligibility Criteria:
  • BCA or B.Sc graduates (Computer Science/ Electronics/ Mathematics/ Physics/ Statistics / Information Technology / Information Science only)
  • Candidates who have graduated in 2008, 2009 & 2010 with experience of up to 24 months are eligible to apply
  • Simple average aggregate of 60% throughout Class X, XII & Graduation.
  • Should not have participated in the Infosys selection process in the last 9 months.
  • Should have good communication skills.
  • Should be willing to relocate and work in a 24x7 environment.
How to apply: send the resumes to graduates@infosys.com on/before 23rd July, 2010. Short listed candidates will be informed via e-mail about the selection process.

Naan Mahaan Alla Mp3 Song [ACD RIP 320 Kbps]


Click here to Download

Toll Free Numbers in India

Airlines
Indian Airlines - 1800 180 1407
Jet Airways - 1800 22 5522
SpiceJet - 1800 180 3333
Air India -- 1800 22 7722
KingFisher - 1800 180 0101

Banks

ABN AMRO - 1800 11 2224
Canara Bank - 1800 44 6000
Citibank - 1800 44 2265
Corporatin Bank - 1800 443 555
Development Credit Bank - 1800 22 5769
HDFC Bank - 1800 227 227
ICICI Bank - 1800 333 499
ICICI Bank NRI - 1800 22 4848
IDBI Bank - 1800 11 6999
Indian Bank - 1800 425 1400
ING Vysya - 1800 44 9900
Kotak Mahindra Bank - 1800 22 6022
Lord Krishna Bank - 1800 11 2300
Punjab National Bank - 1800 122 222
State Bank of India - 1800 44 1955
Syndicate Bank - 1800 44 6655
Automobiles
Mahindra Scorpio - 1800 22 6006
Maruti - 1800 111 515
Tata Motors - 1800 22 5552
Windshield Experts - 1800 11 3636

Computers/IT

Adrenalin - 1800 444 445
AMD - 1800 425 6664
Apple Computers - 1800 444 683
Canon - 1800 333 366
Cisco Systems - 1800 221 777
Compaq - HP - 1800 444 999
Data One Broadband - 1800 424 1800
Dell - 1800 444 026
Epson - 1800 44 0011
eSys - 3970 0011
Genesis Tally Academy - 1800 444 888
HCL - 1800 180 8080
IBM - 1800 443 333
Lexmark - 1800 22 4477
Marshal's Point - 1800 33 4488
Microsoft - 1800 111 100
Microsoft Virus Update - 1901 333 334
Seagate - 1800 180 1104
Symantec - 1800 44 5533
TVS Electronics - 1800 444 566
WeP Peripherals - 1800 44 6446
Wipro - 1800 333 312
xerox - 1800 180 1225
Zenith - 1800 222 004


Indian Railway General Enquiry       131
Indian Railway Central Enquiry     131
Indian Railway Reservation     131
Indian Railway Railway Reservation Enquiry     1345,1335,1330
Indian Railway Centralised Railway Enquiry     1330/1/2/3/4/ 5/6/7/8/9 

 
Couriers/Packers & Movers
ABT Courier - 1800 44 8585
AFL Wizz - 1800 22 9696
Agarwal Packers & Movers - 1800 11 4321
Associated Packers P Ltd - 1800 21 4560
DHL - 1800 111 345
FedEx - 1800 22 6161
Goel Packers & Movers - 1800 11 3456
UPS - 1800 22 7171


Home Appliances
Aiwa/Sony - 1800 11 1188
Anchor Switches - 1800 22 7979
Blue Star - 1800 22 2200
Bose Audio - 1800 11 2673
Bru Coffee Vending Machines - 1800 44 7171
Daikin Air Conditioners - 1800 444 222
DishTV - 1800 12 3474
Faber Chimneys - 1800 21 4595
Godrej - 1800 22 5511
Grundfos Pumps - 1800 33 4555
LG - 1901 180 9999
Philips - 1800 22 4422
Samsung - 1800 113 444
Sanyo - 1800 11 0101
Voltas - 1800 33 4546
WorldSpace Satellite Radio - 1800 44 5432
 

Investments/ Finance
CAMS - 1800 44 2267
Chola Mutual Fund - 1800 22 2300
Easy IPO's - 3030 5757
Fidelity Investments - 1800 180 8000
Franklin Templeton Fund - 1800 425 4255
J M Morgan Stanley - 1800 22 0004
Kotak Mutual Fund - 1800 222 626
LIC Housing Finance - 1800 44 0005
SBI Mutual Fund - 1800 22 3040
Sharekhan - 1800 22 7500
Tata Mutual Fund - 1800 22 0101
 

Travel
Club Mahindra Holidays - 1800 33 4539
Cox & Kings - 1800 22 1235
God TV Tours - 1800 442 777
Kerala Tourism - 1800 444 747
Kumarakom Lake Resort - 1800 44 5030
Raj Travels & Tours - 1800 22 9900
Sita Tours - 1800 111 911
SOTC Tours - 1800 22 3344 

Healthcare
Best on Health - 1800 11 8899
Dr Batras - 1800 11 6767
GlaxoSmithKline - 1800 22 8797
Johnson & Johnson - 1800 22 8111
Kaya Skin Clinic - 1800 22 5292
LifeCell - 1800 44 5323
Manmar Technologies - 1800 33 4420
Pfizer - 1800 442 442
Roche Accu-Chek - 1800 11 45 46
Rudraksha - 1800 21 4708
Varilux Lenses - 1800 44 8383
VLCC - 1800 33 1262
 

 
Insurance
AMP Sanmar - 1800 44 2200
Aviva - 1800 33 2244
Bajaj Allianz - 1800 22 5858
Chola MS General Insurance - 1800 44 5544
HDFC Standard Life - 1800 227 227
LIC - 1800 33 4433
Max New York Life - 1800 33 5577
Royal Sundaram - 1800 33 8899
SBI Life Insurance - 1800 22 9090

 
Hotel Reservations
GRT Grand - 1800 44 5500
InterContinental Hotels Group - 1800 111 000
Marriott - 1800 22 0044
Sarovar Park Plaza - 1800 111 222
Taj Holidays - 1800 111 825

 
Teleshopping
Asian Sky Shop - 1800 22 1800
Jaipan Teleshoppe - 1800 11 5225
Tele Brands - 1800 11 8000
VMI Teleshopping - 1800 447 777
WWS Teleshopping - 1800 220 777

 
Others
Domino's Pizza - 1800 111 123
 
Cell Phones
BenQ - 1800 22 08 08
Bird CellPhones - 1800 11 7700
Motorola MotoAssist - 1800 11 1211
Nokia - 3030 3838
Sony Ericsson - 3901 1111