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

Why should we catch super class exceptions?

1 2967

What is difference between J2SE,J2EE and J2ME?

2 10087

What is preverifier?

1 3389

What are basics Software's for J2ME applications?

1 3012

Explain MIDlet Life cycle?

2781

What hardware and software requirements of a device that intends to implement the MIDP.

1 3169

List some Property Supported by J2ME?

1 3076

Explain Virtual Machine for J2ME?

1 3284

What is minimum hardware and Software requirements for J2ME?

1 3865

Will J2ME applications run on J2SE?

1 3250

Will J2SE applications run on J2ME?If Not Why?

ASD Lab,

1 3665

What is Generic" J2ME architecture?

2239

What are disadvantage of J2ME?

1 4643

What are advantages of J2ME?

1 3663

Why we use J2ME?

1 3821


Un-Answered Questions { Code Snippets }

how to pass data between pages using Frames

2728


Code for Creating a Form Using PlaceHolder Controls?

2837


Coding for .NET Delegates?

2573


how to get the User's Time of Day

2133


Write a simple encryption program using string function which apply the substitution method.

6135


an on-line examination application using html jsp servlet and jdbc. including session management and cookies

4880


advance the focus to next consecutive fields when Enter Key is pressed

2260


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


Write a function which accepts list of nouns as input parameter and return the same list in the plural form. Conditions: i) if last letter is r then append s ii) if word ends with y then replace it by ies iii) call this function in main() and produce the required output. for eg:- if chair is input it should give chairs as output.

4471


Cluster head selection in Wireless Sensor Network using C programming language.

3762


Who is responsible for XML?

608


Can you write a program to find the average of numbers in a list in python?

832


What is an XML Schema?

636


could you please send the program code for multiplying sparse matrix in c????

3594


how to remove or delete multiple selected items from listbox in on button click in asp?

643