Code Snippets Interview Questions
Questions Answers Views Company eMail

plz send code for manage group of hotels in j2ee frontend:J2EE Backend: DB2 Express

TCS,

2624

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

Satyam,

3399

plz send code for Ecorps in j2ee frontend:J2EE Backend: DB2 Express

IBM,

2551

find level of following tree (state, parent) " J,D I,D H,C E,B F,B G,C B,A D,A C,A A,& K,E L,E L,F M,F N,G O,H P,I P,H Q,I R,J S,K U,P T,L

2210

Write a program to print a square of size 5 by using the character S.

Microsoft,

6 23409

how to track links visited in google using iframes

2445

Can we run Applet in Web browser with security policy files

2303

how to get the table names via c sharp and column names also?

Sify,

2 5328

Predict the Output: int main() { int *p=(int *)2000; scanf("%d",2000); printf("%d",*p); return 0; } if input is 20 ,what will be print

2 5618

Write a C program to add two numbers before the main function is called.

Infotech, TC,

11 21349

Write Down Steps Using SAX Parser

2343

Write Down Steps Using SAX Parser

IBM,

1 5112

how to make a software for a game ?

Cipla,

1 3254

how to create a search bar which access data from various websites and retrieves the data

2720

write a c-program to find gcd using recursive functions

HTC, Infotech,

5 15632


Un-Answered Questions { Code Snippets }

Write a program that will convert an integer pointer to an integer and vice-versa.

668


how to test pierrot divisor

2457


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

3276


i don't know about working of nested for loop can any one help me

1999


What is a valid XML document?

439






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(); } } } plzzzzzzz xplain me this java code like why i m including this packages n the whole code plzzzzzz

2180


Write a program to Print the Pascal triangle

644


1.Explain what happens to a session object when the browser associated with it is closed? 2.Explain how a session object is created and used. (Note: you are not required to provide the Java statements such as ‘getAttribute’)

2189


Create a program to read two random data set in two files named data1.txt and data2.txt manifold contains integer numbers, whereas data2.txt file contains the float type numbers. Simpanlahmasing each into 2 pieces of data that is an array of type integer array and an array of type float, then calculate the average numbers in the second array.

2359


What is a markup language?

463


Code for IP Address Comparison and Conversion in C#?

4158


Write a python program to swap the first and last value of a list?

671


In java, why do we set thread priority, when we know that there is no guarantee by which a thread should be execute?

2391


What is the coding about how to recognize color in fuzzy logic using Matlab R2009b?

1710


1+1/2!+1/3!+...+1/n!

2144