affiliate marketing jobs hi jobs: 2011

Tuesday 28 June 2011

amdocs placement paper



Aptitude Test:

The aptitude test is generally of duration of two hours. The number of questions in the test is 95. There are two sections- General Aptitude Test and Technical Test. Sectional cut-off for both of these sections is 60%. The topics for the general aptitude test are Arithmetic Ability, Verbal Reasoning and Attention to Detail. Questions are from Puzzles, Data Sufficiency, Venn Diagrams, Blood Relations, Profit and Loss, Ratio, Percentage etc.

The topics for the technical test are UNIX, SQL and any programming language from C, C++ and Java. All the three sections are of 15 minutes. The UNIX and SQL sections consist of 15 questions each while the language section has 20 minutes. The language section consists of “find the error type questions”. UNIX section consists of questions based on UNIX commands generally.

Those who clear the written test are called for the interviews.



Read more here: http://entrance-exam.net/amdocs-placement-papers/#ixzz0BHCHT5b7










1.    All fat people are not dancers, food loving people are all fat .Find the contradictory statement?
2.    The day before yesterday was WEDNESDAY then the day after 2morrow is?
3.     A goes to the party if B goes
         B goes to the party if C goes
         C goes to the party if D goes                                                              
         Totally how many will go to the party?
4.   Mary's father's brother is Andrews Andrews daughter's son is Sunil Brothers name is Sam Who is Sam to Sunil?
5.   If A>B,A<C,B>D,B<DFind the Shortest?
6.   There are A,B techers and C,D doctors.Find the possible no of  combinations that should not be repeated more than once?
7. There are 3 males and 2 females,find the possible no of orders that can be made by making the arrangement as in between two males one women is allowed to sit?
8.  Computer checking:eeeDD
     1.eeggg 2.eeeDD3.eerrt,4.DDeee  The write answer is 2)eeeDD
9.  The syntax of command statement in UNIX
10. If the permission for a file is 000,then the file can be accessed  by whom?
11.  Where we can run two same programs on a UNIX console at the same time?
12.  Which is the Shell of UNIX?
13. Wat is the number of the masked code ee@?
14. We are UPDATING a field in SQL and ALTER the row also.After giving  the COMMIT command the system is crashed.Wat will happen to the commands given,whether it will UPDATE and ALTER the table r not?
15.  If we r terminated at the middle of the program execution in UNIX,wat will happen to the program,it will continue running r terminate r the o/p will be send to ur mail?
16. How will add additional conditions in SQL?
17. How will u print TATA alone from TATA POWER using string copy and  concate commands in C?
18.   If switch(n)
      case 1:printf("CASE !");
     case(2):printf("default")                                                                            
     break;
     What will be printed?
19. How will u divide two numbers in a MACRO?

