Thursday, August 30, 2018

How to use "in on at" while framing sentences

Let's learn how to use prepositions in, on, and at.

At: At shows us the location of a person or thing.
  1. Am at home
  2. Am at work
  3. Am at theater
In: In shows us something inside.
  1. There are two pens in the draw.
  2. I read an interesting article in the newspaper.
  3. I like action scenes in movies.
On: A thing is top on something.
  1. There is dust on the floor.
  2. Mick-Mouse is my best cartoons on TV.
  3. I like listening to talk shows on radio. 

Wednesday, August 29, 2018

PhonePe support answer on ekyc enable/disable

I've contacted PhonePe care and I got this reply from them.

Thank you for contacting PhonePe!

We understand your concern.

With Regarding your recent query, Ticket No:********, we would like to inform you that on checking your PhonePe account details we see that you have completed your Basic KYC through  PAN_CARD and wallet balance withdrawal are not allowed in Basic KYC.

However, please note that E-KYC (Aadhar card) is disabled temporarily and you will not be able to complete the E-KYC as well, but you can utilize the wallet balance for making P2M transactions (Recharge, BillPay, online/offline Shopping across PhonePe).

We are looking for a permanent solution and the same will be updated soon.

We appreciate your understanding on this.

Please feel free to contact us if you need any clarification.

Tuesday, August 14, 2018

Puma Turkish Sea Casual Backpack Review

This I purchased for 439/- INR and for shipping the site has charged another 100/-INR, so total amount costed me was 539/-INR. I've received the product on next day I ordered and packing was excellent. As soon as I opened and held the backpack in my hand I was little disappointed as the size was a bit smaller than I expected. But the packing, the logo, color, look and feel, the product finishing, and the fresh smell made me happy.
This Puma backpack is ideal for carrying laptop or can be used while travelling. This is the first backpack I've ordered online, earlier I used Lenovo backpack which I got it along with my Lenovo laptop. A couple of days ago near Secunderabad railway station I purchased a backpack which is a duplicate version of the PUMA, anyways the cost of it was only 130/-INR. There is a wide difference between genuine one and the duplicate. For using rough and tough the duplicate one can be used without any second opinion.

This is what you need to know about a Personal Loan!

Personal loans are Unsecured loans which does not require collateral. CIBIL score or Credit score will play key role to get a Personal loan or even a Credit card. TransUnion CIBIL Limited maintains credit files of Individuals and companies.

There are two important terminologies that hits our head when we think of a personal loan. They are
1) Interest rate
2) CIBIL score

Borrowers look out for financial institutions who offer least interest rates whereas lenders disburse loans based on CIBIL score. Low CIBIL score can result in rejections, multiple rejections will further drag down credit score.

Application -> Rejection -> Score down -> Application: This is a dangerous cycle where lenders assume higher risk with this kind of profiles. For a healthy CIBIL score ensure repayment on or before due date which also helps you to avoid late charges. 

Is your company 5 years old?
In case if you're working in a start up/recently established company then the chances of getting a loan is very low. Financial institutions have set some standards before they offer you Personal loans. They are
  • Company you're working in should be 5 years old.
  • Are you at least 1 year old in current company.
  • Type of residence(Owned, Owned by Parents/Siblings, Rented).
  • Your CIBIL score.
  • Your re-payment plays vital role. 
Financial Institutions can be two types:
1) Banks: HDFC, ICICI, IDBI, AXIS, Kotat, SBI etc.
2) Non-banking financial company(NBFC): Muthoot Finance, Bajaj Finserv, Mannapuram Finance etc.

Usually the interest rate vary from 10.99% to 24% per annum. 

Thursday, August 9, 2018

Improvements in out paramenters in C#7.0

There is a slight improvement in calling a method using out parameter in C# 7.0. Instead of declaring variables separately outside we can declare them while calling method itself.

In the two examples below which is colored, you could find the way of using out parameters. 
  class Sample
    {
        public void Cals(int val1, int val2, out int val3, out int val4)
        {
            val3 = val1 + val2;
            val4 = val1 * val2;
        }
        static void Main()
        {
            int m = 100, n = 50;
            Sample S = new Sample();
            int x, y;
            S.Cals(m, n, out x, out y);
            Console.WriteLine("x = "+x + "and y = " + y);
            Console.Read();
        }
    }
  Output:
  x = 150 and y = 5000

    class Sample
    {
        public void Cals(int val1, int val2, out int val3, out int val4)
        {
            val3 = val1 + val2;
            val4 = val1 * val2;
        }
        static void Main()
        {
            int m = 100, n = 50;
            Sample S = new Sample();
            S.Cals(m, n, out int x, out int y);
            Console.WriteLine(x + " " + y);
            Console.Read();
        }
    }
  Output:
  x = 150 and y = 5000

C# 7.0 Tuple example program

A program can return more than one value from a method from C#7.0.

