Hub Of Geekz

  • Home
  • About Me
  • Contact Us
  • Home
  • Languages
    • C++
    • Java
    • Perl
    • Prolog
    • Bootstrap
  • Database
    • SQL
    • PL/SQL
  • Study
    • Java
      • Java Collection
      • Java Concurrency
      • Java Interview Questions
      • Java Networking
    • Number System
  • Kavita
  • Entertainment
    • Hinglish Cafe
    • Videos
    • Jokes
  • Windows Tricks
  • How To

Tuesday, 30 September 2014

ArrayList in Java

 Unknown     22:37     Java     No comments   

In this program we can know how to store the names of employees in a arraylist.


package collections;
import java.util.ArrayList;
import java.util.Scanner;

public class EmployeeManagement {

public static void main(String[] args) {
ArrayList<String> empList=new ArrayList<String>();
Scanner sc=new Scanner(System.in);
System.out.println("How many Employee names do you want to enter in the system:");
int num=sc.nextInt();
EmployeeManagement eman=new EmployeeManagement();
eman.addEmpName(num,empList);
System.out.println("The Employees in the System are: ");
for (int i=0;i<num;i++)
{
String name=empList.get(i);
System.out.println(name);
}


}
public void addEmpName(int no,ArrayList<String> empNameList)
{

Scanner sc=new Scanner(System.in);
for(int i=0;i<no;i++)
{
System.out.println("Enter the name of Employee: ");
String name=sc.nextLine();
empNameList.add(name);
}
}

}






Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Exception Handling in Java

 Unknown     12:24     Java     No comments   

User Defined Exception


package exceptions;

public class TooYoungException extends Exception {

private static final long serialVersionUID = 1L;

public TooYoungException(String msg)
{
super(msg);
}
}





User Defined Exception


package exceptions;

public class TooOldException extends Exception{

private static final long serialVersionUID = 1L;

public TooOldException(String msg)
{
super(msg);
}
}


package exceptions;
import java.util.*;
public class VirtualJob {

static final int tooOld=0;
static final int tooYoung=0;
void applyJob(Person p)throws TooOldException,TooYoungException{
Scanner s=new Scanner(System.in);
System.out.println("enter name ");
String name=s.next();
p.setName(name);
System.out.println("enter age ");
int age=s.nextInt();
p.setAge(age);
}
}




package exceptions;

public class VirtualCompany {

public static void fillJob(VirtualJob vj,Person p)throws TooOldException,TooYoungException{
vj.applyJob(p);
     }
}




package exceptions;

public class Person {
int age;
String name;
void setAge(int age)throws TooYoungException,TooOldException{
if(age<22)
throw new TooYoungException("too young for applying job ");
else if(age>35)
throw new TooOldException("too old for applying job ");
else
this.age=age;
}
void setName(String name){
this.name=name;
}
public int getAge(){
return age;
}
public String getName(){
return name;
}

}


package exceptions;

public class AgeDemo {

public static void main(String[] args) {
Person p=new Person();
VirtualJob vj=new VirtualJob();
try
{
vj.applyJob(p);
VirtualCompany.fillJob(vj, p);
}catch(TooYoungException ty)
{
System.out.println(ty.getMessage());
}
catch(TooOldException to)
{
System.out.println(to.getMessage());
}

}

}



Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Exception handling in Java

 Unknown     11:54     Java     No comments   

package exceptions;

import java.util.*;
public class Division {

double division(int a,int b)
{
return a/b;
}
public static void main(String[] args) {

Division d=new Division();
Scanner sc=new Scanner(System.in);
System.out.println("Enter First Number: ");
int a=sc.nextInt();
System.out.println("Enter Second Number: ");
int b=sc.nextInt();
try
{
double res=d.division(a,b);
System.out.println("Result: "+res);
}catch(ArithmeticException ae)
{
System.out.println("Divide By Zero "+ae);
}
}

}





Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Inheritance in Java

 Unknown     11:38     Java     No comments   

package inheritance;


public class Class1 {

public static void printMessage()
{
System.out.println("I am in Class1 printMessage");
}
public void printMessage1()
{
System.out.println("I am in Class1 printMessage1");
}
}





package inheritance;


public class Class2 extends Class1 {

public static void printMessage()
{
System.out.println("I am in Class2 printMessage");
}
public void printMessage1()
{
System.out.println("I am in Class2 printMessage1");
}

}




package inheritance;