20.  int a,b;
      1.main()
      2.{
     3.scanf("............",&a,&b);
     4.if...........{
     5.printf("Print A");
     6.else
     7.Printf("...........");
    8.endif}
    9..........
   A.Wat will come in the 9 dash?
   B.Wat will happen if we replace Print A as Print X?
   C.Wat will come in the 3 dash?                                                                              
   D.Wat will happen if we interchange 4 and 7?
   E.Wat will come in the 4 dash?











sample:
FGH
``
ABC=> + => => =>BAA
FG
RRQP
Then:
TUV=> => => =>?
VUT
SECTION:2
36qs,20 min
similar type of qs only boxes of different colours are chosen
SECTION:4
60qs
this is the easiest section
MATCHMAKING:
60 question in 7 minutes.
u can attemp all as question is very easy
1:AM%:$69
match with
a: BM%:$69
b: AM%:$69->correct
c: AM%:69
d: AM%:$59
section:6
technical test.
this is very easy test. you will get enough time.
A language made up of c and pascal is given
And 30 qs follow.25 carry marks and 5 are bonus i.e. if two people
get the same marks one getting more bonuses right will be in
a advantageous
position. If u have learned c well don't waste much time reading
the language as it is like c. go back to it when answering qs. Try
to get as many correctly as possible.
30 qs, 90 min
***********
a program is given and u have to find count
ans of first question is 3 and next question ans is 0(believe me).
1:input string 1011011100010
a long program is given and u'll have to find out the a count
answer given here is =3.
2:the string is changed to 10101010101010 and u'll have to
find the count again.
ans-0
3: if not C1 AND NOT C2 AND NOT C3 =?
answer given here is =if not(c1or c2 or c3).
4:given a program on input string what will be printed
answer given here is =GOOD GOLD
5: answer given here is =CANNY
7:similar qs
answer given here is =HELLO
****a program of binary search is given
ans
1-mean=(top+botton)/2
2=mean
3 top=min+1
4-bottom=mean-1
*********
8:A PROGRAM on fibonacci series u'll have to find out the
changes to be made.
** in this quwstion
in a line given
b=c;
a=b;
this is incorrect
it should be
a=b;
b=c;
and
in next question intialise sum=2;
*************
a program to cheque a palindrom(1253521)
it is very easy,
ans-
1 temp=n
2 temp >0
3 mod(temp,10)
4 temp/10
plz verify the ans also
****************
Section :3
This is a tough section and there r some coloured lights
and they r on or off.
It is similar to first and second sections. don't panic u'll get
enough time to grasp these in the example time given.
See u.
note-there is no psychometric test
BEST OF LUCK
SECTION -I : PROGRAMMING SKILLS TEST (30 QUESTIONS)
(25 COMPULSORY + 5 OPTIONAL Q'S)
TIME: 90 MINUTES.
SECTION - II: LETTER REASONING. (36 QUESTIONS)
TIME:30 MINUTES
SECTION -III: DIAGRAMATIC REASONING TEST (36 QUESTIONS)
TIME : 20 MINUTES.
SECTION- IV: FAULT FINDING TEST (36 QUESTIONS)
TIME: 20 MINUTES.
SECTION -V : COMPUTER CHECKING TEST (60 QUESTIONS)
TIME: 7 MINUTES.
SECTION -VI: PSYCHOLOGY TEST (136 QUESTIONS)
TIME : 15 - 20 MINUTES.
1) PROGRAMMING TEST:
program- One to find whether no. is perfect or not.
eg. 28 = 1+2+4+7+14 (sum of factors excluding no.)
ans-
**************
for i=2 to n/2 step 1
if mod(n ,i)=0
then sum=sum+i
endif
endfor
if sum<>n
then return 0(not perfect)
else
return 1(perfect)
*****************
EXAMPLE:
The following program reads 100 integers and displays the
no. of appearances of Even and Odd nos. resp.
MAIN()
INTEGER in,odds=0,evens = 0,i
FOR i = ???????
READ in
IF ????? = 0
evens = evens + 1
else
odds = odds + 1
ENDIF
ENDFOR
PRINT evens,odds
ENDMAIN
A) What does the ??????in line 3 represent?
i) i = 1 TO 100 STEP 1
ii) i = 1 TO 100 STEP 2 Correct ans: (i)
iii) i = 1 TO 100
iv) None of these
B) What does the ????? in line 5 represent?
i) in/2
ii) MOD(in,10)
iii) MOD(in,2) Correct ans ; (iii)
iv) in
THESE ARE THE TYPE OF TEST QUESTIONS YOU WILL ENCOUNTER.
3) DIAGRAMMATIC REASONING :
This section aims at finding the resultant figure
obtained after passing
Through some special symbols (2 in no.)
Process box: When figure is input to this box the
corresponding size.shape
And color attribute changes according to marked X .
Check Box: it compares the input figure with the comparison
Figure .comparison is done of the attribute marked by ?
In the symbol.

amdocs company profile


AMDOCS INTEGRATED CUSTOMER MANAGEMENT deals with CRM software and billing services and products. The clients of the company include international reputed companies such as AT&T and Bell etc. The center of company in Pune is a world class center.


The selection process of the company includes a written test and a personal interview. The personal interview has two rounds- technical and HR interview.

amdocs

amdocs placement paper


for comapny please click here


for paper please click here

Sunday 26 June 2011

hi..........................

inspirational

nucleus paper


PAPER 2
here are 2 sections .APTI and TECH .45 min 75 qs for APTI ,TECH has 5qs out of which Q1 is compulsory.Solve any 3 from remaining 4.Time is 1 hr.Marks 40.
there are 2 sets of apti .mine was APTITUDE TEST.other set is apti1.I guess both sets had same qs.only order of qs was different.

NOTE:ALL QS FROM R.S.AGGARWAL.BE CAREFUL NEGATIVE MARKING.QS AT FIRST AND LAST ARE BIT DIFFICULT.

QS of apti.
1.The least no which when divided.....(R.S.AGG PG.31,Q45).
2.1 Q on the formula hcf*lcm=product of numbers.
3.2 qs.onthe formula (a+b)2,(a-b)2.
4.find the smallest among fractions ....
5.simple interest qs.
6.compound interest qs.
7.Venn diagrams given,find the correct dig for the relation brinjal,cabbage,vegetable.
8.odd man out
a) A b)F c)N d)H
ans(a).(all other alphabets have || lines.).
9.One english qs on fill blank,passage given.It was on Democracy.
10.boats and stream problem.
11.Rahul and Radhika age problem.ans. ithink is 15.check out in r.s.agg.
12.avg of 5 nos is given, avg of four nos is gien .Find fifth no. Ans.50.check out.
13.cost price of 2 television = c.p. of 2 Wash machine.cost of t.v gien .Find cost of 4 wash machine and 3 t.v.
14.LIST PRICE GIVEN ,dis given,find s.p..
15.1/z=1/x+1/y.Find z.
16.one qs. similar to (r.s.agg pg. 55 ex.11 solved).
17.a man buys 2 articles at some amount.on one gives 15% dis.other 15% more than price .what is his profit or loss%.
18.A man can do work at same rate of his 2 sons.1 son take ,other 2days.how many days man take.
19.r.s.agg Average solved prob 11.