Example 1: 
class Program
    {
        public (int Sum, int Product) Calc(int val1, int val2)
        {
            int val3 = val1 + val2;
            int val4 = val1 * val2;
            return (val3, val4);
        }
        static void Main()
        {
            Program P = new Program();
            var (Sum_Result, Product_Result) = P.Calc(100, 50);
            Console.WriteLine("Sum: " + Sum_Result);
            Console.WriteLine("Product: " + Product_Result);
            Console.Read();
        }
    }

Output:
Sum: 150
Product: 5000

If you notice val3 and val4 of type integer has been returned from Calc method

In the Main method we've captured val3 and val4 values into Sum_Result and Product_Result and printed them as well. .

Example 2:
class Program
{
        public (int Sum, int Product) Calc(int val1, int val2)
        {
            int val3 = val1 + val2;
            int val4 = val1 * val2;
            return (val3, val4);
        }
        static void Main()
        {
            Program P = new Program();
            var var_obj = P.Calc(100, 50);
            Console.WriteLine("Sum: " + var_obj.Sum);
            Console.WriteLine("Product: " + var_obj.Product);
            Console.Read();
        }
 }
Output:
Sum: 150
Product: 5000

In the above example we have created a var obj by name var_obj which calls Calc method using object(P) of the class Program and passed two integer values as well.

Then printed two values using var_obj. 

Friday, August 3, 2018

Optimists Vs Pessimists

Optimists tend to think on a good side of life and have lots of hoping in future. Pessimists have negative opinion towards all the activities they do.

Example with a glass with water filled to the half:

                  Optimists                                        Pessimists

Positive thinking                                                  Negative thinking
Expects positive out of any activity                     Rolls in negativity all the time
An Optimist feels happy to have half filled.        A Pessimist sees a half-empty.

Difference between For, While, and Do-While Loops in Programming

For: When you know how many times a loop should be executed then use "For loop".

While: When you feel condition is important to start a loop then use "While loop".

Do-While: When you want to execute a set of statements before condition is checked for iteration then use Do-While.

Syntax:

for(intialization;Condition;Itteration )
{
 //statements or code
}

while(Condition)
{
 //statements or code
}

do
{
 //statements or code
}while(Condition);

How to write a basic program in Java?

Let's learn basic java program in this article:

public class BasicJavaProgram {

   /* Basic java program.
    * Output will be 'Hello World'
    */

   public static void main(String []args) {
      System.out.println("Hello World");    }
}

Steps to Compile and Run a Java program:

C:\> javac BasicJavaProgram.java
C:\> java BasicJavaProgram
Hello World

We use double forward slash for single line comment and we use /* .. */ for multi-line comment. 

Main Method in Java

In Java, program execution starts from "main method" which is the entry point for the program.

public static void main(String[] args) {
    // code
}

static public void main(String[] args) {
    // code
}

static public void main(String args[]) {
    // code
}

public static void main(String[] Person_Name) {
    // code
}

public static void main(String... London) {
    // code
}

In the main method we can write public or static first but it is mandatory to mention both.

Thursday, August 2, 2018

Virat Kohli 149 in 1st Test(August 2018) against England

Indian skipper and dashing batsman Virat Kohli made century in the first test to make team India a respectable total. Virat ended up scoring 149 runs in this match while all other batsman failed to make big score. He took 225 balls to hit 22 fours and 1 six in this innings.

India made 274 runs in the first innings while England made 287. Ravichandran Ashwin took 4 wickets and Shami took 3 wickets. Right from the beginning this Test match seemed to be interesting and would definitely looked like to have a result.

In the Second innings England bowled out for 180 runs, Ishant Sharma took 5 wickets in style. In reply India managed to put 162 on score board where Kohli scored 51 runs but did not get any support from other batsmen except Hardik Pandya who made 31 runs. Sadly India lost this match to England by 31 runs.

Eng: 287 & 180.
Ind:  274 & 162

Wednesday, August 1, 2018

iSpring Free Cam 8 is a best FREE Screen Recording And Video Editing Software

iSpring Free Cam 8 is the best FREE screen  recording and video editing software available these days. It is very easy to download and install.

Search for iSpring Free Cam 8 in your browser and your search engine lists you with results.

Hopefully 1st or 2nd one willl be iSpring official website, click on it and enter to iSpring website.

On the iSpring website, you will be seen with "Free Tool For Creating Screencasts" on the left and "Get More With iSpring Cam Pro" on the right.

You need to download "Free Tool For Creating Screencasts" which is a free one, for this you need to enter your email adress beside download button, after entering your email id click on "Download Now".

It will display a pop message asking you to check your mail for download URL. Go to your email inbox and click on the URL, it will start downloading your free software.

It will never, ever ask for any serial code or activation code. It is a genuinely free software.

First look  will be like this:


Click on New recording and start your project/tutorial.


You could customize the part of screen for recording by using adjust option on four sides of the box shown in the above image.

Finally click on the red button which is available on the left-down side, it will give you 3..2...1.. numbers/seconds then your recording begins.

To stop recording press ESC key on the keyboard.

To remove noice, click on edit. Select the portion of video that you want to remove noise and click on the remove noise button. You can even adjust volume with the option there in the menu. Once it is done click on Save and Close.

Then click on Save video as, to save video on your Computer.