Showing posts with label HCL. Show all posts
Showing posts with label HCL. Show all posts
Monday, March 4, 2013
3
Monday, March 4, 2013
Ravva Vamsi
Company Name: HCL Technologies Limited
Website: www.hcl.in
Qualification: M.Com / B.Com / BBA / BBM /MBA
Experience: 0 - 2 Years
Year of Pass: 2010 / 2011/ 2012 pass outs
Location: Coimbatore
Job Role: Analyst
Job Description:
HCL Walk-in For Freshers On 9th March 2013 - 2010 / 2011/ 2012 Pass outs
Greetings from State Street - HCL Services Ltd, Coimbatore
We are pleased to inform you with regard to openings for Position of Analyst
Desired Profile:
- M.Com / B.Com / BBA / BBM /MBA Finance- 2010 / 2011/ 2012 pass outs.
- No standing arrears. http://www.allindiajobs.in
- Excellent communication skill.
- Willingness to work in night shifts
- Immediate joiners are preferred.
Walk-in Details:
Interview Date: 09th March 2013 Saturday
Time: 10 am to 3 pm
Walk in Venue:
Sri SakthiKailash College of Arts& Science for Women,
Ammapet, Salem
Tamil Nadu
Contact Person: Nandakumar - HR
HCL Walk-in Drive For Freshers On 9th March 2013 - 2010-2012 Pass outs
Company Name: HCL Technologies Limited
Website: www.hcl.in
Qualification: M.Com / B.Com / BBA / BBM /MBA
Experience: 0 - 2 Years
Year of Pass: 2010 / 2011/ 2012 pass outs
Location: Coimbatore
Job Role: Analyst
Job Description:
HCL Walk-in For Freshers On 9th March 2013 - 2010 / 2011/ 2012 Pass outs
Greetings from State Street - HCL Services Ltd, Coimbatore
We are pleased to inform you with regard to openings for Position of Analyst
Desired Profile:
- M.Com / B.Com / BBA / BBM /MBA Finance- 2010 / 2011/ 2012 pass outs.
- No standing arrears. http://www.allindiajobs.in
- Excellent communication skill.
- Willingness to work in night shifts
- Immediate joiners are preferred.
Walk-in Details:
Interview Date: 09th March 2013 Saturday
Time: 10 am to 3 pm
Walk in Venue:
Sri SakthiKailash College of Arts& Science for Women,
Ammapet, Salem
Tamil Nadu
Contact Person: Nandakumar - HR
Posted in 2012 freshers jobs, 2013 freshers jobs, Analyst, Any Graduate, B.COM, Finance, Freshers jobs, HCL, HCL Jobs, jobs, jobs in Coimbotre, M.Com, MBA, Walk-Ins
Friday, May 18, 2012
0
Friday, May 18, 2012
Krishna Mohan Roy
HCL Comnet Placement Paper-2 2012
Welcome to HCL Comnet Placement Paper 2012. Here you will find HCL Comnet Placement Paper Pattern and Download questions of HCL Comnet Placement Paper February 2012 with Answers & Solutions. Company :- HCL. Category :- Placement Papers. Location :- Gurgaon - Delhi / NCR HCL Comnet Placement Paper February 2012:- 1. There were 36 chairs. how many ways can they be placed such that all rows have equal no. of chairs and atleast three chairs are there in each row and there are atleast three rows. Ans:- 5 ways. 2. There are 27 balls, of which 1 is heavier. given a balance how many times you need to weigh to find out the odd ball. Ans:- 3 Weighs. 3. Product of three consecutive nos. 210. What is the sum of two least numbers Ans:-11. 4. Whether all recusive pgm can be writtten iteratively? Ans:- yes 5. What is the type of the variable b in the following declaration? #define FLOATPTR float* FLOATPTR a,b; a) float b) float pointer c) int d) int pointer 6. In the following code; #include<stdio.h> main() { FILE *fp; fp= fopen("trial","r"); } fp points to: a) The first character in the file. b) A structure which contains a "char" pointer which points to the first character in the file. c) The name of the file. d) None of the above. 7. Perimeter of the back wheel = 9 feet, front wheel = 7 feet on a certain distance, the front wheel gets 10 revolutions more than the back wheel .What is the distance? Ans : 315 feet. 8. In the following code, is p2 an integer or an integer pointer? typedef int* ptr ptr p1,p2; Ans. Integer pointer 9. Point out the error in the following program main() { const int x; x=128; printf("%d",x); } Ans. x should have been initialized where it is declared. 10. What would be the output of the following program? main() { int y=128; const int x=y; printf("%d",x); } a) 128 b) Garbage value c) Error d) 0 |
1
Krishna Mohan Roy
HCL Comnet Placement Paper-1 2012
Welcome to HCL Comnet Placement Paper 2012. Here you will find HCL Comnet Placement Paper Pattern and Download questions of HCL Comnet Placement Paper January 2012 with Answers & Solutions. Company :- HCL. Category :- Placement Papers. Location :- Gurgaon - Delhi / NCR HCL Comnet Placement Paper January 2012:- 1. We should not read after a write to a file without an intervening call to fflush(), fseek() or rewind() < TRUE/FALSE> Ans. True 2. 1/3 of girls , 1/2 of boys go to canteen .What factor and total number of classmates go to canteen. Ans: Cannot be determined. 3. The price of a product is reduced by 30% . By what percentage should it be increased to make it 100% Ans: 42.857% 4. A worker is paid Rs.20/- for a full days work. He works 1,1/3,2/3,1/8.3/4 days in a week. What is the total amount paid for that worker ? Ans : 57.50 5. Each side of a rectangle is increased by 100% .By what percentage does the area increase? Ans : 300% 6.main( ) { int x = 5; printf(“%d %d”, x++, ++x); return 0; } a) Error b) 6, 6 c) 5, 7 d) 7, 6 7. main( ) { int z = 4; printf( “%d”, printf(“ %d %d “, z, z)); } a) 4 4 3 b) 4 4 5 c) 4 4 4 d) Error 8. int i = 0; main( ) { printf(“i = %d”, i); i++; val( ); printf(“After i=%d”, i); val( ); } val( ) { i =100; printf(“val’s i=%d\n”, i); i++; } a) i =0 b) i=0 c) Error d) None of the above 9. main( ) { int a[ ] = { 10, 20, 30, 40, 50}; int j; for (j = 0; j < 5; j++) { printf(“ \n %d”, * a); a ++; } } a) 0..5 b) 0..4 c) Error d) None of the above 10. main( ) { int a[5] = {2, 4, 6, 8, 10); int i, b =5; for(i=0; i<5; i++) { f(a[i], &b); printf(“\n %d %d”, a[i], b); } } f(int x, int *y) { x = *(y) +=2; } a) 2 7 b) 4 9 c) 7 2 d) Error |
Subscribe to:
Posts (Atom)