Technical -II(cs) .NO -VE MARKING FOR THIS.Q1 COMPULSORY.SOLVE ANY 3 FROM REMAIN.1 HR.
1A).write full form of
DLL ,ODBC, TCP/IP, UDP, OLE AND ONE MORE i DONT REM (6M)
1B)DIFF BET CALL BY REF AND CALL BY VALUE. 
EXPLAIN DYANAMIC MEM ALLOCATION. (4M)

Q2A)PRG. GIVEN ON STRING FIND O/P. (6M)
Q2B)WHAT IS OBJECT FILE. (4M) 
Q3A)PRG. ON DOUBLY LINK LIST.GIVE O/P (6M)
3B)WRITE PRG ON CONCATENATION OF STRINS (4M
Q4A WRITE PRG TO FIND PRIME BETWEEN 1 TO 1000 8M
4B WRITE PRG WHICH CONTAIN 2 INLINE COMMANDS 2M
Q5A WHAT ARE IPCS IN UNIX.GIVE NAME OF 3,EXPLAIN 1.
DIFF BET TCP AND IP
5B.DIFF BET MALLOC(),CALLOC()





PAPER 3

Today on 28th feb,2004, Nuleus Software came in our college,HBTI-Kanpur. Their paper was quite easy consisting of 4 sections each of 15 minutes having 15 questions...
1. Quantitative aptitude
2. Logical reasoning
3. General English
4. Technical aptitude


English Section:
gruesome=? (4 choces were given)
ans:frightful
barbarian=?
ans:uncivilized
serene=?
ans:calm
4 sentences were given,they asked u to choose right senctence.
ans: How's the weather
Mirror on the wall.They asked to replace on word with meaningful option.
ans: mirror at the wall. (Plz check.)
He sometimes works________night.
a)all
b)at
c)all of the above
d)none of above
ans: c(check)
The document______delivered.
ans: has been(plz check)
____ is it from manchaster to london.
ans: How far
I have______my car.
ans: driven
Correct the sentence....They have been doing it since 12 months.
ans: replace 'since' with 'for'
Logical reasoning
if 1234567573 is coded as xxxxxxxxxx and 563423is coded like xxxxxx the 3512 will be coded as? (only format of question, i m mentioning, question is very easy..even a class 3 student will answer)
ans: RATION
Same as previous question with different data.
ans: MEAT
Some analogy questions were given....
dawn:twilight::day:evening/night
Mosquito:maleria::infection:deasease
Writer:book::composer:song
Cloth:scissor::wood:axe
Friend:good::enemy:bad
John and David....Age of both is asked.
ans: the option in which age of John is 40.
Analogy question...
ans: Saturday: Monday (check it)
nalogy question...if 20:21 then what is the appropriate choice
ans:20:21::m:n
Quantitative Aptitude
if a jug evaporates 1/3 rd in first day and 3/4 th of remaining water in the second day.What percentage of water will be
remaining? ans:20%(check it)ans may be 16.6 viz not given
what is the angle between hands of hour and minute in a clock when the time is 8:30? ans:75 degree
In 10 minutes how many degrees hour hand rotates? ans:5 degree
if 17xy+7 =19xy then 14 xy=?
a) 2xy-x
b) 2y
c) x-2y
d) don't remember
ans:8/0.8
1+1/2+1/3+1/4+1/5=? ans:137/60
If ramu is going in East...turns right..then left..then right by 45 degree....Where is is going now?
ans: south-west(This option was actually not given)
A clock clicks at 6 o' 6 times.......
ans: 66
A question on triangle......
ans:AC>AD
A question asked on Escalator.......?
ans: 80
9's complement of 28?
ans: 71
A question i don't remember...
ans: 33%
Technical Aptitude:
What is the common standard naming convention of checkbox
control?
a) CHB
b) CHK
c) CHX
d) CBX
ans: a (may be different..plz check)
We have something like Global functions in JAVA, they are called as .....
a) class
b) package
c) file
d) include
ans: b
Which OS does not supports Networking?
a) Windows 95
b) Linux
c) Windows 3.0
d) Unix
ans: c
Normalization is considered to be complete when it is in
a) Second Form
b) Third Form
c) First Form
d) None
ans: d
C++ is similar to that of C in following ways
a) C++ has classes
b) Supports Inheritance
c) File Handling
d) None
ans: c
Which is not the most important & widely used form of Normalization ?
a) Boyce-Codd Normal Form
b) Second Form
c) Third Form
d) Royce-Codd Normal Form
ans: d
Which of the following keyword is used to exit unconditionally from the batch?
a) go
b) return
c) Begin & End
d) Commit Tran
ans:
Which of the following statement is true
Table in a database can have
a) One Non-Clustered Index and Many Clustered Indexes.
b) One Clustered Index and Many Non-Clustered Indexes.
c) One Index each of Clustered and Non-Clustered Index.
d) None
Check the error in the following statement
Country[7] = 'CANADA'
a) A string terminator is not added to the string, when declared.
b) Country array should be of six
c) Canada should be specified in double quotes.
d) Country array should have the keyword char to ensure array type.
ans: c
Linda wants to obtain the nearest integer of a numeric ex-pression for some calculation purpose. Which mathematical
function will she use:
a) Round
b) ABS
c) About
d) None
ans: a
Pseudocode is a
a) set of Instructions to perform a particular task
b) is a formalized graphic representation of program logic.
c) is a algorithm expressed in a simple language
d) Both A & C
ans: d
A company has closed down its advertisement dept and is now getting all advertisement done by an Ad-Agency. All 20 people working in the dept has quit the job. The dept to which an employee belonged was stored in the "cdept" attribute of "emp" table. Which of the following statement would be used to do the changes in the "emp" table
a) Alter Table
b) Drop Table
c) Delete Table
d) Truncate Table
ans: b(plz check)
Why is a Modulo operator used?
a) It is used to determined the remainder, when an integer is
divided by another.
b) It is used to calculate the percentage
c) It is used to determine the factorial of a number.
d) It is used as a relational operator.
ans: a
if f(n)=n+ f(n-1) and f(0)=1 then f(5)=?
a)14
b)15
c)16
d)none
ans: c
What is the function of assembler?
a) To convert assembly language to machine language.
b) To convert machine language to assembly language.
c) To convert high level language to...
d).....
ans: a

