Showing posts with label home. Show all posts
Showing posts with label home. Show all posts

Sample code to remove special characters from the file name using java

17 December 2017

The scenario is to remove special characters from the file name. By specifying the package name they will find out which is having special characters in the file name. Then they pick it up and rename the file.

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.lang.reflect.Method;
import java.nio.file.Files;
import java.util.Scanner;
import java.util.StringTokenizer;

import org.apache.commons.lang3.StringUtils;

public class RenameFile {
static final String lineSeparator = System.getProperty ( "line.separator" );

    /**
     * List all files from a directory and its subdirectories
     * @param directoryName to be listed
     * @throws IOException
     * @throws ClassNotFoundException
     * @throws IllegalAccessException
     * @throws InstantiationException
     */
    @SuppressWarnings("static-access")
public void listFilesAndFilesSubDirectories(String directoryName) throws IOException, ClassNotFoundException, InstantiationException, IllegalAccessException{
   
   
        File directory = new File(directoryName);
        //get all the files from a directory
        File[] fList = directory.listFiles();
        for (File file : fList){
            if (file.isFile()){               
                if(file.getName().contains("_")){
                changeFileName(file);
                }else{
                changeContent(file);
                }
            } else if (file.isDirectory()){
                listFilesAndFilesSubDirectories(file.getAbsolutePath());
            }
        }
    }
    public void changeContent(File oldFile) throws IOException{
        BufferedReader in = new BufferedReader( new FileReader( oldFile ) );
        String line;
        StringBuilder buf = new StringBuilder();
        while( (line = in.readLine()) != null )
        {
            buf.append( line.replaceAll("_", "").toString() ).append( lineSeparator );
        }
        in.close();
        BufferedWriter out = new BufferedWriter( new FileWriter( oldFile ) );
        out.write( buf.toString() );
        out.close();
              
    }
   
   
    public void changeContent(File newFile, File oldFile) throws IOException{
    FileInputStream instream = null;
    FileOutputStream outstream = null;
   
    instream = new FileInputStream(oldFile);
    outstream = new FileOutputStream(newFile);        
    byte[] buffer = new byte[1024];        
    int length;              
    String str;
    String replacedStr = "";
    BufferedReader in1 = new BufferedReader(new FileReader(oldFile));
    while ((str = in1.readLine()) != null) {                 
    replacedStr += str.replaceAll("_", "").toString() + "\n";                    
    }
    FileWriter fw = new FileWriter(newFile);
    fw.write(replacedStr);
    fw.close();               
    instream.close();
    outstream.close();               
    }
    public void changeFileName(File file) throws IOException{
    System.out.println(file.getAbsolutePath());               
    System.out.println(file.getParent());
        System.out.println(file.getParent() + '\\' + file.getName().replace("_", ""));
        File oldFile = new File(file.getAbsolutePath());
        File newFile = new File(file.getParent() + '\\' + file.getName().replace("_", ""));
        newFile.createNewFile();
        changeContent(newFile, oldFile);
    }
  
    public static void main (String[] args) throws IOException, ClassNotFoundException, InstantiationException, IllegalAccessException{
   
    RenameFile listFilesUtil = new RenameFile();      
        //Windows directory example
        String directoryWindows=StringUtils.EMPTY;
   
        Scanner s=new Scanner(System.in);
       
        System.out.println("Enter Directory Path:");
        directoryWindows=s.nextLine();
       
        listFilesUtil.listFilesAndFilesSubDirectories(directoryWindows);
    }
}



code to delete file which is having special characters in it

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Scanner;
import java.util.StringTokenizer;

public class DeleteFile {

private static  String FILE_PATH = "";

public static void main(String[] args) throws IOException{
DeleteFile listFilesUtil = new DeleteFile();      
        //Windows directory example
        //final String directoryWindows ="C:\\Users\\varaprasad.bantaram\\Downloads\\BMS\\wr-automation-updated\\wr-automation\\src";
    //final String directoryWindows ="C:\\Users\\varaprasad.bantaram\\Desktop\\wr_Automation_BookingFlow_Dec_12\\wr-automation\\src\\com\\wr\\aem\\BookingFlow";
       
String directoryWindows=StringUtils.EMPTY;
   
        Scanner s=new Scanner(System.in);
       
        System.out.println("Enter Directory Path:");
        directoryWindows=s.nextLine();     
        listFilesUtil.listFilesAndFilesSubDirectories(directoryWindows);
   
}

