Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...



Code Snippets Interview Questions
Questions Answers Views Company eMail

How do you test for file properties in shell scripts?

1 3022

How do you do Boolean logic operators in shell scripting?

1 2675

How do you find out the number of arguments passed to the shell script?

1 2859

What’s a way to do multilevel if-else’s in shell scripting?

1 2690

How do you write a for loop in shell?

1 2705

How do you find out the current directory you’re in?

1 2869

What’s the command to find out users on the system?

1 2518

What’s the command to find out today’s date?

1 2768

How do you stop a process?

1 2662

How do you find out about all running processes?

1 2713

How do you stop all the processes, except the shell window?

1 2941

How do you define a function in a shell script?

1 2486

How do you read keyboard input in shell scripts?

1 3114

How does a case statement look in shell scripts?

1 2733

Consider the following markup:

London by night
A landscape of London by night
Is it valid? If not, can you explain why?

1 8238


Un-Answered Questions { Code Snippets }

What is the difference between proc means and proc tabulate ? explain with a simple example when you have to use means or tabulate?

4543


#include int main(void) { int a=4, b=2; a=b<>2 ; printf("%d",a); return 0; }

1652


Can Any one suggest how we connect QTP and Mainframe and do validation from Mainfram screen

2335


3. Program to find the Sum of give series. a. (1)+(1+2)+(1+2+3)+(1+2+3+4)+……………………………….. b. 1/1+1/9+1/25+1/49+……………...

4955


Code for Presenting Parent/Child Data in a Data Grid Row?

2562


write a program that reads a series of strings and prints only those strings begging with letter "b"

3130


How can export database using php code?

2015


plz send code for feature rich resume builder in j2ee frontend:J2EE Backend: DB2 Express

3669


Write a program to find sum of the digits of a number in python?

875


plzzzzzzzzz xplain this code import java.awt.*; import java.awt.event.*; public class Agency extends Frame implements ActionListener { Label l1,l2,l3,l4; Button b1; TextField t1,t2; String s1,s2,s3,s4; public static void main(String args[]) { new Agency().setVisible(true); } public Agency() { super("Gas Agency Package"); setSize(1280,800); setBackground(Color.lightGray); setLayout(null); // setLayout(new BorderLayout()); t1=new TextField(20); t1.setBounds(440,150,200,30); t1.setBackground(Color.white); t2=new TextField(20); t2.setBounds(440,180,200,30); t2.setBackground(Color.white); t2.setEchoChar('*'); l1=new Label("Gas Agency Package"); l1.setBounds(400,30,300,50); l1.setFont(new Font("TimesRoman",Font.BOLD,25)); l1.setAlignment(Label.CENTER); l2=new Label("Enter your ID and Passoword"); l2.setFont(new Font("TimesRoman",Font.BOLD,20)); l2.setBounds(270,80,300,50); l3=new Label("Enter ID"); l2.setFont(new Font ("TimesRoman",Font.BOLD,20)); l3.setBounds(270,150,120,50); l4=new Label("Enter Passoword"); l2.setFont(new Font ("TimesRoman",Font.BOLD,20)); l4.setBounds(270,180,140,50); add(l1); add(l2); add(l3); add(t1); add(l4); add(t2); b1=new Button("Login"); b1.setBackground(Color.white); b1.setBounds(400,280,100,70); b1.addActionListener(this); add(b1); } public void actionPerformed(ActionEvent e) { if(e.getSource()==b1) { s3="svce"; s4="svce"; s1=t1.getText(); s2=t2.getText(); if(s1.equals(s3) && s2.equals(s4)) { //System.out.println("password is correct"); MenuForm m= new MenuForm(); m.setVisible(true); //this.dispose(); } else { System.out.println("password not correct"); } this.dispose(); } } } plzzzzzzzzz xplain this code

1920


Is there any static classes are in java give some examples

2138


What is the best way to make wordpress plugin

3098


Question 1: Implement a base class Appointment and derived classes Onetime, Daily, Weekly, and Monthly. An appointment has a description (for example, “see the dentist”) and a date and time. Write a virtual function occurs_on(int year, int month, int day) that checks whether the appointment occurs on that date. For example, for a monthly appointment, you must check whether the day of the month matches. Then fill a vector of Appointment* with a mixture of appointments. Have the user enter a date and print out all appointments that happen on that date. *This Should Be Done IN C++

1189


write a code to generate pseudorandom numbes

2371


Explain MIDlet Life cycle?

2781