Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~363 People Reached
Favorite Forums
Favorite Tags
Member Avatar for learner15

If the class members declared public and the class itself is specified as default access ( Package access), then can the public members of that class be used in another package? I am asking this because .. as far i know class which is not specified as public cannot be …

Member Avatar for NormR1
0
188
Member Avatar for learner15

Is it possible to open a modem and change its hardware in such a way to know all my internet activities and also is it possible to manipulate the my downloads by injecting some malicious objects or by changing my donwload contents.

Member Avatar for caperjack
0
77
Member Avatar for learner15

[CODE]import java.awt.*; import java.awt.event.*; import java.applet.*; /*<applet code="actionapplet" width=500 height=600></applet>*/ public class actionapplet extends Applet implements ActionListener{ String msg,str; Button b1,b2,b3; public void init(){ b1=new Button("substract"); b2=new Button("add"); add(b1); add(b2); b1.addActionListener(this); b2.addActionListener(this); } public void actionPerformed(ActionEvent ae) { str=ae.getActionCommand(); if(str.equals("add")) msg="addition is to be performed"; if(str.equals("substract")) msg="subtraction is to be …

Member Avatar for NormR1
0
98