You meet a girl and fall head over heels in love with her instantly. Everybody around notices it too, but the one thing nobody really knows is what the girl really feels about you. We crush over all kinds of girls in our younger years – some of them fizzle away with time, some of them stay on in our minds in the form of regret – regret of not walking up to her and telling her how you feel, regret of not knowing if it could have worked out. And if you’re good with reading signs, you’d instantly know when it is totally worth taking a chance. For the rest of you, here are 14 signs she likes you too, in all probability, just so you can gather the courage to make a move on her.
1. When two people are attracted to each other, their friends know it much before they do. That’s why they keep linking them up every time. And there’s a lot you can get to know about her feelings from the way she responds to the jokes. It’s not hard to tell if she’s secretly enjoying it. If she plays along every time her friends tease her with you, she might be genuinely interested! 
2. Whenever you’re out in a group, she makes it a point to sit close to you. She may be doing it subconsciously but it is definitely a sign of attraction. So, the next time you two go out with a bunch of friends, notice if she takes the seat next to you!
3. It literally takes nothing for you to make her blush. She goes red in the face even if you just simply look at her and smile. It only means you must be doing something right.
4. She’s always teasing you with other girls. It’s her way of knowing your ‘type’ in girls and if she fits in. It could also be because she’s probably still in denial, trying to convince herself that she’s really not into you. It’s common for female friends to tease you with other girls but there’s definitely something more to it if she’s going over the top, linking you with others.
5. She maintains eye contact, whenever she’s talking to you. There’s a certain look in her eyes that is quite easy to catch if you pay enough attention. 
6. The way she hugs you every time you meet is a lot different than a ‘regular, friendly hug’. It feels like she was really, really, looking forward to seeing you. It’s warmer, more intimate and lasts a little longer. 
7. She kind of steers every conversation towards your personal life. She’s always interested in knowing if you have a girlfriend or even if you are on the lookout. Try confusing her and creating some mystery around your relationship status the next time she asks you about it. If it looks like the curiosity is killing her, you definitely have another sign.
8. You know how you’re constantly on the lookout for moments when you can spend some alone time with her? Well, she’s probably doing the same, in her own ways. If you find her flirting with you a lot, especially when nobody is around, chances are, she likes you too.
9. She’s always noticing you. You know she’s looking at you while you talk to someone, you know she’s noticing the way you talk, she’s noticing whether you check out other women passing by or not, she’s listening to every word you speak even if you’re not talking to her.
10. She may not be very vocal about the way she feels about you, but she doesn’t deny that there could be something going on between you two either. She just slips out of every situation with a mysterious laugh or a blank look.
11. She wants to keep the conversation going and would do anything to keep you hooked on to it. Every ‘bye’ in WhatsApp is followed by a hundred new messages about something completely random. She always has something to say.
12. Every once in a while, she lets you in to her personal life. She doesn’t mind being vulnerable to you. She seems very comfortable opening up to you about the many problems in her life. 
13. There are times when she’s pissed at you for no apparent reason and doesn’t even try to hide them. That could be her way of getting your attention. 
14. She has started to confide in you a lot. She’s told you that she trusts you more than her own best friends. And that is a clear sign!

1.When you are up in the life,your friends get to know who you are
But when you are down in Life,you get to know who your friends are.
Heard of TCS?

TCS alone has  276,196 employees versus Google with 30,000 employees. In a country like India, Google would bring wonders to our industry but companies like TCS would bring more jobs to a country populated as less as 1 billion and counting.

They are massive. They probably have more employees than the companies you listed. They are global. Have offices worldwide. 1/5th the revenues of Google. That still is massive. And growing.

public class MainClass {
   public static void main(String args[]) {
      for (int counter = 0; counter <= 10; counter++){
         System.out.printf("%d! = %d\n", counter,
         factorial(counter));
      }
   }
   public static long factorial(long number) {
      if (number <= 1)
         return 1;
      else
         return number * factorial(number - 1);
   }
}
Palindrome number in java: A palindrome number is a number that is same after reverse. For example 545, 151, 34543, 343, 171, 48984 are the palindrome numbers.

  1. class PalindromeExample{  
  2.  public static void main(String args[]){  
  3.   int r,sum=0,temp;    
  4.   int n=454;//It is the number variable to be checked for palindrome  
  5.   
  6.   temp=n;    
  7.   while(n>0){    
  8.    r=n%10;  //getting remainder  
  9.    sum=(sum*10)+r;    
  10.    n=n/10;    
  11.   }    
  12.   if(temp==sum)    
  13.    System.out.println("palindrome number ");    
  14.   else    
  15.    System.out.println("not palindrome");    
  16. }  
In fibonacci series, next number is the sum of previous two numbers for example 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55 etc.


  1. class FibonacciExample1{  
  2. public static void main(String args[])  
  3. {    
  4.  int n1=0,n2=1,n3,i,count=10;    
  5.  System.out.print(n1+" "+n2);//printing 0 and 1    
  6.     
  7.  for(i=2;i<count;++i)//loop starts from 2 because 0 and 1 are already printed    
  8.  {    
  9.   n3=n1+n2;    
  10.   System.out.print(" "+n3);    
  11.   n1=n2;    
  12.   n2=n3;    
  13.  }    
  14.   
  15. }}
public class CompoundInterest {
2 
3    public void calculate(int p, int t, int r, int n) {
4        double amount = p * Math.pow(1 + (r / n), n * t);
5        double interest = amount - p;
6        System.out.println("Compond Interest is " + interest);
7        System.out.println("Amount is " + amount);
8    }
9}
public class armstrong {


import java.util.Scanner;

class armstrong
{
   public static void main(String args[])
   {
      int n, sum = 0, temp, remainder, digits = 0;

      Scanner in = new Scanner(System.in);
      System.out.println("Input a number to check if it is an Armstrong number");     
      n = in.nextInt();

      temp = n;

    

      while (temp != 0) {
         digits++;
         temp = temp/10;
      }

      temp = n;

      while (temp != 0) {
         remainder = temp%10;
         sum = sum + power(remainder, digits);
         temp = temp/10;
      }

      if (n == sum)
         System.out.println(n + " is an Armstrong number.");
      else
         System.out.println(n + " is not an Armstrong number.");        
   }

   static int power(int n, int r) {
      int c, p = 1;

      for (c = 1; c <= r; c++)
         p = p*n;

      return p;  
   }
}
}
public class SimpleInterestTest{

 
    public static void main(String args[]) {
     
        //creating scanner to accept principle, rate and time input form user
        Scanner scanner = new Scanner(System.in);
        System.out.println("Welcome in Java program to calculate Simple interest");
     
        System.err.println("Please enter principle amount :");
        float amount = scanner.nextFloat();
     
        System.err.println("Enter time in years : ");
        float time = scanner.nextFloat();
     
        System.out.println("Enter rate annually : ");
        float rate = scanner.nextFloat();
     
        float interest = simpleInterest(amount, rate, time);
     
        System.out.println("Simple interested calculate by program is : " + interest);
    }
 
    public static float simpleInterest(float principle, float rate, float time){
        float interest = (principle*rate*time)/100;
        return interest;
    }
}

Output:
Welcome in Java program to calculate Simple interest
Please enter principle amount :
1000
Enter time in years :
1
Enter rate annually :
7
Simple interested calculate by program is : 70.0


Download Pattern Recognition Unit wise syllabus from here.
Download