public class InheritanceLoadingVsRiding {

public static void main(String[] args) {


Class2 c2=new Class2();
Class1 c1=c2;
c1.printMessage();
c1.printMessage1();
c2.printMessage();
c2.printMessage1();

}

}




Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Exceptions in Java

 Unknown     11:32     Java     No comments   

package exceptions;


public class OutOfBoundEx {


public static void main(String[] args) {


int arr[]=new int[5];
try
{
System.out.println(arr[8]);
}catch(ArrayIndexOutOfBoundsException ae)
{
System.out.println("Exception Thrown "+ae);
}
System.out.println("Instruction executed After Exception is thrown i.e. out of try catch block");


}

}





Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Exception in Java

 Unknown     11:29     Java     No comments   

package exceptions;


public class ExceptionEx {


public static void main(String[] args) {

String str="hello";
int i=Integer.parseInt(str);
System.out.println(i);
}


}





Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

NegativeException in Java

 Unknown     11:26     Java     No comments   

package exceptions;


public class ExceptionEx {


public static void main(String[] args) {

int[] arr=new int[-12];
System.out.println(arr[1]);
}


}





Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

NullPointer Exception in Java

 Unknown     11:24     Java     No comments   

package exceptions;


public class ExceptionEx {


public static void main(String[] args) {

String string=null;
System.out.println(string.length());
}


}




Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

ArrayIndexOutOfBoundException in java

 Unknown     11:21     Java     No comments   

package exceptions;


public class ExceptionEx {


public static void main(String[] args) {

int[] arr={1,2,3,4,5,6,7,8};
System.out.println(arr[10]);
}


}





Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Arithmetic Exception in Java

 Unknown     11:17     Java     No comments   

package exceptions;


public class ExceptionEx {


public static void main(String[] args) {

int a=13/0;
System.out.println(a);

}

}



Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Exception Handling in java

 Unknown     10:53     Java     No comments   

package exceptions;


public class Employee {

int age;
int empId;
String empName;

int getAge(){
return age;
}
int getEmpId(){
return empId;
}
String getEmpName(){
return empName;
}

void setAge(int age) throws AgeMisMatchException
{
if(age<18)
throw new AgeMisMatchException("Age must be greater than 18");

else
{
this.age=age;
}

}
void setEmpId(int empId){
this.empId=empId;
}
void setEmpName(String empName){
this.empName=empName;
}
}





User Defined Exception

package exceptions;


public class AgeMisMatchException extends Exception{

AgeMisMatchException(){
}
AgeMisMatchException(String message) {
super(message);
}
}





package exceptions;
import java.util.*;
public class EmployeeDemo {
public void addEmployee()
{

try
{
Scanner s=new Scanner(System.in);
Employee emp=new Employee();
System.out.println("Enter employee age ");
int age=s.nextInt();
emp.setAge(age);
System.out.println("Enter employee empid ");
int empId=s.nextInt();
emp.setEmpId(empId);
System.out.println("Enter employee Name ");
String empName=s.next();
emp.setEmpName(empName);
System.out.println("Employee Age "+emp.getAge());
System.out.println("Employee Id "+emp.getEmpId());
System.out.println("Employee Name "+emp.getEmpName());
}catch(AgeMisMatchException e)
{
System.out.println(e.getMessage());
}
}

public static void main(String[] args) throws AgeMisMatchException{

EmployeeDemo e=new EmployeeDemo();
e.addEmployee();
}

}





Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Enumeration in Switch in Java

 Unknown     00:14     Java     No comments   


public class EnumInSwitch {
enum Day{SUNDAY,MONDAY,TUESDAY,WEDNESDAY,THURSDAY,FRIDAY,SATURDAY}

public static void main(String ar[])
{
Day d=Day.SUNDAY;
switch(d)
{
case SUNDAY:
case SATURDAY:
System.out.println("Weekend");
break;
default:
System.out.println("Weekday");
break;
}
}
}





Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Advance Enumeration in java

 Unknown     00:11     Java     No comments   


public class EnumEx2 {
public static void main(String[] args) {

System.out.println(CarEnum12.valueOf("BMW"));
for (CarEnum12 c:CarEnum12.values())
System.out.println(c.getCarType());
}
}
enum CarEnum12 {
BMW("Bavarian Motor Works"),
TOYOTA("Too Often Yankees Overprice This Auto"),
FIAT("Fabbrica Italiana Automobili Torino");
private String CarType;
private CarEnum12(String CarType) {
this.CarType = CarType;
}
public String getCarType() {
return CarType;
}
}





Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Encapsulation in java

 Unknown     00:08     Java     No comments   


