Friday, 6 October 2017

Want to take new Credit Card? Wait!!

Hello, Let’s understand what credit card means.

It is nothing but a loan of a specific X amount taken from the bank where it charges for using that money.

Well, if you know about this, great!

What is the difference between Credit and Debit card?

A debit card is nothing but a plastic card that is given to a savings or credit account holder by a bank.
When you use or swipe a debit card, the money will be cut from your bank account.
There are different ranges of debit cards, some will be given for free (which are having no different offers – often called as classic) and some will be given for minimal annual amount with a wide range of offers.
This goes for credit card too. But you can’t see anything like free here.

Do you know how much bank charges from you?

Even though, the card that you are using or going to take came for free? Then you should have to read further more information on how banks are cashing your hard earned money.

1. Credit card will be given to people who are getting pay slips or who is earning a certain amount per month.
2. Based ones income, the limit offered by the bank varies.
3. There are different types of plans, where there will be different types of charges.

If any bank employee called you and said that we are giving a credit card for FREE! Don’t trust him, because we have to pay annual charges for a credit card that we are using.

Before taking a credit card, I ask you to look at different types of charges for using that card on the bank’s website and don't forget about GST if you are from India.

Always remember there will be this *.

*Terms and Conditions Apply.



I will give you an in detail description about how charges are given for a credit card with one example in my next post.


Saturday, 12 August 2017

Machines and Its Uses

Hello All,

After a long time! A machine is always invented or discovered or whatever it might be., for the purpose of easing a person's work and save time.

A machine might be anything for example a Pen, which is used to write made a huge revolution by changing the usage from the quill to its own.


Similarly, Computers are used to decrease human effort in one sort of way like doing multiple tasks at a single time, storing huge loads of data, doing very complex caluclations and making all the people around the world gather at a single place.



Smartphones, tablets and all other stuffs can be included into computers as most of the things are taken from computer only with the addition of telecommunications.

So, guys please use machines up to the extent when and where we needed. Be social means not to be in Facbeook or twitter, but to be enjoying your time with the people who are around you.



This is what i understood in my past few months. Daily updating whatsapp or facebook status or daily tweeting in twitter is not my life, but to take care of my family, my friends who stayed in support during my hard times.


I will give some steps to be out from all these stuffs up to some extent.

1. Always staying up to date may ruin your personal life. ( Be productive, learn something..)
2. Always learning may result in nothing, so please keep all things on track which are useful in your life.
3. Maintain a journal and write everything that is important in your life. so it might be helpful if you are doing any serious experiments.
4. Inspire others by inspiring yourself. Maintain a blog, read your posts after a some years. You can understand your mistakes (Grammarly, thoughtfully or any other).

5. Always don't stay in track. make mistakes and learn from that mistakes.


Regards,
Your Friend.

PS: As my life is started that's all for now. If i found anything important I will update my blog again.

Saturday, 1 April 2017

Let's Learn Programming with C and Python Part II

Hey Guys, Welcome back to the next step.

Here Before we start Programming. Let's have some fun with Pseudo Coding.

Pseudo coding is nothing but writing your code in an order with some follow up of some universally understandable words. Here we don't follow strict syntax but we have a small amount of syntax which helps in understanding our code in a better way.

Coming to pseudo coding.
We can write any level of code in pseudo coding.

Let us write a pseudo code for adding two variables and storing in third variable and displaying the result variable.


  •  START.
  •  INITIALIZE VARIABLE a,b,c.
  •  a = 2.
  •  b = 3.
  •  ADD  a AND b AND STORE THE RESULT IN c.
  •  DISPLAY c.
  •  STOP.

This is the format of writing the pseudo code.
Coming to the code the first and last lines determines the start and end of the code.
Where as to take a variable or function we use INITIALIZE.
we will write DISPLAY to display the result or required data.
Let us write this program again with some dynamic programming touch.


  • START.
  • INITIALIZE VARIABLE a,b,c.
  • DISPLAY 'Welcome to the two values Adder'.
  • DISPLAY 'Enter the first value : '.
  • TAKE INPUT AND STORE IN a.
  • DISPLAY 'Enter the second value : '.
  • TAKE INPUT AND STORE IN b.
  • ADD a AND b AND STORE RESULT IN c.
  • DISPLAY 'The result of the adder is ',c.
  • STOP.
This is how we will write a dynamic programming code. Although this is not important at first, but writing this way will help you in writing the Real time programs in a better way.

I will give a link with questions to write pseudo codes and you have to write pseudo codes to them and share them to me. You can upload your answers here.

Note to upload your answers:
please upload your answers in a folder with a name like this <YourName_Exercise_1>
and write all pseudo codes in one text document with a name like this <YourName_Exercise_1>.txt


You can contact me through mail <ukc895@gmail.com> and ask me your doubts.


Practice and Learn Programming in a real way. In next session I will explain you in detail about dynamic programming and I will explain you how to write functions and loops in the pseudo coding. 





Note: I can take a video and share all these information to you but it is not the way to learn programming. If you want to program then you have to read and understand on your own.



Sunday, 26 March 2017

Let's learn Programming with C and Python - Part I

Hello, If you are reading this, I consider you as a beginner of programming.
Let's get to the point. Before going through Programming,

  A computer is nothing but a dumb tool just like others which will give output to your given inputs. when programming if you are getting errors it doesn't mean computer is doing some sort of errors, but you are program code is not delivering yours expected result.

Before starting with programming let us start with some aptitude, logic and reasoning.

Let us start understanding something with aptitude,

                             Whenever you are doing addition of two numbers, it is always "+", for eg,2+3=6
in the similar way, when you are finding the area of a Right angled triangle, it is always "base*height*0.5" and here it is always a decimal point number (Which is not at all an integer)

So, before thinking the outcome of your code is wrong check all your code before cursing your beautiful Machine.


Now it is our chance to know about Logic and Reasoning,

                             In Logic and Reasoning, when you are given an expression x + y = 10
and find x and y values, you can get infinite amount of results. which one you choose is your wish.
In a similar to solve a problem you can have so many methods. which one you follow is hardly up to you. (There is always a hard way and a shortcut way).

For example to swap two numbers from two variables a = 2, b = 3

It is always having two methods, one way is taking another variable "temp"
and doing like this,
temp = a
a = b
b = temp
Now the values are changed!!!

The other way is,
a = a + b
b = a - b
a = a - b
Now the values are changed!!!

The only difference is Logic that I used to swap two variables. (Even though the second one will save another variable that can be used some where else)

Finally, what I say is which logic you choose is your wish. But don't think about another logic while you are dealing with the first one. After completing with one logic then go with the other.


This is enough introduction. I will go with programming from my next blog post.

The next post will be on pseudo coding. till then stay tuned. Mean while try to do solve the known logic that you had on different problems in a different way which might be useful to you while writing your program.