How To Return Alert True If Server Is Functioning Normally

Apr 29, 2014

So, I don't know how to start off this program. I'm not looking for the final answer, but I don't know two things: 1. the objective, 2. what type of thing do I start it off with? A method? I'm pretty sure it's not a class right because it already has a class?

public class WebFarm
{
private ArrayList<Server> servers;
/* constructors and other methods and instance variables not shown */
}
 public class Server

[Code] ....

the Instructions:

The ping() method of the Server class returns true if the server is currently functioning normally; otherwise it returns false. Write a definition for the needsAttention() method of WebFarm that returns an ArrayList containing the servers that are not functioning normally:
 
public ArrayList<Server> needsAttention()
{
//I can put code here
}

View Replies


ADVERTISEMENT

Return True If Array Contains 3 Adjacent Scores That Differ From Each Other

Mar 12, 2014

Assignment: Given an array of scores sorted in increasing order, return true if the array contains 3 adjacent scores that differ from each other by at most 2, such as with {3, 4, 5} or {3, 5, 5}.

scoresClump({3, 4, 5}) → true
scoresClump({3, 4, 6}) → false
scoresClump({1, 3, 5, 5}) → true

Codingbat AP-1 3rd question

public boolean scoresClump(int[] scores) { 
for (int i = 0; i < scores.length; i++) {
int a = scores[i];
int b = scores[i + 1];
int c = scores[i + 2];
if (Math.abs(b-a) + Math.abs (c-b) <=2)
return true;
}
return false;
}

I got it right for some of the input, but not one of them. I tried to use the for loop and if statement on a specific input that I got wrong:

{4, 5, 8}
scores[1] - scores[0] = 1
scores[2] - scores[1] = 3

I suspect it has something to do with the for loop, but I don't see the problem with it. It should work, shouldn't it?
But anyway, here is the error for {4,5,8} :

Exception:java.lang.ArrayIndexOutOfBoundsException : 3 (line number:7)

View Replies View Related

Array Of Scores - Return True If Each Score Is Equal Or Greater Than One Before

Mar 8, 2014

Given an array of scores, return true if each score is equal or greater than the one before. The array will be length 2 or more.

scoresIncreasing({1, 3, 4}) → true
scoresIncreasing({1, 3, 2}) → false
scoresIncreasing({1, 1, 4}) → true

Java Code:

public boolean scoresIncreasing(int[] scores)
{
for (int i = 0; i< scores.length-1; i++) {
if (scores[i] < scores[i+1] || scores[i] == scores [i+1]) {
return true;
} else {
return false;
}
}
return false;
}

Unsure what the problem is, it will always return True for some reason...

View Replies View Related

Java Method - Return True If String Can Be Found As Element Of Array And False Otherwise

Mar 17, 2014

I am new to Java and would like to ask how to do this question specifically:

Code a Java method that accepts a String array and a String. The method should return true if the string can be found as an element of the array and false otherwise. Test your method by calling it from the main method which supplies its two parameters (no user input required). Use an array initialiser list to initialise the array you pass. Test thoroughly.

View Replies View Related

Passing Objects From Client To Server - Receives But No Return

Apr 30, 2015

I'm trying to pass an object to a server and then back again. The object gets to the server fine, but either the server doesn't return it correctly or the client isn't accepting it. There's not error's. The client just prints the object as null. Not really sure why, I looked at other examples and they seem to be the same.

Client:

