Sunday, January 29, 2017

रेलवे टिकट को कैसे cancel करें | How to Cancel a Train Ticket Partially


हेलो दोस्तों, क्या कभी आपके साथ ऐसा हुआ है कि आपने train  की टिकट बुक करवा ली है और वो टिकट कन्फर्म भी है लेकिन कुछ समय बाद किसी वजह से आपका प्लान cancel हो जाता है और आप अब  वो यात्रा नहीं कर सकते है। ऐसे समय पर आपके पास २ ही विकल्प होते है की या तो आपने  उस टिकट के लिए जो खर्चा किया है वो भूल जाईये और वो रूपये बर्बाद हो जाएंगे। दूसरा विकप्ल ये है की आप वो टिकट irctc की साइट पर जाकर  cancel कर सकते हैं।

इसमें भी मान लीजिये आपने टिकट में ३ लोगो का टिकट करवाया था और तीनो का ही प्लान cancel हो जाता है तो आप पूरी टिकट ही cancel करना चाहेंगे मगर यदि आप तीनो में से किसी १  का प्लान cancel हो जाता है तब आप तो यही चाहोगे कि केवल १ ही टिकट cancel हो जाए, नहीं तो आपको पूरी टिकट cancel  करवा कर फिर से २ लोगो की टिकट बुक करवानी पड़ेगी। इसके अलावा हो सकता है कि अब आपको कन्फर्म टिकट मिले भी नहीं।

ऐसे में आप बिलकुल नहीं चाहेंगे कि आप पहले से मिली हुई कन्फर्म २ सीट्स भी गवा बैठे। तो यह पर irctc हमें ये सुविधा देता है कि हम कुछ टिकट कैंसिल कर ले और कुछ टिकट वैसे ही रहे जैसे की कैंसिल से पहले थी।

तो मै आज आपको यही बताने जा रहा हू कि train की टिकट में से कुछ tickets को कैसे कैंसिल कर  सकते हैं। 

मैंने यह पर पहले से ही ३ सीट्स बुक की हुयी है और उसमे से मै यहाँ एक सीट cancel करके बताऊंगा । उसके बाद लगभग 1 -2 सप्ताह में आपका रिफंड अमाउंट आपके बैंक अकाउंट में आ जाएगा ।

Step 1 :  सबसे पहले तो आपको आई. आर. सी. टी. सी. (irctc) कि वेबसाइट पर जाना है। उसमे आपको अपना username और password से लॉगिन करना है। irctc की साइट के लिए  नीचे मैंने लिंक दिया हुआ है।

https://www.irctc.co.in/eticketing/loginHome.jsf 


Step 2: लॉगिन करने के बाद आपको कुछ दिखाए हुए image  की तरह दिखेगा। उसके बाद आपको ऊपर बाईं तरफ My-Transaction बटन पर क्लिक करना है, जैसा कि नीचे चित्र में दिखाया है :-



Step 3: यहाँ पर अब आपको Booked Ticket History पर क्लिक करना है।



Step 4 : अब आपको वह टिकट सलेक्ट करनी है जो कि आप कैंसिल करना चाहते हैं।




Step 5: सलेक्ट करने के बाद आपको कुछ ऐसा दिखेगा :-



Step 6: अब आपको Cancel Ticket पर क्लिक करना है।




Step  7: अब एक नई पॉप-अप (pop -up) विंडो खुलेगी, उसमें आपको वह सीट सलेक्ट करनी है जो आप कैंसिल करना चाहते हैं। वह सीट सलेक्ट करने के बाद Cancel Ticket बटन पर क्लिक करना है।









Step 8: उसके बाद एक कन्फर्मेशन (confirmation ) विंडो खुलेगी, उसमे आपको OK पर क्लिक करना है।




Step 9 : Congratulations..!! आपने सफलतापूर्वक अपनी टिकेट कैंसिल कर ली है।  अब आपको अपनी कैंसिल की हुई टिकेट की जानकारी दिखाई देगी। यहाँ पर CAN का मतलब cancelled ticket है।






-------------------------------------

Conclusion :