public class En12 {

public enum Season { WINTER(19), SPRING(20), SUMMER(10), FALL(22);
private int value;
private Season(int value)
{
this.value=value;
}
}

public static void main(String[] args) {
for(Season s:Season.values())
System.out.println(s+" "+s.value);

}

}





Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Basics of Encapsulation in java

 Unknown     00:06     Java     No comments   


public class En {
enum Season { WINTER, SPRING, SUMMER, FALL; }
public static void main(String ar[])
{
Season s=Season.FALL;
System.out.println("The Season is : "+s);
}

}





Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

String Manipulation in Java

 Unknown     00:03     Java     No comments   

import java.io.UnsupportedEncodingException;


public class ByteArray {

public static void main(String[] args) {

byte bt[]={'m','y',' ','n','a','m','e',' ','i','s',' ','r','a','m'};
String str=new String(bt,1,12);
System.out.println("String is "+str);
StringBuffer strBuf = new StringBuffer("Hello");
String str2 = strBuf.append("Java").toString( );
System.out.println("String is "+str2);
String str3 = new String(new char[]{'a','b','c'});
System.out.println("String is "+str3);
String str4 = "Java was developed by James Ghosling";
System.out.println(str4.substring(19));
String str5=new String("hello");
System.out.println(str5.replace('l', 'L'));
System.out.println(str5);



}
}





Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Converting byte array to string

 Unknown     00:01     Java     No comments   


public class ByteArrayToString {

public static void main(String[] args) {
byte bytearray[]={96,97,98,99,100,101,102};
String str=new String(bytearray);
System.out.println("String is "+str);

}

}






Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 29 September 2014

String methods in java

 Unknown     21:43     Java     No comments   



public class StringEx2 {


public static void main(String[] args) {
String hannah = "Did Hannah see bees? Hannah did.";
System.out.println("The lengh of String is: "+hannah.length());
System.out.println("The character at 12th location: "+hannah.charAt(12));

}

}





Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Different ways to concatenate a string in java

 Unknown     11:16     Java     No comments   

// Different ways of declaring and initializing Strings
package javaapplication1;


public class StringDemo {
 
    public static void main(String ar[])
    {
        String str ="Abhishek";
        String str1=new String(str);
        String str2=new String("Anoop");
        String str3=str2;
        System.out.println(str);
        System.out.println(str1);
        System.out.println(str2);
        System.out.println(str3);
    }
}




Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

String Concatenation in java

 Unknown     11:14     Java     No comments   


package javaapplication1;

public class StringConcatenation {
     public static void main(String ar[])
     {
            String str ="Abhishek ";
            String str1="Awasthi";
            String str2=str+str1;
            String str3=str.concat(str1);
            String str4="My name is ".concat(str)+str1;
            System.out.println(str);
            System.out.println(str1);
            System.out.println(str2);
            System.out.println(str3);
            System.out.println(str4);
     }
 
}




Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Java Programming Questions

 Unknown     11:12     Java     No comments   


package javaapplication1;

public class TestClass {
    public static void main(String ar[])
    {
       int ch=4;
        switch(ch)
        {
            case 3:
            case 'f':
            case 4:System.out.println("Hello");
                break;
             
        }
     
    }
 
}



Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Various String Methods in java

 Unknown     11:11     Java     No comments   


package javaapplication1;

public class StringMethods {

     public static void main(String ar[])
     {
         String str ="My name is abhishek awasthi";
          System.out.println("The length of string is "+str.length());
          System.out.println("The position of a in string is "+str.indexOf('a'));
          System.out.println("The position of a in string from 5th location is "+str.indexOf('a',5));
          System.out.println("The character at 5th location in string is "+str.charAt(5));
          System.out.println("The substring from 3rd location till end in string is =>"+str.substring(3));
          System.out.println("The substring from 5th location to 20th location in string is =>"+str.substring(5,20));
       
     }
}




Output


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Basics of Classes and Objects in java

 Unknown     11:08     Java     No comments   


package javaapplication1;



class Student
{
private int rollNo;
    private String name;
    private double marks;
    public Student(int rollNo, String name, double marks) {
            this.rollNo = rollNo;
            this.name = name;
            this.marks = marks;
    }
    public double getMarks() {
    return marks;
    }
public void setMarks(double marks) {
this.marks = marks;
}
public int getRollNo() {
return rollNo;
}
public String getName() {
return name;
}
}





