Code Snippets Interview Questions
Questions Answers Views Company eMail

Write a python program to check if a number is a strong number?

559

What is the output, suppose list1 is [1, 3, 2], what is list1 * 2 ?

1105

Write a python program to check if a number is a prime number?

579

Write a python program to check if a number is a perfect number?

643

Write a python program to print table of a given number?

577

Write a python program to check if a number is an armstrong number?

557

Write a python program to find the second largest number in a list?

590

Write a python program to check if a string is a palindrome or not?

608

How do you set a global variable inside a function?

548

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

593

Write a python program to count the number of vowels in a string?

598

Write a python program to check if a number is a palindrome or not?

559

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

569

Write a python program to count the number of digits in a number?

610

int a=1; printf("%d %d %d",a++,a++,a); need o/p in 'c' and what explanation too

1 1414


Un-Answered Questions { Code Snippets }

write a program to convert temperature from fa height into celcius and vise versa,use modular programming

2617


How can restrict user to type upto 8 characters in textbox in php?

1675


write a java program to create a Frame with three scrolls, change the back ground color of the frame using functions with values of scrolls.

4334


Code for Adding Scripting Support to an Application?

1380


Which framework is best in php among Smarty, Cakephp, Joomla, Drupal, Zend or Something else...? If any then Why?

8293






can you please write a program for deadlock that can detect deadlock and to prevent deadlock.

2893


Write a function to efficiently convert a floating point number to a rational number. For example, given 0.125 return "1/8"

1287


i am trying to intigrate ejb and hibernate ,from session facade i am callind dao implemented through hibernate,i am getting a ClassDefNotFoundException for this org/hibernate/Session i ve set the class path at build path and in setEnv in weblogic still .........

2125


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

2161


How can I create connection two blue-tooth mobile in j2me. please urgent

2022


Write a program that implements a date class containing day, month and year as data members. Implement assignment operator and copy constructor in this class.

663


i have some csv files in a directory which have sub-directories also. now how can i merge all .csv files in to one with a single header. for example: have some 4 files. 1.csv--------name,age,sal abc,25,4000 2.csv--------name,age,sal vgd,32,3500 3.csv--------name,age,sal hfg,20,5000 4.csv--------name,age,sal asd,15,2000 now my output file should be like 5.csv----------name,age,sal abc,25,4000 vgd,32,3500 hfg,20,5000 asd,15,2000 and please explain the code for me. as i am new to scripting. thank you in advance

1521


Set up procedure for generating a wire frame display of a polyhedron with the hidden edges of the object drawn with dashed lines

3195


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

2530


How to change winform look?

2450