difference between java ,c#&java,c++

Answer Posted / jagdisg prajapati

java is a pure object oriented language because all
applications are created inside the class in java. We can
not create structure in java but structure are created in c++.

Is This Answer Correct ?    7 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we serialize static variables in java?

667


What is functional interface in java?

522


Write a regular expression to validate a password. A password must start with an alphabet and followed by alphanumeric characters; its length must be in between 8 to 20.

604


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.

1596


What is java reflection api?

562






What is the difference between an object-oriented programming language and object-based programming language?

581


What is java dot?

503


Why can't we make a class private in java?

543


What is function and method in java?

529


What is meant by final class?

577


Is node a data type in java?

510


Is main an identifier?

553


What is passing value java?

517


Is there any difference between nested classes and inner classes?

550


What is difference between wait and notify in java?

551