Skip to main content

Senior Technical Assistant 'B'/ Technician 'A'


Eligibility : BSc, Diploma
Location : Delhi
Job Category : BSc/BCA/BCM, Defence, Diploma, Govt Sector, Others
Last Date : 27 May 2013
Job Type : Full Time
Hiring Process : Written-test

Job Details

hiring job
Advertisement No.: CEPTAM-06
DRDO-  Centre for Personnel Talent Management (CEPTAM), invites applications for the post of Senior Technical Assistant 'B'/ Technician 'A' www.freshersworld.com
Sl.
No.
Name of the PostQualificationNos. of Post
1Senior Technical Assistant 'B'
B.Sc./ 3 years Diploma in Engineering in specified subjects/disciplines
360
2Technician 'A'10th Class Pass with ITI in specified trades223
3
Assistant (Hindi), Store Assistant 'A', Admin Assistant 'A', Civilian Driver 'A', Security Assistant 'A', Fire Engine Driver, Fireman
Varied ( see details in the advertisement )261


Post CodeDiscipline
Senior Technical Assistant'B' (STA'B')
0101Agricultural Science
0102Automobile Engineering
0103Biotechnology
0104Botany
0105Chemical Engineering
0106Chemistry
0107Civil Engineering
0108Computer Science
0109Electrical & Electronics
0110Electrical
0111Electronics & Communication or Electronics & Telecommunication
0112Electronics & Instrumentation
0113Electronics
0114Geology
0115Instrumentation
0116Library Science
0117Mathematics
0118Mechanical
0119Mechatronics
0120Metallurgy
0121Microbiology
0122Nursing
0123Pharmacy
0124Photography
0125Physics
0126Printing
0127Psychology
0128Radiography
0129Surveyor
0130Textile
0131Tool Die & Moulding
0132Veterinary Science
0133Zoology
Technician'A' (Tech'A')
0201Automobile
0202Book Binder
0203Carpenter
0204COPA
0205Cutting & Tailoring
0206Draughtsman (Mechanical)
0207DTP Operator
0208Electrician
0209Electronics
0210Electroplating
0211Fitter
0212FRP Processor
0213Grinder
0214Instrument Mechanic
0215Machinist
0216Machinist (CNC Operator)
0217Mechanic (Diesel)
0218Medical Lab Technology
0219 Mill Wright Mechanic
0220Motor Vehicle Mechanic
0221Painter
0222Photographer
0223Refrigeration and Air Conditioning
0224Sheet Metal Worker
0225 Turner
0226Welder
Admin & Allied Category
0301Assistant Hindi
0401Personal Assistant
0501Admin Assistant 'A'
0601Store Assistant 'A'
0701Security Assistant 'A'
0801Civilian Driver 'A'
0901Fire Engine Driver 'A'
1001Fireman
Age as on Closing Date must be between : 18 to 28 Years
Scheme of Examination : The written examination will be OMR based and of two hours duration, consisting of 150 objective type multiple choice questions.
Examination Cities With Code Number : Based on the number of candidates, Examination Cities will be chosen from the following list (Numerals printed in the box below are respective city codes): -
01-Agra06- Chandigarh11- Guwahati
16- Kanpur
21- Port Blair
02-Ahmedabad07- Chennai12- Hyderabad17- Kochi22- Pune
03- Bengaluru
08- Dehradun
13- Imphal18- Kolkata23- Raipur
04- Bhopal09- Delhi  NCR14- Jammu19- Nagpur
24- Ranchi
05- Bhubaneswar10- Gorakhpur15- Jodhpur20- Patna
25-Visakhapatnam

How to apply

Interested candidates should apply online. Complete this exercise correctly as you, yourself will be responsible for any wrong particulars which may lead to rejection. All applicants for the post of STA ‘B,’ are required to apply ONLINE only and the printout is to be forwarded to “DRDO Entry Test- 2013, Post Box No.: 8626, Delhi-110 054”. Applicants of other posts may have the option either to apply “ONLINE” or on a prescribed application form given in Section ‘C’ of the advertisement. Change of post code and examination centre shall not be considered in any case. Admit Cards to the candidates who have applied online will NOT be sent by post but shall be made available on our website (www.drdo.gov.in) at least 27th May 2013 before the date of examination. However, Admit Cards for all applicants (online or offline) are available and downloadable from our website. Candidates will be required to download the Admit card and utilize it for appearing in examination. ID proof with Admit Card is mandatory for the candidate to appear in the examination. www.freshersworld.com
Do you have any questions related to jobs - start discussion now, click here to start discussion

Company Profile

DRDO was formed in 1958 from the amalgamation of the then already functioning Technical Development Establishment (TDEs) of the Indian Army and the Directorate of Technical Development & Production (DTDP) with the Defence Science Organisation (DSO). DRDO was then a small organisation with 10 establishments or laboratories. Over the years, it has grown multi-directionally in terms of the variety of subject disciplines, number of laboratories, achievements and stature.

Popular posts from this blog

C++ Program to find the sum, difference, product and quotient of two integers

#include <iostream.h> #include <conio.h> void main() {   clrscr();   int x = 10;   int y = 2;   int sum, difference, product, quotient;   sum = x + y;   difference = x - y;   product = x * y;   quotient = x / y;   cout << "The sum of " << x << " & " << y << " is " << sum << "." << endl;   cout << "The difference of " << x << " & " << "y <<  is " << difference << "." << endl;   cout << "The product of " << x << " & " << y << " is " << product << "." << endl;   cout << "The quotient of " << x << " & " << y << " is " << quotient << "." << endl;   getch(); }

Putimage function in c

putimage function outputs a bit image onto the screen. Declaration:- void putimage(int left, int top, void *ptr, int op); putimage puts the bit image previously saved with getimage back onto the screen, with the upper left corner of the image placed at (left, top). ptr points to the area in memory where the source image is stored. The op argument specifies a operator that controls how the color for each destination pixel on screen is computed, based on pixel already on screen and the corresponding source pixel in memory. c smiling face animation This animation using c draws a smiling face which appears at random position on screen. See output below the code, it will help you in understanding the code easily. C programming code #include<graphics.h> #include<conio.h> #include<stdlib.h>   main() { int gd = DETECT, gm, area, temp1, temp2, left = 25, top = 75; void *p;   initgraph(&gd,&gm,"C:\\TC\\BGI");   setcolor(YELLOW)...

What is Dynamic Memory Allocation in C++ Program

In the computer world, anything that is processed be it an instruction or any data first needs to be loaded and located in internal memory.  In C++ programs also any data that is processed while executing the program is held in the internal memory.  What is Dynamic Memory Allocation? Dynamic Memory allocation means that the memory that will be used during the program is not known beforehand and is allocated dynamically and on the go. It is allocated during the runtime as and when required by the program. In C++ there are two operators used in dynamic memory allocation  1. New  2. Delete New operator in dynamic memory allocation The new operator in C++ is used to create objects of all types. The new operator will allocate memory of the size of the data type specified in the program.  For Example iptr = new int ;  Storing initial values will allocate needed amount of memory from the free store to hold the value of the specified data-type and store the startin...