• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Enthuware - misleading question, answer has to be typed directly into text field (instead of d&d)

 
Ranch Hand
Posts: 73
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

today I did the 4th test unit of Enthuware and I came accross the following problem:

Write the declaration of Polygon class based on the following description.
A Polygon is a Shape which is used by many packages of an application. It contains a list of points, a Color and a boolean flag for the fill value.
(Use only one space between the words. Do not use semicolon or braces)


Ok, I typed the following declaration, assuming that class members (as described in the text: List, Color, boolean) are required, too:

public class Polygon extends Shape List points Color color boolean fill

The correct answer is, instead:
public class Polygon extends Shape

The machine ignored my correct part - in addition, I find that the text above is misleading, because they talk about the class members, as well.
Okay, it seems that the only class declaration is required, so no members have to come into play, is that correct?

What about the real exam?
Does such kind of questions (= typing the text directy into text fields) appear in the real exam, as well?


 
Ranch Hand
Posts: 310
1
Oracle Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Ulrich Vormbrock wrote:Hi,

today I did the 4th test unit of Enthuware and I came accross the following problem:

Write the declaration of Polygon class based on the following description.
A Polygon is a Shape which is used by many packages of an application. It contains a list of points, a Color and a boolean flag for the fill value.
(Use only one space between the words. Do not use semicolon or braces)


Ok, I typed the following declaration, assuming that class members (as described in the text: List, Color, boolean) are required, too:

public class Polygon extends Shape List points Color color boolean fill

The correct answer is, instead:
public class Polygon extends Shape

The machine ignored my correct part - in addition, I find that the text above is misleading, because they talk about the class members, as well.
Okay, it seems that the only class declaration is required, so no members have to come into play, is that correct?

What about the real exam?
Does such kind of questions (= typing the text directy into text fields) appear in the real exam, as well?




Hi Ulrich, I answered the same question exactly like you!! Dont worry too much about it, questions in real exam will be more specific!

 
reply
    Bookmark Topic Watch Topic
  • New Topic