    public void listFilesAndFilesSubDirectories(String directoryName) throws IOException{
   
        File directory = new File(directoryName);
        //get all the files from a directory
        File[] fList = directory.listFiles();
        for (File file : fList){
            if (file.isFile()){               
                if(file.getName().contains("_")){
               
                System.out.println(file.getAbsolutePath());               
                System.out.println(file.getParent());
                    System.out.println(file.getParent() + '\\' + file.getName().replace("_", ""));
                    FILE_PATH = file.getAbsolutePath().toString();
                    if(deleteFile(FILE_PATH) ){
                    System.out.println(file.getName());
            System.out.println("File is deleted!");
            } else {
            System.err.println("Failed to delete file.");
            }
               
                }
            } else if (file.isDirectory()){
                listFilesAndFilesSubDirectories(file.getAbsolutePath());
            }
        }
    }

public static boolean deleteFile(String filePath){

File file = new File(FILE_PATH);

return file.delete();
}

   
}

http://www.riico.co.in/,http://www.riico.co.in/ad-misc.htm, Rajasthan State Industrial Development and Investment Corporation,

26 February 2014

http://www.riico.co.in/,http://www.riico.co.in/ad-misc.htm, Rajasthan State Industrial Development and Investment Corporation,RIICO Recruitment 2014



S.No
Subject

  1.  
Recruitment of various posts in RIICO New
For further details click : http://www.riicorecruitment.org/

  1.  

  1.  

  1.  

  1.  

  1.  

  1.  

  1.  

  1.  

  1.  

  1.  

  1.  

  1.  

  1.  

  1.  

  1.  

  1.  

  1.  
                                                                                                                                                                         

http://results.uni-mysore.ac.in/,Mysore University Results,Mysore University Results 2013,Mysore University BA Results 2013 ,BA Results 2013,Results 2013,Mysore University,http://results.uni-mysore.ac.in/marks/index.php?streamcode=BASS

16 February 2014

Mysore University Results 2013 Nov Dec uni-mysore.ac.in B Tech, BA, BSc, B.Com, MBA, MSc Diploma Sem Result 2013 2014 Check or verify MU University


Nov-Dec 2013 Exam

B.A First Semester, Second Semester, Third Semester, Fourth Semester, Fifth Semester, Final Semester View Details
B.B.M. (2007) First Semester, Second Semester, Third Semester, Fourth Semester, Fifth Semester, Final Semester View Details
B.C.A First Semester, Second Semester, Third Semester, Fourth Semester, Fifth Semester View Details
B.Com. (MODIFIED SEMESTER SCHEME - REVISED SYLLABUS) First Semester View Details
B.Com. (MODIFIED SEMESTER SCHEME) First Semester, Second Semester, Third Semester, Fourth Semester, Fifth Semester, Final Semester View Details
B.Ed. (RIMSE-CBCS SCHEME) First Semester View Details
B.P.A. First Semester, Second Semester, Third Semester, Fourth Semester, Fifth Semester, Final Semester View Details
B.S.W. (REVISED SEMESTER SCHEME) First Semester, Second Semester, Third Semester, Fourth Semester, Fifth Semester View Details
B.Sc First Semester, Second Semester, Third Semester, Fourth Semester, Fifth Semester, Final Semester View Details
B.Sc. (Speech & Hearing) (Int.Sem.Scheme) First Semester, Third Semester, Fifth Semester View Details
B.T.H. (Modified Scheme) First Semester, Second Semester, Third Semester, Fourth Semester, Fifth Semester, Final Semester View Details
BFA in Applied Art First Year View Details
BFA in Graphics First Year, Second Year View Details
BFA in Painting First Year, Second Year View Details
BFA in Photography and Photo Journalism First Year, Second Year View Details
BFA in Sculpture First Year, Second Year View Details

Nov-Dec 2013 Exam

B.Ed (CBCS and CAGP) Final Semester View Details
BACHELOR OF ARCHITECTURE Year-5 Semester-ix View Details

DEC / JAN 2013-14

M.A ANTHROPOLOGY First Semester View Details
M.A. CHRISTIANITY First Semester View Details
M.A. HINDI First Semester View Details
M.A. JAINOLOGY & PRAKRIT First Semester View Details
M.A. LINGUISTICS First Semester View Details
M.A. SANSKRIT First Semester View Details
M.A. PHISOLOPHY First Semester View Details
M.A. SOUTH INDIAN STUDIES First Semester View Details
M.A. URDU First Semester View Details
M.Sc. ANTHROPOLOGY First Semester View Details
M.Sc. CRIMINOLOGY AND FORENSIC SCIENCE First Semester View Details
M.Sc. ELECTRONIC MEDIA First Semester View Details
M.Sc. ENVIRONMENTAL SCIENCE First Semester View Details
M.Sc. GIS First Semester View Details
M.Sc. POLYMER SCIENCE First Semester View Details
MS ANIMATION(MSA) First Semester View Details

CEEP Mock Counselling,Ceep Mock Counselling 2013

23 May 2013

The qualified candidates in Andhra Pradesh Polytechnic Common Entrance Test 2013 and waiting for Mock Counselling with a great feature by which you can estimate in which college you can get admission according to your Rank in AP CEEP 2013.

1,77,678 candidates are qualified with a percentage of 71.94%.


AP CEEP 2013 - Download Rank Card Click Here
AP CEEP 2013 Mock Counselling Click Here
List of Polytechnic Colleges in Andhra Pradesh Click Here
AP CEEP 2013 Web Counselling Click Here

Is It Possible To Have NEET 2012 in The Local Languages ..........?

16 August 2011

AP state government raised objections in right time on issue of language to the Central government holding for admission in to MBBS the new National common entrance test is only in English and Hindi language . But More then 20,000 students sat for Eamcet medical entrance test in Telugu medium every year. NEET in English and Hindi language is big problem to those students, not only to A.P,problem to all student who finish 10+2 in regional languages or in mother tong up to now.
AP officials respond at righttime to made it clear that untill the language issue is resolved not to go ahead with NEET Proporsal the majority of the students in ap and students who are having telugu as their medium will affect severely. Not only Andhra Pradesh, Gujarat and Maharashtra have already raise objections and notified the doubts over the language issue to the Central Government. Candidates are allowed to write UPSC exams also in regional languages, but NEET exam only in English or Hindi as it will affect the 10+2 Telugu medium AP students, more them 60% of then come from Telugu Medium
schools.

Kerala higher secondary result 2011,Kerala higher secondary result,www.hscap.kerala.gov.in,http://www.hscap.kerala.gov.in/CMS/index.php

29 July 2011


HSCAP Higher Secondary Centralized Allotment Process Results 2011 – Kerala HSCAP takes the allotment process for Plus one and Plus two courses. Kerala allotment test for Plus 1 is a single window system taken for participants of the school level.

HAPPY BIRTHDAY TO SUPER STAR RAJNI KANTH....,

12 December 2010

happy birthday to the rajini kanth and may god wishes him to do many pictures to make the fans like me very happy .................

DSC 2008 MERIT LIST, DSC APPOINTMENT ATTESTATION FORM, dsc results, dsc selection list

27 June 2010

To get the DSC 2008 MERIT LIST released by the AP Government on the 13/10/2009 night are listed according to the district wise.In order to get the merit list please goto this links given below to yours corresponding districts. Download "APPOINTMENT ATTESTATION FORM" click here DSC 2008 Recruitment.
Congratulations those who are selected for the DSC 2008 MERIT LIST ....................

*Deo Adilabad,*
*
Deo Anantapur,*
*
Deo Chittoor,*
*
Deo Kadapa,*
*
Deo East Godavari,*
*
Deo Guntur,*
*
Deo Hyderabad,*
*
Deo Karimnagar,*
*
Deo khammam,
*
Deo Krishna,
*
Deo Kurnool,
*
Deo Mahbubnagar,
*
Medak,
*
Deo Nalgonda,
*
Deo Sri Potti Sreeramulu Nellore,
*
Deo Nizamabad,
*
Deo Prakasam,
*
Deo Rangareddy,
*
Deo Srikakulam,
*
Deo Visakhapatnam & deo vizag,
*
Deo Vizianagaram,
*
Deo Warangal and
*
Deo West
Godavari.

Christmas Greetings, Christmas Poems, Christmas Messages,Xmas Greetings, Christmas Wishes, Christmas SMS

18 December 2009

Looking for Christmas Message or merry Christmas messages then your search ends here. You will find all the Christmas Message related messages here. Just read the full collection of Christmas messages, happy Christmas text messages, merry Christmas greetings, Xmas cards texts poetry.