package javaapplication1;



class StudentDemo
{
public static void main(String args[])
{
Student one =new Student(1,"Ravi",45);
Student two =new Student(2,"Ravish",95);
Student three =new Student(3,"Ravindra",75);
System.out.println("Highest is "+compareHighest(one,two,three));
}
public static String compareHighest(Student one,Student two,Student three)
{
Student st=one;
if(st.getMarks()<two.getMarks())
{
st=two;
}
if(st.getMarks()<three.getMarks())
{
st=three;
}
return st.getName();
}
}




Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Creating Array of Objects in java

 Unknown     11:04     Java     No comments   


Code for Connection Class


package javaapplication1;

public class Connection {
 
    private int connId;
    private int customerId;
    private String customerEmail;
    private double balance;
    public Connection(int connId,int customerId,String customerEmail,double balance)
    {
        this.connId = connId;
        this.customerId = customerId;
        this.customerEmail = customerEmail;
        this.balance = balance;
    }

    public double getBalance() {
        return balance;
    }

    public int getConnId() {
        return connId;
    }

    public int getCustomerEmail() {
        return customerEmail;
    }

    public int getCustomerId() {
        return customerId;
    }

    public void setBalance(double balance) {
        this.balance = balance;
    }

    public void setCustomerEmail(int customerEmail) {
        this.customerEmail = customerEmail;
    }
 
}




Code for ConnectionDemo Class in java which contains the main method

package javaapplication1;
import java.util.Scanner;

public class ConnectionDemo {
    public static void main(String args[])
    {
       Scanner sc=new Scanner(System.in);
       Scanner sc1=new Scanner(System.in);
       Connection[] connections=new Connection[3];
       for(int i=0;i<connections.length;i++)
       {
            System.out.println("Enter connection id:");
            int connId = sc.nextInt();
            System.out.println("Enter customer Id:");
            int custId = sc.nextInt();
            System.out.println("Enter customer email:");
            String email = sc1.nextLine();
            System.out.println("Enter customer balance:");
            double balance = sc.nextDouble();
            connections[i]=new Connection(connId,custId,email,balance);
       }
       double avgBalance = getAverageBalance(connections,1);
       System.out.println("average balance for customer with id 1 is " + avgBalance);
    }
    public static double getAverageBalance(Connection[] connections, int custId)
    {
        double balance = 0;
        int custCount = 0;
        for(int i = 0;i<connections.length;i++)
        {
            if(custId == connections[i].getCustomerId())
            {
                custCount++;
                balance = balance + connections[i].getBalance();
            }
        }
        balance = balance/custCount;
        return balance;
    }
}


Output




Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 20 September 2014

कतरा कतरा बह के सब थम जायेगा

 Kavita house     10:37     Kavita Sangrah     No comments   

आज रोने दे रह रहके मुझे 
थोडा और कयामत को पास आने दे  
देखते  है हम भी इस समंदर को 
रह रह के बिजलिया गिराने दे 
बस और बस कुछ और लम्हे 
गुजर जायेगा ये भी सफ़र 
कई मंजिले तय की है तन्हा 
ये एक और होगी तो नयी बात नही 
थम जाते है हर तुफा मौसम के 
ये दिल का तूफा भी गुजर जायेगा 
अभी जहन में कुछ बची है साँसे 
इनके जाते ही मद्धम पड़ जाएगा 
आँखों के आंसू अब तो सूख गये 
बस लहू के आने का इंतज़ार है 
कुछ ही लम्हों ये वक़्त गुजर जायेगा 
कतरा कतरा बह के सब थम जायेगा 





Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

जीते जी हर पल मै मरता हु

 Kavita house     10:28     Kavita Sangrah     No comments   

