Cell Phones Logo

Related Topics:

Posted on Nov 10, 2009
Answered by a Fixya Expert

Trustworthy Expert Solutions

At Fixya.com, our trusted experts are meticulously vetted and possess extensive experience in their respective fields. Backed by a community of knowledgeable professionals, our platform ensures that the solutions provided are thoroughly researched and validated.

View Our Top Experts

Need to add an earth (ground) symbol int word document

1 Answer

Anonymous

Level 3:

An expert who has achieved level 3 by getting 1000 points

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

President:

An expert whose answer got voted for 500 times.

  • Master 995 Answers
  • Posted on Nov 10, 2009
Anonymous
Master
Level 3:

An expert who has achieved level 3 by getting 1000 points

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

President:

An expert whose answer got voted for 500 times.

Joined: Oct 23, 2009
Answers
995
Questions
1
Helped
293872
Points
3215

Insert a an earth ground picture.

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

Related Questions:

5helpful
3answers

Will it hurt anything if I add a ground wire from my alternator to the chassis on my 2000 lincoln ls?

no. as long as you ground it by a mounting bolt. Might be pointless though. For your alternator is already grounded to the chassis. the alternator is grounded directly to the engine, the engine is grounded to the chassis. therefore your alternator is grounded already to the chassis.
0helpful
1answer
0helpful
2answers

I need wire colors for CB microphone its a TRC

ALTAI PWR MIC - black/braid= earth, red=RX, white=TX, Yellow=MODASTATIC - blue/braid=earth, black=RX, red=TX, white=MOD, Yellow=Spare
SIRTEL ECHO MIC CBE 2002 - black/braid=earth, blue=TX, white=RX, red=MOD007 POWER MIC - brown/braid=earth, green=RX, white=TX, blue=MODSADELTA EC 980 - braid=earth, green=RX, brn=TX, white=MOD
or braid=earth, black=RX, blue=TX, white=MOD
1helpful
3answers

1996 ford ranger wipers wont work fuse ok,new wiper motor,new switch, new relays. what else is there?

Do you have int wipers? If so check the int module its under the dash right side of the steering column I believe. Specifically check the solder joints.
0helpful
1answer

Dear Sir , If you start copying a Class 10 / 11

I understand the pain and how difficult it is to work on a science document!!!!!!!!!!!!
By the way if you are using the office suite applications such as Word 2007 or word 2010, you can insert the symbols easily.
To insert a symbol or special character into your document, follow these steps in Word 2007:
1. Position the cursor where you would like to insert the symbol or character
2. Open the Insert ribbon
3. Click Symbol in the Symbol section
4. A menu will appear with a small selection of symbols
5. If you don't see the symbol or character you'd like to insert, click More Symbols
6. Use the controls to select between symbols and special characters. Additional tools on the symbols tab will help you expand or narrow your selection
7. When you find your symbol or special character, click it and then click Insert
8. When you're done, click Close
The symbol or special character will appear at the appropriate place in your document.
Hope this helps!!!

Well, I am helpless regarding developing a keyboard with all those scientific symbols,.LOL
W
0helpful
1answer
1helpful
1answer

I'm replecing the power cord on my Kenmore

The earth wire ( ground) is only used to earth metals on/in the appliance.
If the appliance is double insulated ( I suspect it is ) you can safely cut off the ground wire.
You can identify the system used by 2 squares symbol, one inside the other which means its double insulated
0helpful
1answer

I need a complete workingsource code written in

This is a simple source code for Simple calculator in Java using RMI
//mathServer//
import java.rmi.*;
import java.rmi.Naming.*;
import java.rmi.server.*;
import java.rmi.registry.*;
import java.net.*;
import java.util.*;
interface mathInterface extends Remote
{
public int add(int a,int b) throws RemoteException;
public int subt(int a,int b) throws RemoteException;
public int mult(int a,int b) throws RemoteException;
public int div(int a,int b) throws RemoteException;
}
public class mathServer extends UnicastRemoteObject implements
mathInterface
{
public mathServer() throws RemoteException
{
System.out.println("Initializing Server");
}
public int add(int a,int b)
{
return(a+b);
}
public int subt(int a,int b)
{
return(a-b);
}
public int mult(int a,int b)
{
return(a*b);
}
public int div(int a,int b)
{
return(a/b);
}
public static void main(String args[])
{
try
{
mathServer ms=new mathServer();
java.rmi.Naming.rebind("MathServ",ms);
System.out.println("Server Ready");
}
catch(RemoteException RE)
{
System.out.println("Remote Server Error:"+ RE.getMessage());
System.exit(0);
}
catch(MalformedURLException ME)
{
System.out.println("Invalid URL!!");
}
}
}