paper 1


PAPER 1

APTITUDE SECTION

Q. 5 men or 8 women do equal amount of work in a day. a job requires 3 men and 5 women to
finish the job in 10 days how many woman are required to finish the job in 14 days.
a) 10
b) 7
c) 6
d) 12
Ans 7

Q. A simple interest amount of rs 5000 for six month is rs 200. what is the anual rate of interest?
a) 10%
b) 6%
c) 8%
d) 9%
Ans 8%

Q. In objective test a correct ans score 4 marks and on a wrong ans 2 marks are ---. a student
score 480 marks from 150 question. how many ans were correct?
a) 120
b) 130
c) 110
d) 150
Ans130.

Q. An artical sold at amount of 50% the net sale price is rs 425 .what is the list price of the artical?
a) 500
b) 488
c) 480
d) 510
Ans 500

TECHNICAL SECTION

Q. You are creating a Index on EMPNO column in the EMPLOYEE table. Which statement will you
use?
a) CREATE INdEX emp_empno_idx ON employee, empno;
b) CREATE INdEX emp_empno_idx FOR employee, empno;
c) CREATE INdEX emp_empno_idx ON employee(empno);
d) CREATE emp_empno_idx INdEX ON employee(empno);
Ans. c

Q. Which program construct must return a value?
a) Package
b) Function
c) Anonymous block
d) Stored Procedure
e) Application Procedure
Ans. b

Q. Which Statement would you use to remove the EMPLOYEE_Id_PK PRIMARY KEY constraint
and all depending constraints fromthe EMPLOYEE table?

a) ALTER TABLE employee dROP PRIMARY KEY CASCAdE;

b) ALTER TABLE employee dELETE PRIMARY KEY CASCAdE;

c) MOdIFY TABLE employee dROP CONSTRAINT employee_id_pk CASCAdE;

d) ALTER TABLE employee dROP PRIMARY KEY employee_id_pk CASCAdE;
e) MOdIFY TABLE employee dELETE PRIMARY KEY employee_id_pk CASCAdE;
Ans. a

Q. Which three commands cause a transaction to end? (Chosse three)
a) ALTER
b) GRANT
c) DELETE
d) INSERT
e) UPdATE
f) ROLLBACK
Ans. a ,b ,f

Q. Under which circumstance should you create an index on a table?
a) The table is small.
b) The table is updated frequently.
c) A columns values are static and contain a narrow range of values
d) Two columns are consistently used in the WHERE clause join condition of SELECT
statements.
Ans.d

Q. What is the common standard naming convention of checkbox control?
a) CHB
b) CHK
c) CHX
d) CBX

Q. Which of the function returns a reference to an object provided by an ActiveX component.
a) createobject
b) getobjectname
c) createobjectx
d) getobject

Q. We have something like Global functions in JAVA, they are called as .....
a) class
b) package
c) file
d) include

Q. Which all OS supports Networking?
a) Windows 95
b) Linux
c) Windows 3.0
d) Unix

Q. Which of the following is not an RdBMS?
a) Ingres
b) Oracle
c) Unify
d) Clipper

Q. Shell function in VB is used for calling
a) Another Function
b) Another Procedure
c) Another Application
d) None

Q. The RdBMS which satisfies the most number of its Principle among the followings
a) MS SqlServer
b) Oracle 7.3
c) Informix
d) Sybase

Q. Normalization is considered to be complete when it is in
a) Second Form
b) Third Form
c) First Form
d) None

Q. Two databases can be connected with
a) Where Clause
b) creating link
c) using dbo.
d) Both B & C

Q. C++ is similar to that of C in following ways
a) C++ has classes
b) Supports Inheritance
c) File Handling
d) None

Q. Which of the following is not system file.
a) .ini
b) .sys
c) .com
d) None

Q. Following command is used to register any dll or ocx in registry of the system
a) regserver32
b) registersvr
c) regsrv32
d) regsvr32