कभी कभी पूछता हु खुदा से ये दिल बनाया क्यों तुमने 
दिल ही बनाया क्यों दर्द को बनाया था 
दर्द ही देना था जो दिल में तुमको 
तो मुहब्बत का आशियाँ क्यों बनाया था 
न बनाते तुम प्यार का ये ताजमहल 
ना ही हम आते कभी इस डगर 
हम तो अनजान थे ये पता ना था 
अंजामे मुहब्बत में दर्द मिलता है सदा 
ना किया होता इसको तो ना हम होते जुदा 
हम भी प्यारे होते उनको ना होते वो खफा 
गर यही होता है इसमें तो ऐसा क्यों होता है 
बार बार हजार बार ये नाजुक, शीशा ए दिल टूटा है 
इसमें 
हाय जब ये चुभन होती है 
दर्द  रह रह कर सजा देता है 
और हर पल हम तडपते है यु ही 
रोते  रहते है यु ही तन्हा हम 
हा अकेले ही अकेले ना कोई साथ होता है 
यही करना था जब अंजाम इसका 
तो क्यों बनाई ये मुहब्बत 
क्यों किया जुदा हमको 
बस यही सवाल करता हु 
बस यही सवाल करता हु 
ऐसे मंझधार में लाके छोड़ा 
जीते जी हर पल मै मरता हु 
 जीते जी हर पल मै मरता हु 
जीते जी हर पल मै मरता हु 
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

सिसक कर आंसू क्यों आ जाते है

 Kavita house     10:16     Kavita Sangrah     No comments   

माथे पे हाथ रखकर हम बैठे है 
उंगलियों से आँखों को सहलाते है 
सिहरन जब होती है थोड़ी सी मुझे 
सिसक कर आंसू क्यों आ जाते है 

आह भरता हु उनको याद कर कर के 
धडकने मद्धम सी हो जाती है 
थोडा घबराता है मन भी मेरा 
सिसक कर आंसू क्यों आ जाते है 

वो चले गये मेरी यादो से 
इक आहट भी ना थी उनके जाने की 
रुकते इक बार तो मै पूछता उनसे
कारण क्या है ना कुछ बताने की 
यही सोच के दिल में घबराते है 
सिसक कर आंसू क्यों आ जाते है 

खता कौनसी हुई है मुझसे ये नही है पता 
हमने तो हर पल ही उनको चाहा था 
आज भी चाहते कल भी चाहेंगे 
बिन मांगे कैसी दी है मुझे बद्दुआ
इसी कसमकस में उलझे जाते है 
सिसक कर आंसू क्यों आ जाते है 




Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

कुसूरवार हु मै तो सजा मुकम्मल करो मेरी गुनाह क़ुबूल है मुझे बार बार मै ये कहता हु

 Kavita house     10:02     Kavita Sangrah     No comments   

कुसूरवार हु मै तो सजा मुकम्मल करो मेरी 
गुनाह क़ुबूल है मुझे बार बार मै ये कहता हु 
क़त्ल करदो मुझे यही खुदा से कहता हु 
दिल से कहता हु बस और बस यही रजा है मेरी 
नही जीना नाही जीते जी मरना है यहाँ
सौख से मारो अगर सुकून है तुम्हे मुझे खंजर 
एक वार नही सौ वार सहने को तैयार हु मै
हर घाव से दूंगा तुझे मै फिर भी दुआ 
तुझसे मुहब्बत करना ही शायद है खता मेरी 
कुसूरवार हु मै तो सजा मुकम्मल करो मेरी 
गुनाह क़ुबूल है मुझे बार बार मै ये कहता हु 


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

जज़्बात

 Kavita house     09:45     Kavita Sangrah     No comments   

क्यों होता है कभी कभी जब हम जीते हुए भी मरना चाहते है, परिस्थतियो के वसीभूत क्यों होते है, क्यों हम एक तपती आग में जलते रहते है, कुछ हमारे जीवन  में ऐसी घटनाये घटित होती है जिनको स्वीकारना और उनका सामना करना बहुत ही मुस्किल होता है ना हम कुछ कह पाते है ना ही कुछ कर पाते है बस और बस उसके बारे में सोच सोच कर अन्दर ही अन्दर घुटते रहते है, हां ये जरूर है की वो एक कल्पना मात्र होती है और उसके दो पहलू होते है ,एक तो वो सच हो सकती है और दुसरे पहलू पर गौर करे तो झूठ भी हो सकता है 
लेकिन ये मात्र और मात्र परिस्थितियों  पर निर्भर करता है वोही हमारी सोच का निर्माण करती है और वो सोच वो कल्पना हमारे उपर हावी होने लगती है ऐसी परिस्थिति में हम कुछ भी सोचने और समझने में सक्षम नही होते है हम वही सोचते है और समझते है जैसा उस समय हम देखना चाहते है 
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 18 September 2014

दिल में है कुछ हलचल कहता है ये मुझसे हरपल

 Kavita house     10:36     Kavita Sangrah     No comments   