public class main {
public static void main(String[] args) throws IOException {
String serverAddress = JOptionPane.showInputDialog(
"Enter IP Address of a machine that is" +
"running the service on port 9090:");
Voter you = prompt();

[Code] .....

View Replies View Related

Alert Returns Added String Instead Of Adding Var Together

Jan 28, 2014

The following alert returns an added string instead of adding the var together to give me a total?

var tvHours = prompt('How many hours of Tv do you watch last week?');
var webHours = prompt('How many hours of internet surfing did you do last week?');
var gameHours = prompt('How many hours of video games did you play last week?');
alert(tvHours + webHours + gameHours);

Also can you store a var in an alert? e.g ( var time = alert(tvHours + webHours + gameHours); ???

View Replies View Related

Equals Method - Take Object Reference And Return True If Given Object Equals This Object

Mar 28, 2014

Create an equals method that takes an object reference and returns true if the given object equals this object.

Hint: You'll need 'instanceof' and cast to a (Geocache)

So far I have:

public boolean equals(Object O){
if(O instanceof Geocache){
Geocache j=(Geocache) O;
if (this.equals(j)) //I know this is wrong... but I can't figure it out
return true;
}

else return false;
}

I think I have it correct up to the casting but I don't understand what I'm suppose to do with the this.equals(). Also I'm getting an error that I'm not returning a boolean... I get this all the time in other problems. I don't get why since I have to instances of returning booleans in this. "returns true if the given object equals this object" makes no sense to me. I assume the given object, in my case, is 'O'. What is 'this' object referring to?

View Replies View Related

Printing A Functioning JTextField On Graphics2D

Sep 10, 2014

I recently started making some Java games, and now I'm having some troubles,

It seems like I can't place a functioning JTextField on my Graphics2D object, I can place images, even the image of the component itself:

Java Code: Graphics2D g2d = (Graphics2D) this.getGraphics();
JTextField jtf = new JTextField();
jtf.setSize(150, 70);
jtf.setLocation(220, 220);
jtf.print(g2d); mh_sh_highlight_all('java');

How can I make it work? I really need it for character name creation, chat, etc... so making a JDialog isn't an option for me.

View Replies View Related

What To Do When Exception Occurs That Affects Functioning Of Program

Jun 30, 2014

When an exception occurs that will affect the entire functioning of a program, in other words, the program will not be able to do what it is intended to do, is it best just print the exception to user and run System.exit(1)? And then force the user to run the program again.

View Replies View Related

Sudoku Solver - Scanner Isn't Functioning Properly

Nov 19, 2014

I am working on a program that should take an input file as a command line argument and check if that file contains a valid sudoku solution. Right now the main error I am getting is my scanner isn't functioning properly and is throwing inputMismatchexceptions, but Im also not sure about the validity of my functions, and i cannot test them because my scanner isn't working.

import java.util.Scanner;
 
//This class will read in a possible sudoku solution and test it for validity. If it is invalid, return at least one reason why.

public class SudokuVerifier {
//this function checks a row to see if it contains the numbers 1-9
public static boolean checkRow(int sudoku[][], int i) {
boolean contains=false; // keeps track if the line contains a certain number
for(int k=1; k<=9; k++) { //goes through every number from 1 to 9
for(int j=1; j<sudoku[i].length; j++) { //checks every element in the row to see if it is equal to k

[code]...

View Replies View Related

Method Must Return Int Type - If Given Integer Is Strong Return A / If Not Return B

Sep 7, 2014

I want to use a method, which takes for example an int and also returns an integer. For example, if the the given integer is strong return a, if it is notstrong return b. How would you write that in a Code?

I want to use that in a more general way. I want to give a method mlong the value X of the type date and let it return an int. Type date consists of 3 int, one of them is the int month.

mlong should return an int depending on the X.moth. at the moment my code looks like this:

// File1:
public class date {
public int day;
public int month;
public int year;
}

// File 2:
public class monthlength {
public int mlong(date X) {
int t;
t = X.month;
if (t == 1 || t == 3 || t == 5 || t == 7 || t == 8 || t == 10 || t == 12)
{ return 31; }
if(t == 4 || t == 6 || t == 9 || t == 11)
{return 30;}
}
}

View Replies View Related

How To Return Values In Object Return Type Function (method)

Apr 2, 2014

How do i take input values for TwoDPoint (which are objects) and return it back in numerical values also print them.

When i create an object in main method and pass values to my function of return type TwoDPoint,it gives error:- found int,int need TwoDPoiint,TwoDPoint.

// Here is what i tried to do:

Created class TwoDPoint that contains two fields x, y which are of type int. Defined another class TestTwoDPoint, where a main method is defined.In the main method created two TwoDPoint objects.

Then I modified the class TestTwoDPoint and add another function to it. This function takes two TwoDPoints as input and returns the TwoDPoint that is farthest from the point (0,0).

Then I added another function to TestTwoDPoint. This function takes two TwoDPoints as input and returns a new TwoDPoint whose x value is the sum of x values of the input TwoDPoint's and whose y value is the sum of the y values of the input TwoDPoint's.

class TwoDPoint {
int x = 2;
int y = 4;
}
class TestTwoDPoint {
public static void main(String args[]) {
TwoDPoint obj1 = new TwoDPoint();
System.out.println(obj1.x);
System.out.println(obj1.y);

[Code] ....

View Replies View Related

JSF :: XHTML On One Server Can Talk To Managed-bean On Other Server (different Machine)?

Jul 27, 2014

I am developing a web application using JSF-2.0 on weblogic 10.3.6. I am using Facelets as VDL. I have 5 different machine. They are different according to their OS and their geographical location. On my first xhtml page server (machine) is decided. Then on next page file upload and rest of processing takes place. My restriction is that SSO configuration can be done on only one machine.

So I am restricted to using xhtml files from only my primary server where SSO configuration is done. But I have to connect to servlets or managed-bean of different machine as requests are machine specific and file needs to be uploaded to those machines for processing. So I cannot use redirectUrl as I need to be only on one machine. Is it possible that xhtml on one server can talk to managed-bean on other server(different machine)?.

View Replies View Related

Servlets :: How To Create A Room That Should Be Like Static On The Server Until Server Is Down

Apr 1, 2014

I am working on a chess game. I need to construct a game room where all the player are present and room chat is up. Also some tables where games are being played. Now my question is how to create this game room?

To me this room must need to be like static or global (if I am not mistaken) that is up when server starts and players can join this room and should be down when server is done. How can I implement such room that would stay up for infinite time.

View Replies View Related

JCheckBox Is True With Some Value

Jul 30, 2014

I have 3 classes

ARCHIVIO that contain List<Persona>
PERSONA that contatin List<SmartCard> and get/set ORGANIZZAZIONE
ORGANIZZAZIONE

I am looking for a way in java for give me back in a table with checkbox if a PERSONA getOrganizzazione (this is also null value)

public Object getValueAt(int rowIndex, int columnIndex) {
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
if(columnIndex == 0) {
return ?????????????
}
return null;

[Code] ....

View Replies View Related

JSP :: How To Set Scripting-invalid True

May 12, 2014

I was trying to set scripting-invalid true , but even after setting it to true I am able to use scripting. This is the web.xml under WEB-INF

<web-app>
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<scripting-invalid>
true
</scripting-invalid>
</jsp-property-group>
</jsp-config>
</web-app>

And This is the jsp page

<html>
<body>
<!-- Here I am going to use scripting like scriptlet,expression and other element like jsp declaration element -->
<%!int i=0;%>
<%System.out.println("Scriptlet");%>
<%=new String("Expression")%>
</body>
</html>

Why its not working ?

View Replies View Related

True And False / Scanner

Jul 7, 2014

My goal is to ask them for their name and if they got it right then it says yes while if they wrote it wrong, it would say no.

Java Code: public static void main(String[] args) {
Scanner name = new Scanner(System.in);
System.out.println("What is your name?");
String sname = name.nextLine();
name.close();
System.out.println("Are you sure it's " + sname + "?");
Scanner tfname = new Scanner(System.in);
String stfname = tfname.next();

[code]....

View Replies View Related

IF Statement Never Gets Evaluated To True

Oct 27, 2014

Currently experiencing this issue where my IF statement never gets evaluated to 'true'.

public static void search(SalesEmployee[] employeeArray, int searchID)
{
for(int i = 0; i < employeeArray.length; i++) {
String e = ("" + employeeArray[i].getId());
if(e.equals(searchID)) {
System.out.println(employeeArray[i].toString());
}
}
}//end of search

View Replies View Related

Paint Not Looping Until Boolean Is True

Jan 19, 2015

I have a piece of code for an applet that I want to run as the main applet code, and I want it to loop until a boolean is true, but it needs to paint while the code is looping. Here is the relevant part of my code ....

public void paint(Graphics g)
{
g.drawImage(background, 0, 0, this);
if(over == false)
{
tick();

[Code] ....

(I have tried replacing the if with a for, that does not work.)

View Replies View Related

Nested If Statement - Execute If True

Feb 16, 2015

I have a problem with an if statement I've done. I'm not sure how to fix my problem. I'll post the code of the if statement and the output.

if (box = true &&(shippingSwitch ==1))

if (ounces < .5)
{
additionalPrice = ((ounces % .5)/(0.0625))*1.25;
shippingPrice = 15.75 + additionalPrice;//((weight / 8)+ (weight % 8));

[Code] ....

Here's the output I get using println to test it.

Please enter 1 if your package is a letter and 2 if your package is a box
2
Please enter weight in pounds (Example: 1.2):
1.2
Please enter your shipping service option:
Press 1 for Next Day Priority:
Press 2 for Next Day Standard:
Press 3 for Two Day Shipping:
1
7.00

If I comment out the else statement on the last line of code I get the following output:

Please enter 1 if your package is a letter and 2 if your package is a box
2
Please enter weight in pounds (Example: 1.2):
1.2
Please enter your shipping service option:
Press 1 for Next Day Priority:
Press 2 for Next Day Standard:
Press 3 for Two Day Shipping:
1
13.75

What I want to happen is the code under the first comment to to execute if true, or go to the code under the next comments and execute if that statement is true and if that is not true I want the last block of code to execute underneath the last comments.

View Replies View Related

Boolean Value (true Or False) Randomly Set?

Jun 15, 2014

I have the code and it works very well, but my professor wants us to use Junit testing to test our code. I've never used JUnit before, how it works. Is it possible to have a boolean value (true or false) randomly set?

Here is the code I need to test:

package musicalinstruments;
class MusicalInstrument {
public String name;
public boolean isPlaying;
public boolean isTuned;
public MusicalInstrument(){
isPlaying = false;
isTuned = false;

[Code]...

View Replies View Related

User Input True False Questions

Jan 11, 2015

Create an application that generates a quiz. Prompt for the user's first and last name, college major, and confidence in test taking (high, medium, or low). The quiz should contain at least five true/false questions about horticulture. When the user selects the correct answer, a message of positive reinforcement should be displayed. If the user selects the incorrect answer, the correct answer should be displayed with a message of constructive criticism. At the end of the quiz, display the number of correct and incorrect answers as well as the percentage of correct responses for each user.

import java.util.Scanner;
class HorticultureQuiz { 
public static void main(String[] args){

[Code].....

View Replies View Related

Truth Table - Display 1s And 0s Instead Of True False

Feb 26, 2005

I'm supposed to take this truth table and alter it so it displays 1's and 0's instead of true false. I'm assumed to do this I would just need to change the variable type and replace true and false with 1 and 0 but every way I try this does not work.

//a truth table for the logical operators.

class LogicalOpTable {
public static void main(String args[]) {
boolean p, q;
System.out.println("P Q AND OR XOR NOT");
p = true; q = true;
System.out.print(p + " " + q +" ");

[Code] ....

View Replies View Related

2D Boolean Array - Gain A Value When All Elements Have Been Turned True

Feb 2, 2014

I'm creating a 4x4 2D array. I need to be notified, or gain a value when all elements have been turned true. Is this as simple as

"If the2DArray[] = true { blah blah }" ?

View Replies View Related

How To Make Panels Visibility Go False / True With Actionlistener

Jan 28, 2014

I'm trying to create a program that has two labels... one in the top left and one in the top right... so far when i run it only the one in the top right (label2) shows... also In the program there will be multiple button and when I click a button it will show a different panel and then i can go back to the first panel to select other panels... so far i haven't figured out how to make panels visibility go false/true with actionlistener. last thing... when i have more then one panel added to the frame none of them show up.

Java Code:

//Matthew
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Test{
public static void main(String[] args){

[code]...

View Replies View Related

Statement Block When While Expression Resolves To True Is Never Executed

May 8, 2014

The statement block when the while expression resolves to true is never executed, no matter what i type in:

String option="hit";
String option2="stay";
String choice = null;
int yTotal = 0;

[Code] .....

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved