Monday, June 30, 2008

When i click on any song on youtube they say that i have either swithched off my java script or have an old version of adobe flash player. pls how can i put it right?

while (***)
{
System.in.nextString(....);
}

pls fill in the ***
i want *** to be not equals new line.

1st correct answer gets best answer

I have just completed my grade 10 with IGCSE .. I have planned to do C++ NIIT course in these holidays .. what are the advantages of doing C++ and what are job opportunities... Otherwise there are two more courses like gaming technology - java - multimedia courses - corel draw courses .. Which do u think is worth doing ...

Thanks a lot

Shows it s seeding and downloading but it s not.I can t fine a good port in vuze options that works

Sunday, June 29, 2008

ok..so im using internet explorer andi watched vids 4 like 2 yrs. now..and i was a bit suprised when i used the computer just now to watch another vid there was this letter that said i had my java script turned off or i shoul dowload the new adobe flash player... i even went to tools-internet options-and is till saw a check!! but beside it said"requires restart" how do i restart it?????heeellllp!!!thx

Write the Java codes to print the following statements (using for loops):

Line 50
Line 52
Line 54
...
Line 100

The answers:

for (int i = 50; i <=100; i = i + 2)
System.out.println ("line" + i);

-------
I have a question to ask: why is there a " " for the line? Can I just write (line + i)? Any difference would it make? Thanks

import java.util.Scanner;
public class Numbers {
public static void main (String [ ] args)
{
int num;
int x = 2- y = 4;
Scanner sc = new Scanner (System.in);

System.out.print ("Enter number: ");
num = sc.nextInt ();
System.out.println ("num = " + --num);
System.out.println ("num = " + num);
num = x++ + y--;
System.out.println ("num = " + num);
System.out.println ("x = " + x);
}
}

My answers:

Enter number: 10
num = 9
num = 6
x = 3

What and where went wrong? I only got 2 marks out of a total of 4 marks...Please help me...(Explain too. Hahas)

Thanks.

I need java 5.0 for higher so i can use limewire. I went to a website so i can download it. And it starts out fine. But once its hits installing java progress. It will just stop downloading. And keep trying to re-start it but it just keep doing the same thing. Is there anywhere else i can go to get java or somthing else i can do? Plz help

Help me please!!!?
OK- youtube still will not let me watch videos...I have installed adobe reader 8 and adobe media player.. And I have deleted all my cookies and went in to the tools options for my internet browser to enable java script..so guess what? Im still getting the message: either you have java script turned off or you have an older version of adobe flash player and guess what? My java script is enabled and I have a newer version of adobe and it s still not letting me watch any youtube vidoes..what the heck do i do now????someone help me please!!!!!!!!!!

Conexant HDA D110 MDC V.92 Modem
High Definition Audio Driver Package - KB835221
J2SE Runtime Enviroment 5.0 Update 6
Java(TM) 6 Update 3
Java(TM) 6 Update 5
Macromedia Extension Manager
Microsoft .NET Framework 1.1
Microsoft .NET Framework 1.1 Hotfix (KB928366)
Microsoft .NET Framework 2.0 Service Pack 1
Microsoft Compression Client Pack 1.0 for Windows XP
Microsoft Internationalized Domain Names Mitigation APIs
Microsoft National Language Support Downlevel APIs
Microsoft SQL Server Native Client
Microsoft User-Mode Driver Framework Feature Pack 2.0
Mouse Suite
Network Play System
Synaptics Pointing Device Driver

I go to Runescape.com- I press Existing User- I scroll down and change the Signed/Unsigned Java thing (I have tried each one)- I choose a world- and it is just a grey screen! What s happening and how do I fix this?

I downloaded Sun Java Console and everytime I try to get a new tab- the window closes and I have to get on the internet again!
PLEASE!!!!! HELP ME OUT!

i ve deleted and reloaded both java and mp3rocket several but can t get past the firewall screen and i ve shut off all my protection.

i m trying to get the source code of arcanists15 at funorb.com just to have a look maybe edit a bit and well ill just say its HARD ive got to a pack200 file but when i try to extract it the darn pack200 runs up the error


corrupted pack file: magic/ver =08000000/0.0 should be CAFEDOOD/150.7 or CAFEDOOD/150.6

some 1 plz help me!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

i m trying to get the source code of arcanists15 at funorb.com just to have a look maybe edit a bit and well ill just say its HARD ive got to a pack200 file but when i try to extract it the darn pack200 runs up the error


corrupted pack file: magic/ver =08000000/0.0 should be CAFEDOOD/150.7 or CAFEDOOD/150.6

some 1 plz help me!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Ok. Can someone explain to me what Java is used for- and how i can learn it? Thanks.

If the title

I got this moss at petco but the petco guy didn t what it was.