Q. Which keyword is used to unregister any dll or ocx in registry of the system
a) -u
b) -r
c) -d
d) -x

Q. Which is not the most important & widely used form of Normalization ?
a) Boyce-Codd Normal Form
b) Second Form
c) Third Form
d) Royce-Codd Normal Form

Q. How can the word YES be stored in any array.
a)
array[1] = 'Y'
array[2] = 'E'
array[3] = 'S'
array[4] = '\0'
b)
array[0] = "Y"
array[1] = "E"
array[2] = "S"
array[3] = "\0"
c)
array[1] = "Y"
array[2] = "E"
array[3] = "S"

Q. Which of the following keyword is used to exit unconditionally from the batch?

a) go
b) return
c) Begin & End
d) Commit Tran


Q. != is a ---------- operator.

a) relational
b) logical
c) String
d) arithmetic


Q. What was the first name given to Java Programming Language.

a) Oak - Java
b) Small Talk
c) Oak
d) None

Ans.a


Q. The syntax of Java is similar to that of

a) C
b) Small Talk
c) FORTRAN
d) C++


Q. Which of the following statement is true

Table in a database can have
a) One Non-Clustered Index and Many Clustered Indexes.
b) One Clustered Index and Many Non-Clustered Indexes.
c) One Index each of Clustered and Non-Clustered Index.
d) None


Q. Check the error in the following statement

Country[7] = 'CANADA'

a) A string terminator is not added to the string, when declared.
b) Country array should be of six
c) Canada should be specified in double quotes.
d) Country array should have the keyword char to ensure array type.


Q. An application updates table "A",which causes trigger T1 to fire. T1 updates table "B", which in turns fires trigger T2. T2 updates table "A", which causes trigger T1 to fire again. This is an example of

a) Indirect Recursive Trigger
b) direct Recursive Trigger
c) Multiple Trigger
d) Non Recursive Trigger


Q. Linda wants to obtain the nearest integer of a numeric expression for some calculation purpose. Which mathematical function will she use:

a) Round
b) ABS
c) About
d) None


Q. Alphanumeric constants are

a) used for arithmetic calculations
b) Used with double quotas
c) Of integer type or float type
d) Not used for arithmetic calculations


Q. Pseudocode is a

a) set of Instructions to perform a particular task
b) is a formalized graphic representation of program logic.
c) is a algorithm expressed in a simple language
d) Both A & C


Q. A company has closed down its advertisement dept and is now getting all advertisement done by an Ad-Agency. All 20 people working in the dept has quit the job. The dept to which an employee belonged was stored in the "cdept" attribute of "emp" table. Which of the following statement would be used to do the changes in the "emp" table

a) Alter Table
b) Drop Table
c) Delete Table
d) Truncate Table


Q. John wants to retrieve all records from students table who live in any city beginning with WAS . Which of the following statement is to be executed by him

a) Select * from students where city = 'WAS'
b) Select * from students where city = 'WAS%'
c) Select * from students where city in 'WAS'
d) Select * from students where city like 'WAS%'


Q. Why is a Modulo operator used?

a) It is used to determined the remainder, when an integer is divided by another.
b) It is used to calculate the percentage
c) It is used to determine the factorial of a number.
d) It is used as a relational operator.


Q. Consider the following program:

character cName[5] = 'great'
Numeric nNum1,nNum2 =0

For (nNum1 = 0;nNum1=>5;nNum1++)
{
if(cName[nNum1] == 'a'| cName[nNum1] != 'e'| cName[nNum1] == 'i'| cName[nNum1] != 'o'| cName[nNum1] == 'u'|)
{
nNum2 ++
}
}
display nNum2

What does nNum2 display.

a) 2
b) 1
c) 5
d) 3

nuclues company profile

profile




NUCSOFT was incorporated in 1994 with an objective of providing focused end-to-end IT solution to the ‘Banking, Financial Services and Insurance’ industry segment (BFSI). Over the years NUCSOFT has developed in-depth understanding of the workflow and operations that take place across this segment. This unique understanding empowersa NUCSOFT to work with a much closer understanding with its clients, building integrally inter-dependent relationships that enable their clients to focus on, and enhance their core competencies. NUCSOFT in its current state has more than 1,500 man-years of experience, employs 250+ IT professionals and has expanded its operation to UK & USA.




nucleus paper

nucleus paper
to see company profile click here
to see paper1 click here
to see paper2 click here

sorry

sorry page is not yet created.

sbi clerk cutt off

by watching this you can estimate your result.
they have given marks individually as well overall cutt off
click on it ,it get large






sbi clerk result

sbi clerk result out



after very long time finally sbi clerk result out

RECRUITMENT OF CLERICAL STAFF IN ASSOCIATE BANKS OF STATE BANK OF INDIA
(ADVT NO. CRPD/ABCL/2010-11/04)
WRITTEN EXAM RESULT AND INTERVIEW SCHEDULE
to watch out result 

please share your experience and also comment

uco bank result

