can we take more than one null values for Unique
constraints.
Answer Posted / aaa
Yes we can...
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is a final class in java?
Does treeset allow null in java?
Why do we use return statement?
What is jit and its use?
How to compare two strings in java program?
What is the output of the below java program?
How to perform selection sort in java?
Why main() method is public, static and void in java ?
Draw a UML class diagram for the code fragment given below: public class StringApplet extends Applet { private Label sampleString; private Button showTheString; private ButtonHandler bHandler; private FlowLayout layout; public StringApplet() { sampleString = new Label(" "); showTheString = new Button (" Show the String"); bHandler = new ButtonHandler(); layout = new FlowLayout(); showTheString.addActionListener(bHandler); setLayout(layout); add(sampleString); add(showTheString); } class ButtonHandler implements ActionListener { public void actionPerformed(ActionEvent e) { samplestring.setText("Good Morning"); } } } Note: The methods need not be indicated on the diagram.
What do you mean by aggregation?
Write a program to find the whether a number is an Armstrong number or not?
What is the buffer limit?
Why does java not allow multiple public classes in a java file ?
Explain the JDB in depth & command line.
What is the differences between c++ and java? Explain