Programming Code Interview Questions
Questions Answers Views Company eMail

Coding for using Nullable Types in C#?

1 4955

Coding for Manipulate XML File Data Using C#?

1 7908

Code for Creating a Form Using PlaceHolder Controls?

Arena, JSA,

2343

How to get Dynamically Linked Comboboxes Set?

HCL,

2025

How to Snap the Cursor to a Button?

1 3161

How to use Client-side Script to Focus Controls in ASP.NET?

2358

Give coding for Implementing a Fixed GridView Header in ASP.NET?

1 8048

How to Create Scrollable Micro Windows?

2 4205

Coding for Synchronizing Cache Access in ASP.NET?

3120

How to Export Data to Excel?

Eastcom Systems,

4 9109

Give coding for Exception Handling Techniques in ASP.NET?

Microsoft,

3 8620

Coding for .NET Delegates?

2092

Code for IP Address Comparison and Conversion in C#?

3990

Code for Sending E-Mail with System.Web.Mail?

2 6645

Code for Getting Information About A File?

1 4506


Un-Answered Questions { Programming Code }

Design a timer circuit using VHDL which has the following: input : start_timer(ST) output: long_time(LT) short_time(ST) when the timer is triggered by the ST(either 0 or 1) signal the timer should generate two timing signals accordingly.While the long time is going ON the other should be OFF and vice versa.

2097


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’)

1981


Do you think about CMM(Capability Maturity Model) process?

592


Code for Using Keyboard Events?

2130


how to programme using switch statements and fuctions, a programme that will output two even numbers, two odd numbers and two prime numbers of the users chioce.

2136






Devise a program to implement the Fibonacci sequence.

534


find out the list of users who have access to all t-codes starts with 'SU'? thanks in advance all.

2019


How to get the version(major,minor,revision ) of VB6.0 delphi code .I am able to fetch dll file of vb6.0 but not vba file .Can u send me the code snippet in delphi to get the value for vb6.0.

3450


Code for Creating a Form Using PlaceHolder Controls?

2343


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

2066


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.

2142


How to add a value from textBox over an existing certain column in SQL Server

2253


How to use Client-side Script to Focus Controls in ASP.NET?

2358


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

1549


Write a Program to find the sum of digits of a given number until the sum becomes a single digit.

516