दिल में है कुछ हलचल कहता है ये मुझसे हरपल जाने क्या दर्द है सीने में हरपल क्यों बढ़ रही मुस्किल
Something in the heart That tells me always What is the pain in the chest Why always growing adversity

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

हम तो तन्हा ही जियेंगे अब तुम्हारे बिन शायद

 Kavita house     10:34     Kavita Sangrah     No comments   

हम तो तन्हा ही जियेंगे अब तुम्हारे बिन शायद की रोज भूलने की तुमको हम कोशिश जो करते है रोज नाकाम होते रोज बदनाम होते है तेरे मेरे चर्चे तो अब सरे आम होते है रोज खोते है तुमको फिर ख्वाबो में हम पा जाते हैतेरे रास्तो को भूल कर तेरे घर तक आ जाते है

We'll live only so lonely without you, perhaps now When the day is that we try to forget , Are notoriously fail every day You are my posts so now publicly If you are unable to then we lose everyday dreams Forgetting your paths have come to your house

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

 Kavita house     10:33     Kavita Sangrah     No comments   

हर बार अपनी कोशिशो में नाकाम हो जाते है 

तुझको खोते खोते तुझको हम पा जाते है




Every time his attempted failed to become If 

we are unable to lose myself

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

जो देखना चाहू तुमको मै तो ओझल हो जाते हो

 Kavita house     10:31     Kavita Sangrah     No comments   

जो देखना चाहू तुमको मै तो ओझल हो जाते हो जो पास आऊ तेरे मै तो गुम से हो जाते हो जो जाऊ दूर तुझसे मै तो मेरे ख्वाबो में आते हो मै बताऊ क्या दिल का हाल जाने क्या क्या गज़ब ढाते हो I'd like to see what you get then disappeared So I come to you from those who get lost So off I go to you who have come into my dreams I tell you the condition of the heart What is amazing to Date

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

मै टूट कर जिसके लिए रोया

 Kavita house     10:30     Kavita Sangrah     No comments   

मै टूट कर जिसके लिए रोया उसने इक बार ना पुछा की दिल को क्यों तडपाते हो वो जिसके लिए मैंने सब कुछ था खोया उसने इक बार ना पुछा की तुम क्यों चले जाते हो की दिल को क्यों तड़पाते हो अधूरा था अधूरा हु न पूरा था ना पूरा हु 
मैंने भी उनसे ये पुछा ख्वाब बनके तुम क्यों आते हो की दिल को क्यों तड़पाते 

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

क्यों तीर जैसे चुभते है तेरे हर शब्द मुझको

 Kavita house     10:28     Kavita Sangrah     No comments   

क्यों तीर जैसे चुभते है तेरे हर शब्द मुझको 
क्या मै ही आजमाने के लिए मिला हु तुझको ऐ जिन्दगी 
क्यों शूल से लगते है दिल पे मेरे सनम
आंसू नही आते सारे  तूफ़ान मद्धम है फिर भी 
दिल में हलचल सी क्यों होती है 
मन है भारी भारी शब्द कुछ है नही जुबा पे 
तेरे लम्हों में रहने की फिर है थोड़ी गुजारिस 
है इल्तजा मेरी तेरे संग मै रहू कुछ पल 
कुछ भी कहे तू लेकिन तेरा हर दर्द सहू हर पल 
तू वफा करे या जफ़ा करे मुझसे 
मै रुक्सत हु इस जहा से तो तेरा होकर  मरू



Your every word is like me pointedly why arrow I only got to try the myself,oh my life Why does seem to spike in my heart oh my life Yet all is not covered Storms tear Slow Why would stir the heart There's no word on heavy heavy mind ,i wish that you have to stay in the little moments in my heart I am with you some of my live that moment Some even say thou but thine every pain, every moment Shu love you close to me or hate me Thy through the desert from where I've been die

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, 15 September 2014

tujhme fnaa hoon

 Kavita house     11:17     Kavita Sangrah     No comments   

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 13 September 2014

AUDIO SONG TUJHME FNAA HU

 Kavita house     10:25     Comedy Videos     No comments   

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

tujhme fnaa hoon

 Kavita house     08:17     Comedy Videos     No comments   

dear all my frnds this is my first audio song
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, 11 September 2014

हाल ए दिल

 Kavita house     10:32     Kavita Sangrah     No comments   