तो मैंने आज बताया कि आप ट्रैन की टिकट में  कुछ सीट्स को कैसे cancel क्र सकते हैं।  आपकी बाकि की सीट्स को ज्यों का त्यों रखते हुए। टिकेट सफलता पूर्वक cancel होने के बाद कुछ दिनों में लगभग 10 से 15 दिनों में आपका बचा हुआ amount आपके अकाउंट में transfer हो जाएगा।   
अगर आपको अभी भी कुछ भी और confusion या doubt रह गया हो इस topic के बारे मे तो आप नीचे comment क्र सकते है।  में आपका reply जरूर करूंगा।






Thursday, January 26, 2017

Binary Tree Pre Order Traversing Code

PreOrder Traversing Code in BST:

=>

    public void printPreOrder(){
       
        if(root == null){
            return;
        }
       
        Stack stack = new Stack(numNodes);
       
        stack.push(root);
       
        while(! stack.isEmpty()){
           
            Node node = stack.pop();
            System.out.println(node.data);
           
            if(node.right ! = null){
                stack.push(node.right);
            }
            if(node.left != null){
                stack.push(node.left);
            }
        }
    }

Binary Tree Inorder Traversal


Code for Inorder Traversal:

=>

    public void printInOrder(){
      
        if(root == null){
            return;
        }
      
        Stack stack = new Stack(numNodes);
        Node node = root;
        while(node != null){
            stack.push(node);
            node = node.left;
        }
      
        while(! stack.isEmpty()){
          
            node = stack.pop();
            System.out.println(node.data);
            if(node.right != null){
                stack.push(node);
                node = node.left;
            }
          
        }
   }

Various Job Profiles in the field of Computer Science / Information Technology





The job profiles or the designations offered by various top recruiters include the following:


> Computer Programmer
> Systems Analyst
> Software Developer
> Hardware Engineer
> Consultant
> System Engineer
> System Designer
> Networking Engineer
> Database Administrator
> Web Developer
> E-commerce Specialist
> Programmer
> Quality Analyst
> Software Test Engineer
> Technical Engineer
> Technical Support Engineer

Sunday, October 23, 2016

[SOLVED] word cannot save or create this file make sure the disk that you want to save the file on is not full, write-protected or damaged.....

word cannot save or create this file make sure the disk that you want to save the file on is not full, write-protected or damaged.....


Solution of this problem:


The entire problem is because of Normal.dot file, which you will see as prompt, after canceling the error message.

What is Normal.dot:  This is the file that Microsoft word uses as the default blank page. You can see this page  while opening MS word. Now think, what will happen..... if this page is not blank any more?????????  

When we have written something into this, this is no more blank, so MS-word prompts us to save another Normal.dot file, and this is the main cause of that irritating prompt / error message.

Solution:: 

We will have to create this Normal.dot file. The steps are following:

1. Go to 'my computer'.
2. Go to Local Disc (which is normally C drive)
3. Then Program Files (x86).
4. Open folder Microsoft Office -> Office16 (which may differ based on office version).
5. Here create one Microsoft word file having name:  'Normal'    (without quotes).
6. Now Enjoy.......:)  That irritating prompt won't come now. 
        
                      I think, this post may be helpful for you. You can comment  or mail me for any further help.





Saturday, October 22, 2016

Experience of First Fiber-net Internet Connection:

Experience of First Fiber-net Internet Connection:


I bought router   "TP-LINK TL-WR841N 300Mbps Wireless N Router" from Flipkart. I bought this router during 'Big Billion Days', so it cost me for 900 ₹. Otherwise, normally cost is around 1050 or above. Though It took around 10 days to arrive :P .

Now comes the connection part, In Bengaluru, ACT is the best in internet connection. So I chose to go with ACT connection. So, First I registered for the connection on their web-site. It took only 5-10 minutes.
     Then next day, one guy called me to confirm my registration. He asked me, when I will be available at home to fill the registration form. Then he came on the same day evening to fill the registration form, following that payments and all other formalities were done.
     Next day, Two guys came for wiring and router installation work. It took only 15-20 minutes. They set the network name and password for the same. After 2-3 hours I was able to see ACT fibernet home page on my device, but it was asking username and password. that I didn't have because last step of verification was left .

     On the same day, I got a call from ACT service center for details verification, which  I had given during registration. Then after verification, I got my username and password. Using that I logged in to ACT fibernet connection. and Yipeeeeee.... , now I was able to access internet.


This is, how I got my internet connection. :) :)

Comment or mail me, if you need any assist. And at last thank you for reading.