http://i21.photobucket.com/albums/b284/xohellokittyxo/javamoss002-1.jpg

This moss is the clump infront of the driftwood and i m not sure if the moss on the driftwood is java moss:
http://i21.photobucket.com/albums/b284/xohellokittyxo/javamoss006-1.jpg

This is Java moss I think. It doesn t look like any of the pictures on google though. I heard it is fast growing- but mine grows kinda slow

http://i21.photobucket.com/albums/b284/xohellokittyxo/javamoss005-1.jpg

I wrote a program do not know where is wrong
Has been wrong- there is a problem in class
“class Dessert is public- should be declared in a file named Dessert
.java”
What is the problem with this
class OOP {
public static void main(String args[]) {
Dish dish1=new Dish();
dish1.setName("steak");
dish1.setPrice(490);
dish1.setTime("dinner");

Cake cake=new Cake();
cake.setFlavor("chocolate");
cake.setAmount(2);
cake.setDessertSpecies("CAKE");

System.out.println("Time of dish1 ==>"+dish1.getTime());
System.out.println("Name of dish1 ==>"+dish1.getName());
System.out.println("Price of dish1 ==>"+dish1.getPrice());
dish1.dessert(cake);
}
}
public class Entree{
public Entree() { }

String name="";
int price=0;

public void setName(String str) {
name=str;
}
public void setPrice(int price1) {
price=price1;
}
public String getName() {
return name;
}
public int getPrice() {
return price;
}
public void dessert(Dessert dessert) {
System.out.println("Dessert : "+dessert.getDessertSpecies());
}
}


public class Dish extends Entree{
public Dish(){}

String time="";
public void setTime(String time){
time=time;
}
public String getTime() {
return time;
}
}


public class Dessert {
int amount=0;
String flavor="";
String dessertSpecies="";
public Dessert() { }

public void setAmount(int amount1) {
amount= amount;
}
public int getAmount() {
return amount;
}
public void setFlavor(String str) {
flavor=flavor;
}
public String getFlavor() {
return flavor;
}
public void setDessertSpecies(String str) {
dessertSpecies=str;
}
public String getDessertSpecies() {
return dessertSpecies;
}
}

public class Cake extends Dessert {
public Cake (){}
}

does card counting really work? I have tried it on a free online black jack game and i seem to win more then i used to when i did not use card counting but lets say you played online for real money is there any chance of making a little bit of money from card counting at blackjack?.
The method i have been using is the low cards count at +1 and the higher cards -1 you start off at 0 and then place your bet accordingly. So lets say you had a score of +5 you would bet a higher amount.
Its seems to work on the free black jack and the blackjack on my k750 java game. Before i tried the above i used to loose allot at blackjack games.

What Application do I install so I can run a java application on a windows 95 PC?

Also a URL would be nice?

cheers

I uploaded the pictures on Flickr. I m just worried because the roots are exposed. Will the roots eventually grab on to the driftwood and in how many days? Note that some parts of the root were wedged into a gap in the driftwood. Also the java ferns were just wedged into the holes of the wood.

Any other plants I could add? Will I need an extra CO2 source- fertilizer or even more lights? All the equipment came from aqueon s delux 10g set.

Lastly hows my overall tank looking so far?
http://www.flickr.com/photos/8531142@N03/?saved=1

hello- i got this problem where i can t load silab client i go to the site silabsoft.org but it loads with java and then after java is finished loading it shows blank white screen the game don t even load i read on one thing it said it may not be allowing files but how can i fix it?

// The program is as under

package MyPack;