Let the spirit of love
gently fill our hearts and homes.
In this loveliest of seasons
may you find many reasons for happiness.
****************
To a joyful present
and a well remembered past
Best wishes for Happy Holidays
and a magnificent New Year.
****************
May the Christmas season
fill your home with joy
your heart with love
and your life with laughter.
****************
May your Christmas sparkle with moments of love, laughter and goodwill,
And may the year ahead be full of contentment and joy.
Have a Merry Christmas.
****************
It's Baby's first Christmas, what a beautiful sight!
As he gurgles out loud in spontaneous delight.
As he gazes at the Tree, with it's baubles and trim
I know only He can hear the Angels sweet hymns.
****************
GOD never takes a day off to love, 2 care,
to guide and blessed all of you every moment
of your lives n your families.
Happy New year.
*****************
A New year
A New Start
A New Chapter
A New Beginning
Forget the bad
Cherist the GOOD
I sincerely wish u a very blessed new year ahead. happy new year.
*****************
Can I have your picture, so Santa Claus knows exactly what to give me.
Happy Christmas.
*****************
A song was heard at Christmas
To wake the midnight sky
A saviour's birth, and peace on earth
And praise to God on high.
*****************
May ur world be filled with warmth and good chear this Holy season,
and throughout the year.Wish ur christmas be filled with peace and love.
Merry X-mas
*****************
Christmas may be many things
or it may be a few.
4 you, the joy
is each new toy 4 me
it's watching U.
*****************
May the good times and treasures of the present become the golden
memories of tomorrow.Wish u lots of love, joy and happiness.
MARRY CHRISTMAS.
*****************
May the spirit of Christmas bring u peace,
The gladness of Christmas give u hope,
AND
The warmth of Christmas grant u love