कभी कभी हमारे जीवन में कुछ ऐसी घटनाये घटित हो जाती है जिनके बारे में न दिल ने कभी सोचा होता है ना ही उन्हें समझने की हिम्मत ही होती है उसके अन्दर कुछ ऐसी उथल पुथल मच जाती है ये देखकर की वो सोचने और समझने की स्थिति में नही होता है जैसे सीसे की तरह कई अनगिनत टुकड़े हो जाते है और वो जब एक एक करके हमे दिलो में चुभते है तो हाय वो दर्द बहुत ही असहनीय होता है पर ये निर्मम लोग जिन्हें दया क्षमा प्यार इन सबसे कोई लेना देना ही नही होता है वो क्या जाने वो क्या समझेंगे इस दर्द को पर मई अपने इस दिल का क्या करू  जो असहनीय पीड़ा से गुजर रहा है ना आह निकल पा रही है नाही जिया जा रहा है नाही मौत आ रही है और नाही कुछ और उपाय नजर आ रहा है बस और बस उप्प्रे वाले से यही दुआ कर रहा हु की ऐसा दर्द दुश्मन को भी न दो 

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

हर गम से अनजान क्यों होता है ये दिल इतना नादाँन क्यों होता है

 Kavita house     09:54     Kavita Sangrah     No comments   

ये दिल इतना नादाँन क्यों होता है हर गम से अनजान क्यों होता है होता है बहुत ही नाजुक कुछ सीसे की तरहा टूटने में वक़्त ही नही लगता लेकिन जुड़ने में सदिया  कम पड जाती है फिरभी  ये इतना महान क्यों होता है ये दिल इतना नादाँन क्यों होता है हर गम से अनजान क्यों होता है जाने कितने दर्द सहता है फिर भी ये ना कुछ कहता है रोता रहता है मन ही मन में हर गम से अनजान क्यों होता है ये दिल इतना नादाँन क्यों होता है 






Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

कभी कभी बेकसूर होते हुए भी हम कुसूर वार बन जाते है कुछ भी नही किया होता है लेकिन गुनहगार बन जाते है

 Kavita house     05:21     Kavita Sangrah     No comments   

कभी कभी बेकसूर होते हुए भी हम कुसूर वार बन जाते है कुछ भी नही किया होता है लेकिन गुनहगार बन जाते है गुनाहे अंजीम के हकदार बन जाते है तेरे ना होने पर लाचार हो जाते हैक्या आधार है इस जीवन का निराशाओ की सीमा है क्या क्या दो आँखे होने पर भी लोग एक आँख से देखने पर विवस है चाहे किसी का जीवन तहस नहस हो जाये वो गन्दी मानसिकता के जैसे सिकार हो जाते है और अपनी बुरी आदतों से लाचार हो जाते है एक अछूत बीमारी का शिकार हो जाते है दुखो के जैसे लाखो पहाड़ बन जाते है फिर भी हम हर कुछ सहने को तैयार हो जाते है कभी कभी बेकसूर होते हुए भी हम कुसूर वार बन जाते है कुछ भी नही किया होता है लेकिन गुनहगार बन जाते है

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg
Newer Posts Older Posts Home

Ad


Jobsmag.inIndian Education BlogThingsGuide

Subscribe

Do you want fresh and hot updates about us? Then subscribe to our Feeds.

Total Pageviews

