Java | JSP | JSF Answers

Questions: 4 418

Answers by our Experts: 3 943

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

How can I simulate busy waiting in Java threads without using suspend();, wait(); notify(), and notifyAll()?
I have been Asked to a java program that display the following output using the conditional control statement :.

.The Output :.

@
@ @
@ @ @
@ @ @ @
@ @ @ @ @
@ @ @ @ @ @
@ @ @ @ @
@ @ @ @
@ @ @
@ @
@

Thats All .
You are going to create a Robot class. I will put a file on the
website (with the other exampels from class) of a skeleton this class,
that is a file with the names of the various instance variables, methods,
and constructors, but with none of the actual code filled in. You are
to complete and test the class.
1. Develop a set of classes for a college to use in various student service and personnel applications. Classes need to design include the following:
1.1 Person- A person contains a first name, last name, street address, zip code and phone number. The class also includes a method that sets each data field, using a series of dialog boxes and a display method that displays the entire Person’s information on a single line at the command line on the screen. (9)
1.2 CollegeEmployee- CollegeEmployee descends from Person. A CollegeEmployee also includes a Social Security number, an annual salary, and a department name, as well as methods that override the Person methods to accept and display all CollegeEmployee data. (9)
1.3 Faculty-Faculty descends from CollegeEmplyee. This class also includes a Boolean field that indicates whether the Faculty member is tenured, as well as methods that override the CollegeEmployee methods to accept and display this additional piece of information. (9)
1.4 Student- Student descends from Person. In addition to the fields available in Person, a Student contains a major field of study and a grade point average as well as methods that override the Person methods to accept and display these additional facts. (8)
Write an application named CollegeList that declares an array of four “regular” CollegeEmployees, three Faculty, and seven Students. Prompt the user to specify which person’s data will be entered (‘C’, ‘F’, ‘S’), or allow the user to quit (‘Q’). While the user chooses to continue (that is, does not quit), accept data entry for the appropriate type of Person. If the user attempts to enter data for more than four CollegeEmployees, three Faculty, or seven Students, displays an error message. When the user quits, display a report on the screen listing each group of Persons under the appropriate heading “College Employees,” “Faculty,” or “Students”. If the user has not entered data for one or more type of Persons during session, display an appropriate message under the appropriate heading.
Save the files as Person.java, CollegeEmployee.java, Faculty.java, Student.java and CollegeList.java
i am getng an error that
Exception in thread "main" java.lang.ArrayIndexOutofBoundsException: -1
at pfix.pop(pfix.java:25)
at pfix.evaluate(pfix.java:47)
at pfix.main(pfix.java:88)

my program is to evaluate a postfix expression

import java.io.*;
import java.lang.Math;
class pfix
{
int top,j,i;
String str;
char t,postfix[];
int s[];
DataInputStream in;
public pfix()
{
top=-1;i=0;
postfix=new char[30];
s=new int[30];
in=new DataInputStream(System.in);
}
public void push(int val)
{
top++;
s[top]=val;
}
public int pop()
{
int val;
val=s[top];
top--;
return val;
}
public void evaluate(String str)throws IOException
{
int op1,op2,value=0;
char t;
while(i<str.length())
{
t=str.charAt(i);
if((t>='a' && t<='z')||(t>='A' && t<='Z'))
{
System.out.println("Enter value for "+t+":");
value=Integer.parseInt(in.readLine());
push(value);
}
else
{
switch(t)
{
case '+':
op2=pop();
op1=pop();
value=op1+op2;
push(value);
break;
case '-':
op2=pop();
op1=pop();
value=op1-op2;
push(value);
break;
case '*':
op2=pop();
op1=pop();
value=op1*op2;
push(value);
break;
case '/':
op2=pop();
op1=pop();
value=op1/op2;
push(value);
break;
case '^':
op2=pop();
op1=pop();
value=(int)Math.pow((float)op1,(float)op2);
push(value);
break;
}
}
i++;
}
System.out.println("postfix evaluated val="+value);
}
public static void main(String[] args)throws IOException
{
String str;
DataInputStream in=new DataInputStream(System.in);
System.out.println("Enter a string:");
str=in.readLine();
(new pfix()).evaluate(str);
}
}
write aprogram that prompts the user to enter a point (x,y)and checks whether the point is within the circle centered at (0,0)is radius 10
please the question is on http://ideone.com/umes4M please help me solving the errors
Hi if i want to connect a database (like textfile, XML or microsoft access file) to a client server application with GUIs included (where it has multiple user with different roles can login etc). How can i design this three tier application. How can i connect the database to client server?
boolean isValidIndianPassportHolder(boolean isCriminal, String[] nationalities, float livingMonths, String[] qualifications);
7. Write a program that accepts the value of (x, y) x-coordinates and y-coordinates and output its equivalent quadrant, if x = 0, its lies on the x axis, , if y = 0, its lies on the y axis, and if (0,0) origin.
LATEST TUTORIALS
APPROVED BY CLIENTS