//mathClient//
import java.rmi.*;
import java.rmi.registry.*;
import java.awt.*;
import java.awt.event.*;
public class mathClient extends Frame implements ActionListener
{
Button B1=new Button("Sum");
Button B2=new Button("Subtract");
Button B3=new Button("Multiply");
Button B4=new Button("Divide");
Label l1=new Label("Number 1");
Label l2=new Label("Number 2");
Label l3=new Label("Result");
TextField t1=new TextField(20);
TextField t2=new TextField(20);
TextField t3=new TextField(20);
public mathClient()
{
super("Calculator");
setLayout(null);
l1.setBounds(20,50,55,25);
add(l1);
l2.setBounds(20,100,55,25);
add(l2);
l3.setBounds(20,150,55,25);
add(l3);
t1.setBounds(150,50,100,25);
add(t1);
t2.setBounds(150,100,100,25);
add(t2);
t3.setBounds(150,150,100,25);
add(t3);
B1.setBounds(20,200,80,25);
add(B1);
B2.setBounds(100,200,80,25);
add(B2);
B3.setBounds(180,200,80,25);
add(B3);
B4.setBounds(260,200,80,25);
add(B4);
B1.addActionListener(this);
B2.addActionListener(this);
B3.addActionListener(this);
B4.addActionListener(this);
addWindowListener(
new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
}
);
}
public void actionPerformed(ActionEvent AE)
{
if(AE.getSource()==B1)
{
sum();
}
else if(AE.getSource()==B2)
{
subt();
}
else if(AE.getSource()==B3)
{
mult();
}
else if(AE.getSource()==B4)
{
div();
}
}
public void sum()
{
int i=Integer.parseInt(t1.getText());
int j=Integer.parseInt(t2.getText());
int val;
try
{
String ServerURL="MathServ";
mathInterface MI=(mathInterface)Naming.lookup(ServerURL);
val=MI.add(i,j);
t3.setText(""+val);
}
catch(Exception ex)
{
System.out.println("Exception:"+ex);
}
}
public void subt()
{
int i=Integer.parseInt(t1.getText());
int j=Integer.parseInt(t2.getText());
int val;
try
{
String ServerURL="MathServ";
mathInterface MI=(mathInterface)Naming.lookup(ServerURL);
val=MI.subt(i,j);
t3.setText(""+val);
}
catch(Exception ex)
{
System.out.println("Exception:"+ex);
}
}
public void mult()
{
int i=Integer.parseInt(t1.getText());
int j=Integer.parseInt(t2.getText());
int val;
try
{
String ServerURL="MathServ";
mathInterface MI=(mathInterface)Naming.lookup(ServerURL);
val=MI.mult(i,j);
t3.setText(""+val);
}
catch(Exception ex)
{
System.out.println("Exception:"+ex);
}
}
public void div()
{
int i=Integer.parseInt(t1.getText());
int j=Integer.parseInt(t2.getText());
int val;
try
{
String ServerURL="MathServ";
mathInterface MI=(mathInterface)Naming.lookup(ServerURL);
val=MI.div(i,j);
t3.setText(""+val);
}
catch(Exception ex)
{
System.out.println("Exception:"+ex);
}
}
public static void main(String args[])
{
mathClient MC=new mathClient();
MC.setVisible(true);
MC.setSize(600,500);
};
}
Not finding what you are looking for?

1,021 views

Ask a Question

Usually answered in minutes!

Top Cell Phones Experts

ADMIN Andrew
ADMIN Andrew

Level 3 Expert

66957 Answers

john h

Level 3 Expert

29494 Answers

 Mikey
Mikey

Level 3 Expert

6904 Answers

Are you a Cell Phone Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...