14 signs she loves you too

You meet a girl and fall head over heels in love with her instantly. Everybody around notices it too,

SPM TEXT BOOK

DOWNLO

What is the ugliest truth about life?

1.When you are up in the life,your friends get to know who you areBut when you are down in Life,you get to know who your friends ar

Why has no Indian startup got to the height of large companies like Microsoft, Facebook, Apple, IBM, or Dell? Why is India lagging behind?

Heard of TCS?TCS alone has  276,196 employees versus Google with 30,000 employees. In a country

Calculating Factorial java program

public class MainClass { public static void main(String args[]) { for (int counter = 0; counter <= 10; counter++){ System.out.printf("%d!

Palindrome Program in Java

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

Fibonacci series in Java

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. class FibonacciExample1{   public static void main(String args[])   {      int n1=0,n2=1,n3,i,count=10;      System.out.print(n1+" "+n2);//printing 0 and 1           for(i=2;i<count;++i)//loop starts from 2 because 0 and 1 are already printed      {       n3=n1+n2;       System.out.print(" "+n3);       n1=n2;       n2=n3;      }        }}

SQA program for Compound interest

public class CompoundInterest { 2  3    public void calculate(int p, int t, int r, int n) { 4        double

pROGRAM FOR aRMSTRONG

public class armstrong {import java.util.Scanner;class armstrong{   public static void main(String args[])   {     

Program for Simple Interest SQA

public class SimpleInterestTest{       public static void main(String args[]) {               //creating

Pattern Recognition Unit wise syllabus

Download Pattern Recognition Unit wise syllabus from here. Downlo