Wednesday, January 27, 2016

Paying 2nd Installment for C-DAC through BANK

Paying 2nd Installment for CDAC through bank Comprises of following steps:-

1- Click on NEFT for 2nd Installment and Take print of your details.
2- Go your respective bank (Take your passbook and check book you may require) and fill NEFT form as per details in print and your account details.
3- After this done ask for UTR number by the NEFT doing agent , or you may get UTR number by Updating your passbook.
4- Log in to cdac.in and Fill your NEFT details at the botom and and click on Submit
5- Wait for 48hrs for update and then check. for any queries regarding your payment you can contact your respective allocated center , for other queries post here i will try to answer you. you can also join my blog for further updates kapil0123.blogspot.in you can like my page at facebook My Journey.

I have discussed Cdac Hyderabad on Telephone they said that payment of 2nd installment Payment status after successful NEFT done will be update in about 10 to 15 days . For further details you can contact CDAC Hyderabad at 04023737127

Fig: Take print of  your respective page like this






Thursday, January 14, 2016

Number of ways to Swap Numbers in Programs.....!



1.     Simple Method:-
By using temp. Let a = 10, b=20;
temp = a; //temp =10
a = b; // a=20
b = temp ; // b = 10
Earlier a = 10, b = 20;
Now    a = 20, b = 10;

2.     Using Addition and Subtraction:-
Let a = 10, b=20;
a = a + b à 10 + 20 = 30 // a = 30
b = a – b à 30 – 20 = 10 // b = 10
a = a – b à 30 – 10 = 20 // a = 20

Another Method
1. b = (a + b) - (a = b)
2. *b = (*a + *b) - (*a = *b)

3.     Using Multiplication and Division:-
Let a = 10, b=20;
a = a * b = 10 * 20 = 200 // a = 200
b = a / b = 200 / 10 = 20 // b = 20
a = a / b = 200 / 20 = 10 // a=10 

4.     Using Bitwise XOR:-
Let a = 2, b = 3;
a = a ^ b à 2 ^ 3 à 1 // a = 1, b = 3
b = a ^ b à 1 ^ 3 à 2 // a = 1, b = 2
a = a ^ b à 1 ^ 2 à 3 // a = 3, b = 2

Another way of writing
1. a^ = b^ = a^ = b
2. *a^ = *b^ = *a^ = *b