Monday, November 16

Bharat Sanchar Nigam Limited (BSNL) JAO Recruitment

Recruitment of  1000 Junior Accounts Officers (JAO) 

Bharat Sanchar Nigam Ltd. (BSNL) will recruit about 
1000 Junior Accounts Officers  (JAO)  through an open competitive examination to be held in February/ March 2010 on All India basis.

  • Junior Accounts Officers (JAOs) : 1000 posts (UR-453, SC-195, ST-99, OBC-253) (3% seats for PH), Pay Scale : Rs.16400-40500 (IDA Pattern), Age : 20-30 years. Relaxation as per rules., Qualification : Applicants must possess any one of the following qualifications as on 31.12.2009 - (i)A qualified Chartered Accountant; or (ii) A qualified Company Secretary; or (iii)A qualified Cost & Works Accountant; or (iv) M.Com (Master of Commerce).
Selection Procedure : The mode of selection is through an All India Competitive Examination

Application Fee : Rs.1000/-in the form of DD/ Pay Order drawn in favour of Accounts Officers (Cash), O/o CGM, NTR, New Delhi payable New Delhi. No Fee payable by SC/ ST/ PH candidates.

How to Apply :  The completed application form in prescribed format ) should be sent by Registered post/Speed post or in person so as to reach the DGM (Admn.), O/o CGM (Mtce.), BSNL, Northern Telecom Region, Room No. 257, 2nd Floor, Kidwai Bhawan, Janpath, New Delhi-110001 on or before 15/12/2009.  The envelope containing application form should be marked “Application for the post of for Junior Accounts Officers in BSNL” in bold letters on the top of the envelope.


For more details Visit : http://bsnl.co.in/newsdetailed.php?news_id=492

Wednesday, November 11

BHARAT ELECTRONICS LIMITED WALK-IN-INTERVIEW AT BANGALORE GAPP ENGG

“WALK-IN INTERVIEW” FOR GRADUATE APPRENTICES (ENGG)
On 20th & 21st NOVEMBER 2009, AT CLD/BEL

Bharat Electronics Limited, Bangalore Complex, is conducting “Walk-in-Interview” for GRADUATE APPRENTICES – ENGG (GAPP ENGG.) for the period of 1 year under Apprentice Act.

Engineering Disciplines:  
Electronics Electronics & Commn. Telecommunication. Electronics & Telecomm.
Date of Interview & Time: 20th November 2009 8:30 A.M.

Mechanical Industrial Production. Computer Science Electrical & Electronics Chemical Electrical Civil Environmental Engg.  
Date of Interview & Time: 21st November 2009 8:30 A.M.

Venue:
Centre For Learning & Development, Bharat Electronics Ltd, Jalahalli Post, Bangalore-560 013.

General Conditions / Instructions: -
• Qualifying Marks: For General/OBC Candidates – First Class and Pass Class for SC / ST / PHP.
• Employees Children should compulsorily produce the MEDICAL IDENTITY CARD issued by the company at the time of interview.
• Age limit: 25 years for General and OBC candidates and 30 years for SC/ST/PHP.
• Candidates who have passed their examination on or after 01.01.2007 only will be considered.
• No TA/DA will be paid to the candidates to attend the interview.
• Candidate should produce Original Certificates i.e., Degree Certificates or Provisional Degree certificate, SSLC marks card,.
• SC/ST/PHP certificates (if any) along with Xerox copies for verification.

The final result and induction schedule of the selected candidates will be announced through BEL website (www.bel-india.com) only.

The candidates who fulfill the above conditions only need to appear for the interview.

Indian national only need to appear

Tuesday, November 10

STEEL AUTHORITY OF INDIA LIMITED Recruits Mining Graduates

Walk in Interview for Mining Professionals


SAIL, a Navratna Company and India's largest steel producer with an annual turnover of around Rs. 50,000 crore, is looking for dynamic and result oriented professionals to fill up the following positions:
  • Sr. Manager (Mines): 01 Post
    • Pay: Rs. 18500-4%-23900/- (E-5)
    • Age: 40 years
    • Qualification: BE/B.Tech in Mining Engineering from a recognized institute / University with minimum 12 years of post qualificationexperience in related fields as on 01.10.09.
  • Sr. Manager (Mineral Processing) : 02 Posts
    • Pay: Rs. 18500-4%-23900/- (E-5)
    • Age: 40 years
    • Qualification: BE/B.Tech in Mineral processing from a recognized institute/ University with minimum 12 years of post qualification experience in related field as on 01.10.09
  • Date of Walk In : 20.11.09
For full details please visit the link below:

http://sail.co.in/career.php

Monday, November 9

Main Difference Between BJT and FET

BJT(Bipolar Junction Transistor) FET(Field Effect Transistor)
In BJT Current is carried by both Electrons and Holes In FET Current is carried by only one type of charge particals,either electrons or holes
It is also known as Bipolar device It is also known as Unipolar device
The current flow is controlled by input current The current flow is controlled by an electric field setup in the device by an external applied voltage
BJT is a Current Controlled Device FET is a Voltage Controlled Device
BJT has low input impedance FET has high input impedance

Tuesday, November 3

FTS for Engineers in Indian Air Force Nov09


Indian Air Force will conduct Fast Track Selection (FTS) for Aeronautical Engineer (Electronics), Aeronautical Engineer (Mechanical) and Meteorological Branches at the following branches at the following locations :


Dates :
  • 07/11/2009 at Delhi, Greater Noida, Jaipur, Bhopal, Bhubaneswar, Bangalore
  • 09/11/2009 at Guwahati
  • 11/11/2009 at Aizawl
Qualifications :
  • Education : First class BE/B.Tech. with Minimum 60% aggregate marks. For Met - PG in Science or Geography/MCA with Physics & Mathematics at Graduation level.
  • Age : 20-25 years for Meteorological and 18-28 years for others
Complete advertisement alongwith Application Format is available at http://careerairforce.nic.in/iaf_FTS.htm

Monday, November 2

DRDO 2009 Result Out!

The Results of DRDO Exam held on September 6th 2009 is been announced. You will have to get Application No. or Name that was given while applying.

Please visit http://rac.in/ for more details.

All the best!!

Saturday, October 31

Bubble sort using C programming

#include<stdio.h>
#include<conio.h>

void main()
{
int array[25], num, i, j, temp;
clrscr();
printf ("Please Enter the maximum elements\n");
scanf ("%d",&num);
printf ("Please Enter the elements to be sort:\n");
for (i = 0; i < num; i++)
scanf ("%d", &array[i]);
for (j = 0; j < num - 1; j++){
temp = array[0];
for (i = 1; i < num; i++){
if (array[i] < temp){
array[i - 1] = array[i];
array[i] = temp;
}
else
temp = array[i];
}
}
       printf ("Sorted Elements are:\n");
       for (i = 0; i < num; i++)
printf("%d\n", array[i]);


}