class Balance
{
String name;
double bal;
Balance(String n- double b)
{name = n;
bal = b;}
void show()
{
if(bal<0)
System.out.print("â€"> ");
System.out.println(name + ": $" + bal);
}
}
class AccountBalance
{
public static void main(String args[])
{
Balance current[] = new Balance[3];
current[0] = new Balance("K. J. Fielding"- 123.23);
current[1] = new Balance("Will Tell"- 157.02);
current[2] = new Balance("Tom Jackson"- -12.33);
for(int i=0; i<3; i++) current[i].show();
}

}

regarding some topics which is in te books-sme more informatio about it

{
String details = tDisplay.getText() + "\nRoll Number:\t"+info.rollno + "\nStudent Name:\t"+ info.studentname + "\nExam Name:\t" + info.examname + "\n\nReading:\t\t"+info.reading + "\t\t\tWriting:\t"+ info.writing + "\nMathematics:\t\t" + info.Mathematics + "\n";
tDisplay.setText(details + "\n****************************************************************************************\n");
info = nameList.displayNextNode();
}
{
String details = tDisplay.getText() + "\nRoll Number:\t"+info.rollno + "\nStudent Name:\t"+ info.studentname + "\nExam Name:\t" + info.examname + "\n\nReading:\t\t"+info.reading + "\t\t\tWriting:\t"+ info.writing + "\nMathematics:\t\t" + info.Mathematics + "\n";
tDisplay.setText(details + "\n****************************************************************************************\n");
info = nameList.displayNextNode();
}

I cannot past the whole program pls can any one contact me on my email ID braindamage1234 via chat

Saturday, June 28, 2008

{
String details = tDisplay.getText() + "\nRoll Number:\t"+info.rollno + "\nStudent Name:\t"+ info.studentname + "\nExam Name:\t" + info.examname + "\n\nReading:\t\t"+info.reading + "\t\t\tWriting:\t"+ info.writing + "\nMathematics:\t\t" + info.Mathematics + "\n";
tDisplay.setText(details + "\n****************************************************************************************\n");
info = nameList.displayNextNode();
}
{
String details = tDisplay.getText() + "\nRoll Number:\t"+info.rollno + "\nStudent Name:\t"+ info.studentname + "\nExam Name:\t" + info.examname + "\n\nReading:\t\t"+info.reading + "\t\t\tWriting:\t"+ info.writing + "\nMathematics:\t\t" + info.Mathematics + "\n";
tDisplay.setText(details + "\n****************************************************************************************\n");
info = nameList.displayNextNode();
}

I cannot past the whole program pls can any one contact me on my email ID braindamage1234 via chat

I would like to experiment with forex- however due to my current location on this rock- I can only use web based- non-java applications. This is due to firewall limitations and can not be overcome. Is such a web-based system available?
The firewall is not my own or PC based. It is a centralized- proprietary- limited permission system. It has to do with residing in a rather restrictive environment. I am not able to bypass it in any way - all traffic must route through it and must be authenticated.
The firewall is not my own or PC based. It is a centralized- proprietary- limited permission system. It has to do with residing in a rather restrictive environment. I am not able to bypass it in any way - all traffic must route through it and must be authenticated.

I have a JS function attached to a mouseover event of an anchor element and some CSS...

a#imgPop:hover span { ... top: -2em;... }

Is it possible to change the *hover span* psuedo selector top value from -2 to say -10 via JS via the following type of line...

element.style.border = "0px";

or is this one such reason why the hover style is called a psuedo selector!

thanks in advance

java programs.

Who the heck is this Joe person?????
;-}

I know you want to star this for me! *

when i try to install it- this thing pops up and says error applying transforms. Verify that the specified transform paths are valid.Also sometimes it says something about the internet connection.

I have windows xp home edition.
sometimes it says it cannot proceed because of the internet connection settings?

Surely...they are all birds and should get on with each other...
I like the twist David w...have a star!
seems like multi-culture living doesnt work for the bird family either!...

does anyone no of java enabled proxys?

Do y all know where the part of the Homepage says "My Mail" and inside the box is a list of options:

Friend Request Approved!
New Event Invitation!
New Blog Posts!
New Birthdays!
New Photo Comments!
New Categories!
ETC?

Well- why does "New Photo Comments" keep showing up when after I click on it- there ARE NO COMMENTS. It s a blank page? Could it be a problem with the PC having no Java or Adobe downloaded? I don t get it.

I have been banned by mistake from a website (www.howrse.com) I need to get back on to contact the admin.
I have tried to use a IP Proxy and other proxys but I keep getting a message on the Howrse site that i need to enable Java Script. How do I fix this as my Java is switched on
does anyone know of any java enabled proxys

I wrote this code in notepad and now I need to turn it into a Java.file. I have tried to save it as payrollcalculator.java in notepad and that doesn t work. Any help on this would be greatly appreciated. I have Java JDK downloaded I just don t know how to put this in there properly to make it run. Please Help!

/* --Payrollprogram
* myname
* 06/20/08
* payroll/calculation

System.out.print("Enter employee name: ");

employee = Input.readString();
while (employee.equals(""))
{
System.out.print("Enter proper employee name: ");
employee = Input.readString();
continue;
}

// hours worked
while (!hours_valid)
{
System.out.print("How many hours did " + employee + " work? ");
hours = Input.readDouble();
while (hours < 0)
{
System.out.print("Enter proper number of hours: ");
hours = Input.readDouble();
continue;
}
hours_valid = true;

}

// rate
while (!rate_valid)
{
System.out.print("How much does " + employee + " make per hour? ");
rate = Input.readDouble();
while (rate < 0)
{
System.out.print("Enter proper number for rate: ");
rate = Input.readDouble();
continue;
}
rate_valid = true;

}

// compute pay check
double pay = rate * hours;
NumberFormat fmt = NumberFormat.getCurrencyInstance();
System.out.println("\n" + employee + " worked for " + hours
+ " hours at " + fmt.format(rate) + "/hr; paycheck = "
+ fmt.format(pay));
}

}

its a window based mobile and with t mobile