Popular Posts

  • Write a program in PL/SQL to print the factorial of a number.
    In this post I will explain how to get the factorial of any given number. For that first you need to know what is the procedure to find ...
  • To find the GCD of two numbers in PROLOG.
    gcd(X,Y):-X=Y,write('GCD of two numbers is '),write(X); X=0,write('GCD of two numbers is '),write(Y); Y=0,write('G...
  • Write a PL/SQL code to get the Fibonacci Sequence
    First, I will explain what is Fibonacci Sequence and how to get this series. So, Fibonacci Sequence is a series of numbers 0,1,1,2,3,5,8,1...

Label

All Articles Best Resources Blogging Boost Traffic Bootstrap C Plus Plus Collection Comedy Comedy Posts Comedy Videos Concurrency creative commons website Education Employee Entertainment Fibonacci Sequence free images GirlFriend Hinglish Cafe How To Image Websites Inspirational Java Java Interview Questions Java Networking Kavita Sangrah Life Lock Sreen Love Number System Patterns Perl Picture PL/SQL Plastic Engineering Programming Prolog public domain SEO Servlet Short Story Shortcut Keys Social Media Social Services SQL SuVichar Thread Traffic True Events Ultimate Guide Windows Tricks Windows8.1 WordPress

Blog Archive

  • ►  2020 (43)
    • ►  September (41)
    • ►  August (2)
  • ►  2019 (1)
    • ►  July (1)
  • ►  2018 (9)
    • ►  September (7)
    • ►  July (1)
    • ►  May (1)
  • ►  2017 (8)
    • ►  June (3)
    • ►  May (3)
    • ►  March (1)
    • ►  January (1)
  • ►  2016 (2)
    • ►  September (1)
    • ►  January (1)
  • ►  2015 (91)
    • ►  December (1)
    • ►  November (1)
    • ►  October (6)
    • ►  May (10)
    • ►  March (20)
    • ►  February (50)
    • ►  January (3)
  • ▼  2014 (339)
    • ►  December (1)
    • ►  October (55)
    • ▼  September (58)
      • ArrayList in Java
      • Exception Handling in Java
      • Exception handling in Java
      • Inheritance in Java
      • Exceptions in Java
      • Exception in Java
      • NegativeException in Java
      • NullPointer Exception in Java
      • ArrayIndexOutOfBoundException in java
      • Arithmetic Exception in Java
      • Exception Handling in java
      • Enumeration in Switch in Java
      • Advance Enumeration in java
      • Encapsulation in java
      • Basics of Encapsulation in java
      • String Manipulation in Java
      • Converting byte array to string
      • String methods in java
      • Different ways to concatenate a string in java
      • String Concatenation in java
      • Java Programming Questions
      • Various String Methods in java
      • Basics of Classes and Objects in java
      • Creating Array of Objects in java
      • कतरा कतरा बह के सब थम जायेगा
      • जीते जी हर पल मै मरता हु
      • सिसक कर आंसू क्यों आ जाते है
      • कुसूरवार हु मै तो सजा मुकम्मल करो मेरी गुनाह क़ुबू...
      • जज़्बात
      • दिल में है कुछ हलचल कहता है ये मुझसे हरपल
      • हम तो तन्हा ही जियेंगे अब तुम्हारे बिन शायद
      • हर बार अपनी कोशिशो में नाकाम हो जाते है  तुझको खो...
      • जो देखना चाहू तुमको मै तो ओझल हो जाते हो
      • मै टूट कर जिसके लिए रोया
      • क्यों तीर जैसे चुभते है तेरे हर शब्द मुझको
      • tujhme fnaa hoon
      • AUDIO SONG TUJHME FNAA HU
      • tujhme fnaa hoon
      • हाल ए दिल
      • हर गम से अनजान क्यों होता है ये दिल इतना नादाँन क...
      • कभी कभी बेकसूर होते हुए भी हम कुसूर वार बन जाते है...
      • जमाना कितना जालिम है हम इसकी हद को देखेंगे
      • मिल जाए मुझे भी कोई नीली छ्तरिवाला जिसके गले ...
      • बस और बस मै उसे देखता रहूँगा
      • हम डूबे हुए थे तेरी खातिर मझधार में फिर भी की आवाज...
      • हा दिल बेचैन है तुम बिन कही ना चैन है तुम बिन
      • वो तेरे सुर्ख लबो की कहानी याद आती है हा वो बीते ...
      • प्रभु मुझे इतना भोला बना दो  की मै भोले का दीवा...
      • यादे
      • जो रोलु चैन आता है मन हल्का हो जाता है मुस्कराहट...
      • ए मेरी सखी क्यों भई बावरीमै रहता हु हर पल तेरे स...
      • जो अलविदा कह दिया तो तुमसे बिछड़ जाऊंगा
      • तडपना कैसा होता है ये हम तुमको बतायेंगे
      • व्यंग्य
      • वो मेरे गुसुदगी की रपट लिखा आये
      • गमो में चूर करके तुम सीसे सा तोड़ करके तुम गये मु...
      • एक सवाल
      • सुविचार
    • ►  August (94)
    • ►  July (64)
    • ►  June (67)
  • ►  2013 (34)
    • ►  August (5)
    • ►  April (29)
  • ►  2012 (20)
    • ►  November (1)
    • ►  October (15)
    • ►  September (4)

Author

  • Earthcare Foundation NGO
  • Kavita house
  • Unknown
  • Unknown

Info

Copyright © Hub Of Geekz | Powered by Blogger
Design by Hardeep Asrani | Blogger Theme by NewBloggerThemes.com | Distributed By Gooyaabi Templates