Happy Christmas
*****************
Blessed is the season which engages the whole world in a conspiracy of love.
Merry Christmas
*****************
()"""() ,*
( 'o' ) ,***
=(,,)=("')<-*** (""),,,("") "**
Happy Christmas
*****************
Faith makes all thingz possible, Hope makes all thingz work, Love makes all thingz beautiful, May U hav all da three 4 this Christmas. MERRY CHRISTMAS!
*****************
Love and Joy came down on the earth on Christmas day 2 make u happy & cheerful. May Christmas spread cheer in ur life
*****************
From home 2 home and heart 2 heart from 1 place 2 another. The warmth and joy of Christmas, bring us closer 2 each other Happy Christmas
*****************
Christmas iz not a time nor a season,
bt a state of mind.
To cherish peace & goodwill,
2 b plenteous in mercy,
iz 2 have da real spirit of Christmas
*****************
Christmas gifts need 2 come 4rm tha bottom of ur heart
ur heart needs 2 b an ocean filled with lov
like the ocean iz filled with water all year - ur heart needs 2 b filled wth love all year
its Christmas time al year - time 2 make Christmas gifts all year - each day!
*****************
Christmas time iz a time 4 love
Christmas iz a time 2 love da ones u value most
ur one nd only
*****************
If 1 night a big fat man jumps in at ur window, grabs u and puts
u in a sack dont worry I told Santa I want u 4 CHRISTMAS.
HAPPY CHRISTMAS
*****************
May this season bring u success good timez and happiness!
Best wishez 4 MERRY CHRISTMAS
AND
HAPPY NEW YEAR
*****************
I hope u have a wonderful christmas.
Have a great new year!
Hopefully santa ll b extra good 2 u.
Enjoy your holidays
*****************
A Christmas candle iz a lovely thing;
It makes no noise at all,
Bt softly givez itself away;
While quite unselfish,
it grows small.
*****************
Under the tree the gifts enthrall,
But the nicest present of them all
Is filling our thoughts with those who care,
Wanting our Christmas joy to share.

To you, whom we're often thinking of,
We send our holiday joy and love
****************
Evergreen boughs that fill our homes
With fragrant Christmas scents,
Hearts filled with the loving glow
That Christmas represents;
Christmas cookies, turkeys stuffed,
Festive holly berry,
Little faces bright with joy,
Loved ones being merry;
Parties, songs, beribboned gifts,
Silver bells that tinkle,
Christmas trees and ornaments,
Colorful lights that twinkle;
Relatives waiting with open arms
To smile and hug and kiss us;
These are some of the special joys
That come along with Christmas.
*****************
Take a heap of child-like wonder
That opens up our eyes
To the unexpected gifts in life—
Each day a sweet surprise.
*****************
Mix in fond appreciation
For the people whom we know;
Like festive Christmas candles,
Each one has a special glow.
****************
Add some giggles and some laughter,
A dash of Christmas food,
(Amazing how a piece of pie
Improves our attitude!)
********************
Stir it all with human kindness;
Wrap it up in love and peace,
Decorate with optimism, and
Our joy will never cease.
******************
If we use this healthy recipe,
We know we will remember
To be in the Christmas spirit,
Even when it's not December.
***************
Excitement and joy are filling the air;
The lights add special decor.
We're shopping for Christmas gifts everywhere,
But are gifts what Christmas is for?
********************
The wreaths and the trees and the parties
Aren't what we need to convey;
It's the birth of our Savior, Jesus,
The real reason for this holiday.

christmas messages, inspirational messages for christmas, funny sample christmas card messages, christmas greeting messages, christmas messages quotes, christmas text messages, christmas card message, christian christmas messages, christmas inspiring text message and christmas tree message,

Principal Controller of Defence Accounts (CDAO) Account Login at www.cdaopune.org,

26 November 2009



Full Form of CDAO is Controller of Defence Accounts Officers. http://www.cdaopune.org is the official website of Controller of Defence Accounts Officers Pune. Information provided on Principal Controller of Defence Accounts website based on relevant Govt. orders, Army Instructions and Army Orders. Www.cdaopune.org
  • Login - CDAO Accounts Sign in
  • How to Login cdaopune.org Login
Login process to cdaopune.org is usual, just put your user id and password to get access of your Www.cdaopune.org account. Once login into your cdaopune.org account, you can check your bill information in detail. Moreover, you can also find some other information related to your deposit and expenditure. You can also download the paperless receipt in detail.

Visit the Controller of Defence Accounts (Officers) CDAO Pune official website at www.cdaopune.org. There is also the Hindi version of this site. To see the Hindi version go to the right side of the homepage at Cdaopune.org.

Cdaopune.org - cdaopune ltc

Go to this website of Cdaopune.org for information on Rules & Regulations including leaves, advances, retirement/pension, promotions for the Officers of Indian Army, FAQs related to Pay, Permanent Duty, L.T.C, Check list for claims, to download forms and file your grievances online, and latest news & announcements. Find your IRLA and log in with your Username & Password for receipt details, cheques, bankers, salary details. There are two constant headlines at the top and bottom of website for any important message to convey. There are 7 options at the left side of the page. Click on it to find its details. They are as follows:

  1. CDA (O) Handbooks-2009
  2. Economy measures and Rationalization of Expenditure
  3. 6CPC-MOD Approval-60% arrears
  4. NCC offers-6CPC
  5. NPC for Bank
  6. 6CPC
  7. LTC-80

At the bottom of the page get details about Grievances, Feedback and Photo gallery.

Email cdaopune ltc at enquiry@cdapune.org.

Note : Don't Forget to Write the captcha code as given below before hitting Ok button.
If you want to open an account, you’d better pay a visit to it.

ONGC Recruitment 2009,ONGC India,ONGC Careers,ONGC Jobs,ONGC Recruitment 2009,ONGC Jobs 2009,Recruitment Graduate Trainees - 2009,ongcindia,ongc

16 November 2009

ONGC CAREERSONGC Recruitment 2009 for Medical Officer & Dresser / Hospital Worker :

Oil and natural gas Corporation Limited (ONGC) is an Indian public sector petroleum company. It is Asia’s one of the largest and most active companies involved in exploration and production of oil. It is involved in exploring for and exploiting hydrocarbons in 26 sedimentary basins of India.

It is a Fortune Global 500 company ranked 152nd, and contributes 77% of India’s crude oil production and 81% of India’s natural gas production. It is the highest profit making corporation in India.

If you are interested in working in ONGC, please visit career Section of ONGC Website - http://www.ongcindia.com/

ONGC Recruitment - 2009 FOR THE MEDICAL OFFICER:

Based on the result of the written test held on 22.02.2009 for the post of Medical Officer in ONGC, following candidates have been shortlisted for further selection process.
Candidates are to report for the personal interview on the date mentioned against their names at 09:30 am

VENUE : ONGC- Reception - Ground Floor
11 High, Bandra Sion Link Road
MUMBAI-17


Detailed call letter for interview is being sent through post.

To know About the candidates who are shortlisted for the interview goto : SHORTLIST

WALK IN INTERVIEW FOR DRESSER/HOSPITAL WORKER ON CONTRACT BASIS

ONGC, Western Onshore Basin requires Dresser/Hospital Worker on contract basis

Selection Procedure

Candidates possessing the requisite qualification criteria will be required to undergo written test. The written test will be objective in nature and of 30 minutes duration.
Only those who qualify in the written test will appear for the interview.
Written test and interview will be held on the same date., as indicated below:

Written test Dated on : 24.04.2009,
Time: 10.00 AM,
Venue: Regional Office, R&P Section, ONGC, Makarpura Road, Vadodara

For more details click here: DRESSER /HOSPITAL WORKER


Ind vs Sri Lanka 1st Test,India Vs Srilanka 1st Test,Ind Vs Sl,ind vs sri, bureau of meteorology nsw, cu.ac.bd, danik bhaskar, perfect bride 15th nov





India vs Sri Lanka 1st Test
at AHMEDABAD

Indian skipper Mahendra Singh Dhoni won the toss and elected to bat first against Sri Lanka in the first Test here at Sardar Patel Stadium, Motera, Ahmedabad.

All eyes will be on Sachin Tendulkar he is very close to complete 30000 international runs. He is just 49 runs away to reach another milestone.

After winning the toss, Dhoni said that it will be big task for the team to switch over to longer version of game. Dhoni said that team played last Test in April and it is going to be a mental Test for every batsman.

Interestingly, Sri Lankan skipper Kumara Sangakkara today decided to drop mystery bowler Ajantha Mendis for the first Test of three match series.

Team Members :

India:

V Sehwag, G Gambhir, R Dravid, SR Tendulkar,
Yuvraj Singh, VVS Laxman, MS Dhoni, Harbhajan Singh,

Z Khan, I Sharma, A Mishra


Sri Lanka:

TM Dilshan, NT Paranavitana, KC Sangakkara, DPMD Jayawardene,
TT Samaraweera, AD Mathews, HAPW Jayawardene, KTGD Prasad,
HMRKB Herath, M Muralitharan, UWMBCA Welegedara


Sri Lanka in India - Test, T20I and ODI Series, Nov - Dec 2009

India vs Sri Lanka in India
Date Match Venue
November 11-13 Indian Board Preisdent's XI vs Sri Lanka - Warm-up match Mumbai
November 16-20 India vs Sri Lanka - First Test Ahmedabad
November 24-28 India vs Sri Lanka - Second Test Kanpur
December 2-6 India vs Sri Lanka - Third Test Mumbai
December 9 India vs Sri Lanka - 1st Twenty20 international Nagpur
December 12 India vs Sri Lanka - 2nd Twenty20 international Mohali
December 15 India vs Sri Lanka - First ODI Rajkot
December 18 India vs Sri Lanka - Second ODI Visakhapatnam
December 21 India vs Sri Lanka - Third ODI Cuttack
December 24 India vs Sri Lanka - Fourth ODI Kolkata
December 27 India vs Sri Lanka - Fifth ODI Delhi


NIOS RECRUITMENT 2009, Walk in for Sr. Executive Officers at NIOS Nov 09,Sr. Executive Officers,Sr. Executive Officers posts,

15 November 2009

Apply on /before 18.11.09

National Institute of Open Schooling
(An Autonomous Organization under the Deptt. of Edu. MHRD Govt. of India)
A-24/25, Institutional Area, Sector-62, NOIDA, U.P.
Web: http://www.nos.org
Walk in Interview :

NIOS will hold a Walk-in-interview on 18th Nov 09 at 11 A.M to appoint the following:
Sr. Executive Officers: 05 Posts
NOTE : -purely on Contract Basis in the Vocational Education Department initially for a period of ‘six’ months or till the Academic Officer Posts are filled-up, in the following subject areas:

  1. Home Science,
  2. Engineering and Technology ,
  3. Agriculture,
  4. Health and Para medical ,
  5. Business and Commerce
Pay: consolidated salary of Rs. 14,000/- pm.

Note : -The candidate must be post graduate.

Qualification:

  1. At least a Post Graduate Degree in the relevant subject with 55% of marks.
  2. He/She should have good capabilities in organizing education programme with working knowledge in Computer Operation.
Age : Below 37 years
Other terms and conditions :
  1. The contract will be initially for 6 months. The incumbent will have to execute an agreement with NIOS, renewable after every 6 months on the basis of satisfactory performance.
  2. The contract engagement of these positions shall not be part of the regular cadres nor would any special preferential treatment be given to such contractual staff in the matter of recruitment to regular posts.
  3. The contract engagement shall have no vested right prior to and after the completion of the contract period to ask for regularization/absorption in NIOS.
  4. During the contract, if required, the contractual staff will have to proceed to any part of India and will perform such duties as may be assigned to him/her in connection with the work of NIOS.
  5. All desirous candidates may attend Walk-in-Interview along with their complete applications giving details of
i) name,
ii) date of birth (age),
iii) address with contact no.,
iv) qualifications,
v) experience, etc. supported with the original testimonials.

Date of Walk in: 18.11.09

For full details please see the link below: DETAILS

Recruitment of various posts in National Institute of Immunology Nov 09,National Institute of Immunology,National Institute of Immunology posts

national immunologynational immunology text

National Institute of Immunology
(An autonomous research institute)
JNU Complex, Aruna Asaf Ali Marg, New Delhi 110067
Web: www.nii.res.in

Apply on /before 21.12.09

National Institute of Immunology invites applications from eligible candidates for the following posts:

Staff Scientists -III : 1 Post (Reserved for candidate with Locomotor Disability.)

Pay Band: Rs. 15600-39100 + GP Rs. 6600/-

Assistant Engineer (Civil) : 1 Post (Reserved for candidate with Hearing Impairment)

Pay Band: Rs. 9300-34800 + GP Rs. 4600/-

Junior Engineer (Civil): 01 Post (Reserved for candidate with Hearing Impairment)

Pay Band: Rs. 9300-34800 + GP Rs. 4200/-

Last Date: 21.12.09


For full details please visit the link below: http://www.nii.res.in

JEST 2010,Joint Entrance Screening Test – JEST | JEST 2010 | JEST 2010 Exam | | Joint Entrance Screening Test 2010 | jest2010.aries.res.in

14 November 2009

On line form fill up facility will be available from 16th November 2009 ...


Joint Entrance Screening Test (JEST) is conducted for selecting candidates to be interviewed for admission to Ph. D. Programmes in Physics/ Theoretical Computer Science in these institutions in the country.

JEST 2010 Courses Offered

  • Doctor Of Philosophy – Ph.D
  • Physics
  • Computer Science

JEST 2010 Important Dates :

Entrance Exam Date: 21st February 2010
Form Submission Date: 31st December 2009

Eligibility :

The candidates should have completed graduation with at least 60% marks or its equivalent grade point average from any recognized university in the concerned subjects shown hereunder against each university.

How to Apply :

The application form can be obtained by sending a demand draft of the prescribed fee from the Satyendra Nath Bose National Centre for Basic Sciences address.

The application form also can be downloaded from the Satyendra Nath Bose National Centre for Basic Sciences official website.

Admission Process
:

The Selection of the Candidate is based on Personal interview and written admission test. The Selection of the candidate is also based on the rules and regulation of the Satyendra Nath Bose National Centre for Basic Sciences.

For More Details Visit – http://jest2010.aries.res.in/

msbshse,sscresult,ssc,sscresult2009,sscresultdataentryoperator,sscallahabad,sscresultoctober2009,MSBSHSESSCExamResult2009,SSCSept-Octsupplementary2009





HSC results 2009 and SSC results 2009 announced



The Maharashtra State Board of Secondary and Higher Secondary Education (MSBSHSE) has announced the results for the HSC and SSC. The 12th standard and the 10th standard results are available in grade wise, division wise and also gender wise.

THE MAHARASHTRA State Board of Secondary and Higher Secondary Education (MSBSHSE) has announced the results for the HSC and SSC. The Class 12th and 10th results were much awaited by everyone and finally they ahve been decalred.

The HSE October 2009 results are available on the MSBSHSE website.

They can be seen on http://www.msbshse.ac.in/result/

They can also be seen on visiting: http://msbshse.ac.in/

The 12th standard and the 10th standard results are available in grade wise, division wise and also gender wise on the above mentioned website.


The Maharashtra State Board of Secondary and Higher Secondary Education, Pune has declared the SSC (Class 10) and HSC (Class 12) Sept-Oct supplementary results.The Maharashtra State Board of Seconday Education, Pune came into existence on January 1, 1966 as per the Maharashtra Act No. XLI of 1965 to regulate certain matters peraining to secondary education in Maharashtra State. The Act was ammended in 1977 and the nomenclature of the board has been changed to The Maharashtra State Board of Secondary and Higher Secondary Education.



Maharashtra MSBSHSE SSC Exam Result 2009 are available on :

http://mahresult.nic.in/ssc2009/ssc09.htm

Maharashtra MSBSHSE HSC Exam Result 2009 are available on :


http://mahresult.nic.in/hsc2009/hsc09.htm


hsc results 2009 maharashtra, hsc results, hsc results oct 2009, hsc results october 2009, 12th result, MSBSHSE hsc results, MSBSHSE HSC Exam Result





HSC results 2009 and SSC results 2009 announced




The Maharashtra State Board of Secondary and Higher Secondary Education (MSBSHSE) has announced the results for the HSC and SSC. The 12th standard and the 10th standard results are available in grade wise, division wise and also gender wise.

THE MAHARASHTRA State Board of Secondary and Higher Secondary Education (MSBSHSE) has announced the results for the HSC and SSC. The Class 12th and 10th results were much awaited by everyone and finally they ahve been decalred.
The HSE October 2009 results are available on the MSBSHSE website.

They can be seen on http://www.msbshse.ac.in/result/

They can also be seen on visiting: http://msbshse.ac.in/

The 12th standard and the 10th standard results are available in grade wise, division wise and also gender wise on the above mentioned website.

The Maharashtra State Board of Secondary and Higher Secondary Education, Pune has declared the SSC (Class 10) and HSC (Class 12) Sept-Oct supplementary results.The Maharashtra State Board of Seconday Education, Pune came into existence on January 1, 1966 as per the Maharashtra Act No. XLI of 1965 to regulate certain matters peraining to secondary education in Maharashtra State. The Act was ammended in 1977 and the nomenclature of the board has been changed to The Maharashtra State Board of Secondary and Higher Secondary Education.

Maharashtra MSBSHSE SSC Exam Result 2009 are available on :

http://mahresult.nic.in/ssc2009/ssc09.htm

Maharashtra MSBSHSE HSC Exam Result 2009 are available on :


http://mahresult.nic.in/hsc2009/hsc09.htm

Military-Sainik School Entrance Exam,Military-Sainik School Entrance Exam at korukonda,Entrance Exam sainik school,Sainik School physical training,

09 November 2009



Military-Sainik School Entrance Exam Interview CD
The school informally began on Sept. 10th 1961 when Smt Baghiradi Devi, Rani Saheb of Vizianagaram at the instance of her husband, Lt. Col. Maharaj Kumar. Dr. Vijayanand Gajapati Raju (Sir Vizzy) gave the Korukonda Palace to their nephew, the great philanthropist and educationist Shri P.V.G. Raju, Raja Saheb of Vizianagaram who gifted this palace to run a sainik school. The school was formally founded by Cdr. T de Almeida, the first Principal of the school on 18th Jan. 1962.

Campus :
sainikschool
The administrative wing of the school is housed in the Maharaja’s Palace. The school has an auditorium with a capacity of 600, a modern swimming pool, eight spacious dormitories for the cadets, a spacious cadets mess and state-of-the-art computer lab. The school has other amenities like two primary schools, two children’s parks, a Post Office, a Telephone Exchange, a Bank, a homeo clinic, and a twelve bedded hospital a sprawling dairy farm, a 23 acre agricultural farm within the self sufficient campus.

Teaching :teaching

The school also gets the services of coaches of national repute to train the boys in various sports and games. There are also NCC staff (a Havaldar and a Subedar) permanently attached to handle the compulsory NCC training and other adventure activities.

Pupils :

There are students from other states who are the children of defence personnel. 15% of the total seats are reserved for Scheduled Castes, 7.5% for Scheduled Tribes and 25% seats for the children of service personnel including ex-servicemen. Students participate effectively in the management of their houses, mess, games, sports and cultural activities. Boys from senior classes are given school appointments for exercising the organizing abilities and developing qualities of leadership.

Sports :

The school has a modern swimming pool of 25 x 15 m. size with a filtration plant; a Horse Riding club and facility for playing billiards, badminton, lawn and table tennis and a shooting range. The school trains its students to participate in the state and national-level championships. The members of the school shooting club regularly represent the Sainik School Society and the state of Andhra Pradesh in the national shooting championship. The cadets are also imparted training in yoga and martial arts.

Results/Exam :

Sainik School, Korukonda maintains an enviable academic standard amongst the public schools of India. On the basis of the grades obtained by our students in Class X and XII the school is ranked as one of the best in the country. The school has a good track record of at least two boys being awarded NTSE scholarship every year.


Extra Curricular Activities :

NCC training is compulsory for all the students who are admitted to the school. The school imparts training to all three wings of NCC namely Army, Navy and Air Force, In Army wing the school has Senior Division NCC and conduct test for ‘B’ Certificate Examination. In addition, the NCC sponsors a wide range of activities like trekking, mountaineering, cycling, rock climbing, Para sailing, scuba diving and a host of adventure activities. Besides this, cadets are trained to attend all India NCC camps which includes the prestigious Republic Day Camp at Delhi.


Fees :

The lump sum school fees is Rs. 22000/- per annum subject to revision from time to time. Diet Charges : Rs. 6050/- per annum subject to revision from time to tim.

Contact us Photo gallery Interview CD Locating the Schools

 
 
HTML Hit Counter