Code Snippets Interview Questions
Questions Answers Views Company eMail

How many digit have a Polaris 1995 300c.c. 2x4 nad how many have a Polaris 2007 300 c.c 2x4? And what site I can check this information???

FlashTECH,

2229

what is virtual constroctor ? give an exam for it?-(parimal dhimmar)

2 5481

how to take time as input in the format (12:02:13) from user so that controls remains between these columns?

1800

Write a routine to implement the polymarker function

TCS,

4367

Write a procedure to implement highlight as a blinking operation

2 10189

Design an implement of the inputs functions for event mode

Wipro,

2948

Write a program to model an exploding firecracker in the xy plane using a particle system

HCL,

3676

Develop a routine to reflect an object about an arbitrarily selected plane

2974

Extend the sutherland-hodgman clipping algorithm to clip three-dimensional planes against a regular paralleiepiped

IBM,

1 5409

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

IBM,

3012

Given a spherical surface, write bump-mapping procedure to generate the bumpy surface of an orange

2849

Derive expression for converting RGB color parameters to HSV values

1 7180

Write a program to implement the motion of a bouncing ball using a downward gravitational force and a ground-plane friction force. Initially the ball is to be projected in to space with a given velocity vector

2 12316

What is the code of Password Recovery or Forget your password? Plz tell in c # language.

3555

How to update and insert from datagridview at run time in excel database?

2752


Un-Answered Questions { Code Snippets }

How a web page can communicate with a web server while a user type characters in an input field.

1054


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

2349


how to create an anonymous function

1719


Write code that allows to create only one instance of a class?

482


plzzzzzzzzz xplain this code import java.awt.*; import java.awt.event.*; //import java.awt.MenuItem.*; public class MenuForm extends Frame implements ActionListener { MenuBar mb=new MenuBar(); Menu m1=new Menu("Master"); Menu m2 =new Menu("Transactions"); Menu m3=new Menu("Queries"); Menu m4=new Menu("Reports"); Menu m5=new Menu("Daily/Weekly"); Menu m6=new Menu("Housekeeping"); Menu m7=new Menu("About"); Menu m8=new Menu("Utilities/Tools"); Menu m9=new Menu("exit"); MenuItem m11=new MenuItem("consumer master"); MenuItem m12=new MenuItem(""); MenuItem m13=new MenuItem(""); MenuItem m21=new MenuItem("New Connection"); MenuItem m22=new MenuItem("Refill Booking"); MenuItem m23=new MenuItem("Shop Delivery"); MenuItem m51=new MenuItem("Mrk Dlry"); MenuItem m91=new MenuItem("Quit"); /*MenuItem m131=new MenuItem(" "); MenuItem m132=new MenuItem(" "); MenuItem m134=new MenuItem(" ");*/ Font f=new Font("TimesRoman",Font.BOLD,16); Frame f1; public static void main(String args[]) { new MenuForm().setVisible(true); } public MenuForm() { super("Gas Agency Main Menu"); setSize(1280,800); setBackground(Color.lightGray); setLayout(null); setMenuBar(mb); /*m1.setFont(new Font("TimesRoman", Font.BOLD,16)); m2.setFont(new Font("TimesRoman", Font.BOLD,16)); m3.setFont(new Font("TimesRoman", Font.BOLD,16));*/ mb.add(m1); mb.add(m2); mb.add(m3); mb.add(m4); mb.add(m5); mb.add(m6); mb.add(m7); mb.add(m8); mb.add(m9); m1.add(m11); m1.add(m12); m1.add(m13); m2.add(m21); m2.add(m22); m2.add(m23); m5.add(m51); m9.add(m91); //m3.add(m31); /*m13.setEnabled(false); m13.add(m131); m13.add(m132); m13.add(m133); m13.add(m134); m13.add(m135);*/ setVisible(true); /*m11.addActionListener(this); m12.addActionListener(this); m13.addActionListener(this); m2.addActionListener(this); m3.addActionListener(this);*/ m21.addActionListener(this); m22.addActionListener(this); m23.addActionListener(this); /*m31.addActionListener(this); m131.addActionListener(this); m132.addActionListener(this); m133.addActionListener(this); m134.addActionListener(this); m135.addActionListener(this);*/ m51.addActionListener(this); m91.addActionListener(this); } public void actionPerformed(ActionEvent e) { /*if(e.getSource()==m11) { } if(e.getSource()==m12) { } if( (e.getSource()==m131) || (e.getSource() ==m132) || (e.getSource()==m133) || (e.getSource()==m134) || (e.getSource()==m135) ) { }*/ if(e.getSource()==m21) { NewConnection nc=new NewConnection (); nc.setVisible(true); this.dispose(); } if(e.getSource()==m22) { RefillBooking rb=new RefillBooking (); rb.setVisible(true); this.dispose(); } if(e.getSource()==m23) { ShopDelivery sd=new ShopDelivery(); sd.setVisible(true); this.dispose(); } if(e.getSource()==m51) { MarkDelivery mrk=new MarkDelivery(); mrk.setVisible (true); this.dispose(); } if(e.getSource()==m91) { this.dispose(); System.exit(0); } } }

1654






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

463


Write a function that takes an array of integers and efficiently calculates and returns the Least Common Multiply in python.

1226


Please give me the vb.net codes for deadlock(like detecting,& avoiding) in any version of vb.net.

3157


How to check if Folder is a Special Shell Folder ?

490


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.

4155


What is the functionality of GetWindowText?

542


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++

539


What are the basic rules while writing XML?

318


Given a string=”me,I,myself”; .Using javascript only create an array out of this string and then send a POST request to the url “record.php” without reloading the page. The post key parameters should be n1,n2 and n3 respectively.

2350


What is CDATA?

354