finally uco bank result out.
UCO BANK
RECRUITMENT OF CLERKS - WRITTEN EXAMINATION HELD ON 14.11.2010 / 23.01.2011
STATE-WISE SELECT LIST.

to view result click here

please share your experience and comment.

Wednesday 22 June 2011

po jobs in icici banks

ICICI Bank, the country`s largest private bank as part of their PO programme, selects candidates & trains them before posting them in branches.The announcement for ICICI Bank PO Recruitment – November 2011 batch has been released for which the application process is currently open.
Dates: Online registration closes on – June 27, 2011
Aptitude Test – July 2011
GD/ Interview – August 2011

What is ICICI Bank PO Recruitment Programme?  ICICI Bank has been regularly conducting Probationary Officers recruitment for the past few years.This process involves shortlisted candidates getting enrolled for MBA degree (from Manipal university).On completion of training, they will be appointed as Assistant managers with salary of more than 4 lacs/yr.

Eligibility conditions to apply for ICICI bank PO recruitment 2011,
* Should have completed degree (any discipline) with 55% aggregate
* Those upto 25 yrs of age, as on Nov 1, 2011


Selection: Aptitude Test, Group discussion & Interview would be held for selected candidates & for details/doubts about eligibility or selection .



Registrations for ICICI Bank PO programme are accepted online & candidates have to submit their application through their website here – online application, sample questions & complete details about the recruitment posted.
 


to apply click here

    po jobs in icici banks

    po jobs in icici bank 
    for detail click here.

    Friday 17 June 2011

    clerk paper

    Bank clerk paper
    here are some paper of SBI clerk paper to download it click at


    model test paper 1
    model test paper 2

    Thursday 16 June 2011

    sbi associate job for po


    Written Examination : 07.08.2011 (Sunday)
    Payment Of Fees : From 02.06.2011 to 23.06.2011
    Online Registration Will Start From 04.06.2011
    Last Date For Receipt Of On-Line Applications : 25.06.2011
    There will be one common written test for all 6 Associate Banks. Candidatesshould indicate 3 Banks in order of preferences in the on-line application.Preferences given once cannot be changed
    1. Eligibility Criteria: (as on 01/06/2011)

    (A) Essential Academic Qualifications:
    Graduation in any discipline from a recognized College / University
    (B) Age Limit: As on 01.06.2011
    Not below 21 years and not above 30 years as on 01.06.2011 i.e. candidates must have been born not earlier than 02.06.1981 and not later than 01.06.1990 (both days inclusive)
    Relaxation in the Upper Age Limit to Reserved category candidates
    Upper age is relaxable by
    (1) 3 years in the case of OBC candidates.
    (2) 5 years in the case of: i) SC/ST candidates.
    ii) Ex-servicemen (including Emergency Commissioned Officers/Short Service Commissioned Officers) who have rendered at least five years continuous Military Service and have been released on completion of assignment (including those whose assignment is due to be completed within one year)
    Otherwise than by way of dismissal or discharge on account of misconduct or inefficiency or /on account of physical disability or have been released on account of physical disability attributable to Military Service or on invalidment
    iii) Candidates who had ordinarily been domiciled in Kashmir Division of the State of Jammu and Kashmir between 1st January, 1980 and 31st December, 1989. (3) 10 years for VH/OH (Gen); 13 years for VH/OH (OBC) and 15 years for VH/OH (SC/ST) candidates.

    Note: Cumulative age relaxation will not be available either under the above items or in combination with any other items.

    (2) Notes for Orthopaedically Handicapped (OH)/Visually Handicapped (VH) candidates:
    OH/VH Candidates who suffer from not less than 40% of relevant disability should posses disability certificate issued by Medical Board duly constituted by Central or State Government.
    Issued on or before last date of online submission of application:
    a) Only those OH candidates who have loco motor disability or cerebral palsy with locomotors impairment of minimum of 40% and only those who fall in the following categories are eligible to apply:
    BL - Both legs affected but not arms
    OA - One arm affected (R or L) - (a) Impaired reach; (b) weakness of grip; (c) ataxia
    OL - One leg affected (R or L)
    MW - Muscular weakness and limited physical endurance
    b) Only those visually handicapped persons who suffer from any one of the following
    Conditions are eligible to apply.
    i) Total absence of sight.
    ii) Visual acuity not exceeding 6/60 or 20/200 (Snellen) in the better eye with correcting lenses.
    iii) Limitation of the field of vision subtending an angle of 20 degrees or worse.
    c) Candidates having low vision as defined in Chapter I, Para 2 (u) of The persons with disabilities (Equal opportunities, protections of rights and full participation) Act 1995.
    d) At the time of written examination, only blind/low vision candidates and those candidates whose writing speed is affected by cerebral palsy can use own scribe/ writer at his/her own cost. In all such cases where a scribe/writer is used, the following rules will apply:
    i) The candidate will have to arrange his/her own scribe/writer at his/her cost.
    ii) Scribe/writer must be essentially one grade lower in educational qualification than the minimum eligibility educational qualifications of the candidate (i.e. graduation in this recruitment). Thus the qualification of scribe/ writer should not be more than XII standard pass.
    iii) Both the candidate as well as the scribe/writer will have to give a suitable undertaking, confirming that the scribe/writer fulfils all the stipulated eligibility criteria for a scribe / writer as mentioned above. Further, in case it later transpires that he/she did not fulfill any of the laid-down eligibility criteria or suppressed material facts, the candidature of the applicant will stand cancelled, irrespective of the result of the written test.

    iv) Only those candidates who use a scribe/writer shall be eligible for extra time of 20 minutes and/or part there of for every hour of the examination provided that the candidate uses scribe writer for both the objective & descriptive test






    SELECTION PROCEDURE:

    Phase-I - Written Examination : Time 3 Hrs. (Combined Objective & Descriptive
    Type Tests)
    The duration of objective type test will be 2 hours and will consist of :
    i) Test of English Language (Grammer, Vocabulary, Comprehension etc.)
    ii) Test of General Awareness, Marketing & Computers
    iii) Test of Data Analysis & Interpretation
    iv) Test of Reasoning (High Level)

    The duration of descriptive type test will be 1 hour and the test will be "Test of English Language (Comprehension, short precis, letter writing & essay)" Descriptive test paper of only those candidates will be evaluated who are adequately high in percentile ranking in each of all the four objective tests and have scored overall aggregate 40% in case of General category and 35% in case SC/ST/OBC/PWD category. The qualifying marks for descriptive test will also be 40% for General category and 35% for SC/ST/OBC/PWD. The merit list of written examination will be based on the aggregate of the marks obtained by the candidates in objective and descriptive tests.

    Phase-II : Group Discussion & Interview :
    The aggregate marks of objective test and descriptive test will be arranged in descending order and the candidates who have qualified in written examination will be called for group discussion and interview depending upon the vacancies in each category subject to maximum of three times the number of vacancies. The marks of group discussion and interview will be put together and the candidates who secure 40% marks (35% in case of SC/ST/OBC/PWD) in group discussion and interview will be considered for final selection. The selection will be made from the top merit ranked candidates in each
    category. The candidate will have to pass both in Phase I & II.

    5. Date of Written Examination: 07/08/2011 (Sunday)
    Emoluments:

    Pay: Selected candidates will be on probation for a period of two years. They will draw a starting basic pay of Rs. 10000/- in the scale of Rs. 10000-470/6-12820-500/ 3-14320-560/7-18240 applicable to Junior Management Grade Scale I. They will also be eligible for D.A., H.R.A. & C.C.A. as per rules in force from time to time. At present, initial monthly emoluments of Probationary Officers, including D.A., H.R.A. and C.C.A., are approximately Rs. 17,600/- at Metropolitan centre’s.

    8. Application Fee and Postage: (Non Refundable) can be deposited from 02.06.2011 to 23.06.2011

    Sr. No. Category Total

    1. SC / ST / PWD Rs. 50/- (Postal Charges only)
    2. All others Rs. 500/- (App. fees plus postage charges)
    9. Associate Banks may arrange pre-examination training at centre’s as below for SC/ST/ religious Minority Community candidates in consonance with the guidelines issued by Government of India.
    Candidates belonging to the above categories who desire to avail themselves of such training at their own cost may indicate to that effect against the relevant column while applying on line.

    Sr. Name of the Bank Name of Centres where Pre-examination

    No. training will be held

    1. State Bank of Bikaner & Jaipur Jaipur, Bikaner & Udaipur
    2. State Bank of Hyderabad Hyderabad
    3. State Bank of Indore Indore
    4. State Bank of Mysore Bangalore & Mysore
    5. State Bank of Patiala Patiala
    6. State Bank of Travancore Thiruvananthapuram & Ernakulum

    How to apply:
    i) Candidates are required to download from Bank’s website www.sbi.co.in / www.statebankofindia.com / www.timesjobs.com the Cash Voucher (fee payment voucher) for payment of the application fee. The cash voucher is in duplicate.
    ii) Candidates are required to go to any Branch of State Bank of India and pay the amount of prescribed fees (fee details see Para 8) and postage and get the receipt.
    iii) Application fees to be paid between 02-06-2011 to 23-06-2011.
    iv) Obtain the duplicate copy of the cash voucher duly receipted by the branch and ensure that this cash receipt contains i) Journal number (7-10 digits) ii) Branch Name
    iii) Branch code No.
    iv) Date of deposit
    v) Amount this fee receipt needs to be produced at the time of written examination
    Before applying online candidates are required to have a scanned (digital) image of his/her photograph and signature as per the specifications given below.
    Candidates are required to upload a scanned copy of his/her photograph along with a scanned copy of signature in the online application.
    (Guidelines for scanning and uploading photograph and signature are detailed below)
    Guidelines for filling application are as under:
    i) Candidates should first scan their photograph and signature, ensuring that both the photograph and signature are within the required specifications. If the size of the file is more than the specified limit then adjust the settings of the scanner.
    ii) Candidates to visit Bank’s website and open the appropriate Online Application Format.
    iii) Candidates should have valid email ID. This will help him/her in getting call letter/ interview advices etc. by e-mail.
    iv) Fill the application carefully. Fill in the fee payment details at the appropriate places.
    v) After filling the application form candidates are required to submit the application online.
    vi) Once submitted a registration number and password will be generated by the system. Please note the registration number and password for future use.
    vii) Candidates to take a printout of the system generated application form immediately.
    viii) The printout of the application form must not be sent to the Bank
    ix) The original fee receipt will have to be submitted along with the call letter at the time of written test.
    x) Candidates who fail to produce the original cash receipt at the time of written test will not be allowed to appear for the written test. 
    Last date for registration of on-line applications: application must be registered on or before the 25.06.2011.

    walkin in msit



    Nucleus Software Hiring CS/IT Engineering Graduates-2011 in Delhi

    Job Location:Noida
    No. of Job opening:50
    Salary Range:Rupees 3,00,000 - 3,50,000
    Functional Area:IT
    Industry Type:IT-Software/ Software Services
    Keywords:Software Engineer Trainee

    Job Description

    • Entry-level development, engineering and/or advanced technical knowledge and skill at the Degree level within specified area of professional specialty, under supervision of more senior team member as appropriate to the day-to-day operating objectives of the IBU/Function.

    • Undertake and/or participate in development, engineering or advanced technical design projects and programs designed to develop professional skills and expertise that will support the units design and engineering and/or advanced technical needs.

    Desired Candidate Profile

    Profile Description: Eligibility

    • B.E./ B.Tech (CS/IT), MSc (CS/IT), MCA, M.Tech (CS/IT)

    Venue :
    • 2011 passout ONLY

    • At least 70% through out

    • Excellent communication and technical skills

    • Should be a pass out from the list of institutes specified below

    27th June 2011 @ MSIT, IP University, New Delhi
    UG Qualifications:
    • BE / B.Tech (Computer Science, Information Technology)
    Minimum Marks: 70%
    Graduation after: 2011.
    Backlogs: None
    PG Qualifications:
    • M.E. / M.Tech (Computer Engineering, Information Technology)
    • M.Sc (Comp Sc, IT)
    • MCA (Computer)
    Minimum Marks: 70%
    Post Graduation after: 2011.
    Backlogs: None
    *Note: Candidate should have either UG or PG qualifications



    Min. Class XII Marks: 70%

    Min. Class X Marks: 70%

    Application preferred from Institutes

    Motilal Nehru National Institute Technology, Allahabad
    Govind Ballabh Pant Engineerin College, Garhwal
    Harcourt Butler Technology Institute, Kanpur
    Institute of Integral Technology, Lucknow
    Ambedkar Institute of Technology, New Delhi
    University School of Studies, New Delhi
    Maharaja Agrasen Institute of Technology, New Delhi
    Guru Premsukh Memorial College of Engineering, New Delhi
    Northern India Engineering College, New Delhi
    Maharaja Surajmal Insititute of Pharmacy & Technology, New Delhi
    Guru Teg Bahadur Institute of Technology, New Delhi
    Bharati Vidyapeeths College of Engineering, New Delhi
    Lal Bahadur Shastri Institute of Management, New Delhi
    Birla Institute of Technology and Science, Pilani
    Birla Institute of Technology, Ranchi
    Banasthali University, Jaipur
    Jaypee Institute of Information Technology, Noida

    Company Profile

    Nucleus Software is a globally respected, multi-faceted, multi-client, products, solutions and IT services provider with singular focus on the banking and financial services. Nucleus laid its foundation for growth on the footholds of Quality Services, Reliable Solutions, Long-term partnerships and Price Value structure for our clients across the globe.

    Global Reach :
    Nucleus has five wholly owned subsidiaries in Singapore, US, Japan, Australia & Hong Kong and branch offices in London.The development centers are in Delhi, Noida, Chennai and Singapore. Based globally, Nucleus has staff strength of 2000+ professionals and over 5000 man-years of experience in developing application software.

    Quality:
    Nucleus is a CMM level 5 company with a commitment to deliver value for money to its customers. This certification has enabled Nucleus to achieve a new height of performance by delivering consistent and high quality products and services enabling Customer Delight.

    For more details pls refer to www.nucleussoftware.com

    Contact Details

    Company Name:
    Nucleus Software Exports Limited
    Executive Name:
    HR Manager
    check whether is it connected to facebook

    hello

    Wednesday 15 June 2011

    INTELLI GROUP

    "INTELLI GROUP"
     Recruits FRESHERS : 
    Associate System Engineer


    Company      Intelligroup Asia Private Limited
    Website        www.intelligroup.com

    Eligibility      Any Graduate / PG

    Experience   0-3 Years

    Location       Hyderabad

    Intelligroup
    Associate System Engineer
    Desired Profile :
    Required Skills:
    Excellent Communication skills.
    Should have experience in troubleshooting Desktops, 
    laptops, VPN etc.
    Contact Details :
    Name: HR
    Intelligroup Asia Private Limited
    Email : career@intelligroup.com