CodeGym
Promotion
CodeGym University
Learning
Courses
Tasks
Surveys & Quizzes
Games
Help
Schedule
Community
Users
Forum
Chat
Articles
Success stories
Activity
Reviews
Subscriptions
Light theme

Help with tasks

  • Reviews
  • About us
Start
Start learning
Start learning now
  • All questions
  • Dinesh
    Level 7
    Delhi
    Question about the task What's the cat's name?
    Java Syntax, Level 4, Lesson 2
    Under discussion
    this simple word but difficult keyword to understand From line 13 where does the flow control of program moves why and how? Line no 19 println(cat.name) which name it is refering to name at line 9 11 or 13?
    • 25.05.2020
    • 719views
    • 6comments
    3
  • Josephine
    Level 26
    Normal
    Question about the task Racer (Part 7/28)
    Games, Level 0, Lesson 5
    Resolved
    The error says cannot find variable player..The ShapeMatrix class does have PLAYER variable,what do i do ,please helpcom/codegym/games/racer/part07/PlayerCar.java:6: error: cannot find symbol private static int playerCarHeight = ShapeMatrix.PLAYER.length; ^ symbol: variable PLAYER location: class com.codegym.games.racer.part07.ShapeMatrix
    • 07.12.2020
    • 534views
    • 2comments
    0
  • Oliver Heintz
    Level 18
    Mustang
    Question about the task Bridges
    Java Core, Level 4, Lesson 8
    Under discussion
    I don't have a clue why I'm failing.I feel so stupid. I've looked at what other people have been doing, and it seems more complicated than what I wrote. But they are only failing one of the validation checks, whereas I'm failing three. The program runs, and there are no errors, and everything seems to be correct. Does it not show
    • 07.12.2020
    • 400views
    • 2comments
    0
  • Andrei
    Level 41
    Question about the task Static modifiers and exceptions
    Java Core, Level 5, Lesson 9
    Under discussion
    What is this task trying to teach us? I don't understand the use of the IF clause to pass the verification - throw/throwing exception in static blockHello! Can somebody please explain why we need an if clause for the program to verify? Why isn't the error just thrown when we run the code? Thanks
    • 07.12.2020
    • 627views
    • 8comments
    0
  • Andrei
    Level 41
    Question about the task Static modifiers: part 1
    Java Core, Level 5, Lesson 9
    Resolved
    Creating a static block and putting inside elements of an future created map. How is this possible?Hello, so we have the program below. The static block is last. Upon creation of the class, from my knowledge the first elements that will be created are static variables and static blocks of code. My question is, considering that the static block of code will be created before the map element, how
    • 07.12.2020
    • 521views
    • 8comments
    0
  • Weichen Ouyang
    Level 25
    San Jose
    Question about the task Different methods for different types
    Java Core, Level 5, Lesson 12
    Resolved
    My code works, however, I would like to receive critiques from you guys.Is there other possible structure to implement the same functionality? Here is my code: public static void main(String[] args) throws IOException { BufferedReader r = new BufferedReader(new InputStreamReader(System.in)); while(true){ String s = r.readLine(); i
    • 06.09.2019
    • 1538views
    • 2comments
    4
  • Denis
    Level 22
    Kharkiv
    Question about the task Static modifiers and exceptions
    Java Core, Level 5, Lesson 9
    Under discussion
    help me plscant understand
    • 26.06.2019
    • 1583views
    • 4comments
    0
  • Bohdan
    Level 8
    Milan
    Question about the task Snake (Part 19/20)
    Games, Level 0, Lesson 1
    Resolved
    I have a bug.I completed all the quests, but it doesn't accept the last one, where i have to setTurnTimer in the method onTurn.
    • 03.09.2020
    • 520views
    • 3comments
    0
  • Aditya Sinha
    Level 17
    Bangalore
    Question about the task Static modifiers: part 1
    Java Core, Level 5, Lesson 9
    Resolved
    Help with the solutionNot able to figure the problem
    • 17.02.2019
    • 1538views
    • 2comments
    0
  • Michał Pawłowicz
    Level 18
    Question about the task The early bird gets the worm
    Java Core, Level 6, Lesson 13
    Under discussion
    Can't match the first requirement, help pleaseI've tried also with the currentThread, and it still is not checked as correct, I have no idea what should i change. I'll appreciate any sort of help. Thank you from the mountain.
    • 18.04.2020
    • 1220views
    • 3comments
    0
  • Stephen Haokip
    Level 8
    imphal
    Question about the task Method quartet
    Java Syntax, Level 8, Lesson 6
    Resolved
    guy the last second condition is lefti have no idea how to do it please need help
    • 23.06.2020
    • 1271views
    • 3comments
    1
  • The Chief
    Level 18
    Question about the task Display numbers in reverse order
    Java Syntax, Level 7, Lesson 12
    Under discussion
    The compiler says it can't find the ArrayList symbol.On line 17, the compiler says it can't find the ArrayList symbol. I don't understand why.
    • 05.12.2020
    • 561views
    • 2comments
    0
  • Dmitri
    Level 22
    Seversk
    Question about the task Fix four mistakes
    Java Core, Level 4, Lesson 8
    Resolved
    Looks like all requirements are fulfilled.Looks like all requirements are fulfilled. What am I missing?
    • 06.12.2020
    • 473views
    • 1comment
    0
  • Angelo Spampinato
    Level 18
    Boston
    Question about the task Request parser
    Java Core, Level 5, Lesson 12
    Under discussion
    Not sure why the 3rd condition isn't passingCould anyone help me figure it out? Both examples they gave are displaying exactly as they should. Thanks!
    • 21.07.2020
    • 534views
    • 1comment
    0
  • Denys
    Level 41
    Question about the task Synchronized methods
    Java Core, Level 7, Lesson 10
    Under discussion
    Why 4???Why it is necessary to add synchronized to method4, but not to method5?
    • 05.12.2020
    • 433views
    • 1comment
    0
  • liutas
    Level 5
    Priekule
    Question about the task 18+
    Java Syntax, Level 4, Lesson 6
    Under discussion
    Why when i press RUN nothing happens ? no error in the code package com.codegym.task.task04.task0422; /* 18+ */ import java.io.*; import java.util.Scanner; public class Solution { public static void main(String[] args) throws Exception { Scanner scan = new Scanner(System.in); String name = scan.nextLine(); int age
    • 05.12.2020
    • 514views
    • 1comment
    0
  • Chandan Thapa
    Level 22
    Dubai
    Question about the task Different methods for different types
    Java Core, Level 5, Lesson 12
    Resolved
    got the correct answer however not passing the requirementsWhat am I doing wrong below? hints would be great!! Thanks :)
    • 04.12.2020
    • 535views
    • 6comments
    0
  • hidden #10687429
    Level 6
    Question about the task Rule of the triangle
    Java Syntax, Level 4, Lesson 4
    Under discussion
    Won't validate and I don't understand whyI've tested my work and it seems to work fine but won't validate. The first condition rules it out if it's == The second rules in those whose sums are greater than the part
    • 05.12.2020
    • 505views
    • 2comments
    0
  • Harshitha
    Level 5
    Chennai
    Question about the task Sam I Am
    Java Syntax, Level 3, Lesson 6
    Resolved
    Sam I AmCan anyone tell me what is wrong in my code.
    • 10.07.2020
    • 842views
    • 2comments
    1
  • Шарох
    Level 12
    Question about the task Calling a constructor from a constructor
    Java Syntax, Level 5, Lesson 9
    Resolved
    Hi Coders! I don't know how should I call another constructor?
    • 11.11.2020
    • 988views
    • 7comments
    0
  • thisisalongname
    Level 15
    Spokane
    Question about the task Price of apples
    Java Syntax, Level 4, Lesson 1
    Under discussion
    Question on the DifferenceI figured it out after a while, but can someone explain why in this example "Apple.applePrice" works and "this.applePrice" doesn't? I'm sure it has to do with the difference in static and non-static but I don't understand it. public class Solution { public static void main(String[] args) {
    • 23.04.2019
    • 1556views
    • 2comments
    1
  • Arko Sarkar
    Level 8
    Mumbai
    Question about the task Price of apples
    Java Syntax, Level 4, Lesson 1
    Under discussion
    Why this.applesPrice doesn't work here?I've figured out the answer by hints here, but want to know why 'this' doesn't work?
    • 25.08.2018
    • 1851views
    • 3comments
    2
  • LennyMan
    Level 25
    Lucca
    Question about the task Arithmetic mean
    Java Syntax, Level 5, Lesson 5
    Resolved
    All the condition works, but last one cannot be validateThe code its working, but it can't be validate by the last condition (The displayed result should match the task conditions for any input data.) I dont understand where is the problem. i just notice that if you start with -1, the result is NaN. I dont know what this mean actually.
    • 03.12.2020
    • 753views
    • 3comments
    0
  • divya
    Level 5
    hyderabad
    Question about the task A name is a name
    Java Syntax, Level 4, Lesson 16
    Under discussion
    can anyone help me at this line of code System.out.println("I was born on "+mm++dd+\/+yyyy);
    • 03.12.2018
    • 1637views
    • 16comments
    0
  • Aleksandr
    Level 22
    Moscow
    Question about the task Sorting even numbers from a file
    Java Core, Level 3, Lesson 11
    Resolved
    Hello all, As i think i did what task wants but it didn't workI go trhow file by bites if it is char between 48 -57 i add it in to string and than check, if line finished by (13) i check is number even? yes add to arr. Than sort array and show it on display. All works, but task don't accepted it. Can you help please?
    • 02.12.2020
    • 615views
    • 4comments
    0
  • Jurij Thmsn
    Level 29
    Flensburg
    Question about the task Plan to conquer the world
    Java Syntax, Level 3, Lesson 8
    Resolved
    Task in IntelliJI got the code right so it works in the browser and is correct . But if I run the same code on IntelliJ, the program just says: /Users/test/Desktop/jdk-15.0.1.jdk/Contents/Home/bin/java -javaagent:/Applications/IntelliJ IDEA CE.app/Contents/lib/idea_rt.jar=63276:/Applications/IntelliJ IDEA CE.app/Co
    • 02.12.2020
    • 770views
    • 4comments
    0
  • Andrei
    Level 41
    Question about the task Food
    Java Core, Level 4, Lesson 4
    Resolved
    Can somebody please explain this line: " Selectable selectable = new Food(); " ?Below is the program. But please clarify for me the line in the subject? It the new Food() selectable object part of Selectable interface? I thought you can't instantiate an interface? public class Solution { public static void main(String[] args) { Food food = new Food(); Sel
    • 01.12.2020
    • 615views
    • 3comments
    0
  • Talia Mullen-Humphreys
    Level 11
    Radcliffe
    Question about the task HashMap of 10 pairs
    Java Syntax, Level 8, Lesson 3
    Under discussion
    What does the error I keep getting mean?It's something to do with the .put method.
    • 22.05.2020
    • 816views
    • 2comments
    0
  • Andrei
    Level 41
    Question about the task Chicken factory
    Java Core, Level 4, Lesson 6
    Resolved
    WelpgetDescription() apparently not implemented correctly. Why? Creating a separate object and printing getDescription works as requested.
    • 02.12.2020
    • 530views
    • 3comments
    0
  • yuqin luo
    Level 16
    Singapore
    Question about the task Man and woman
    Java Syntax, Level 5, Lesson 12
    Under discussion
    Why the constructors does not work?public class Solution { public static void main(String[] args) { Man m = new Man("J", 10, "sdhf"); Man m2 = new Man("J", 10, "sdhf"); Woman w = new Woman("J", 10, "sdhf"); Woman w2 = new Woman("J", 10, "sdhf"); System.out.println(m.name + " " + m.age + "
    • 02.12.2020
    • 521views
    • 1comment
    0
  • 1
  • ...
  • 109
  • 110
  • 111
  • 112
  • 113
  • ...
  • 372
Learn
  • Registration
  • Java Course
  • Help with Tasks
  • Pricing
  • Java Syntax
Community
  • Users
  • Articles
  • Forum
  • Chat
  • Success Stories
  • Activity
  • Affiliate Program
Company
  • About us
  • Contacts
  • Reviews
  • Press Room
  • CodeGym for EDU
  • FAQ
  • Support
CodeGym CodeGym is an online course for learning Java programming from scratch. This course is a perfect way to master Java for beginners. It contains 1200+ tasks with instant verification and an essential scope of Java fundamentals theory. To help you succeed in education, we’ve implemented a set of motivational features: quizzes, coding projects, content about efficient learning, and a Java developer’s career.
Follow us
Interface language
English
Deutsch Español हिन्दी Français Português Polski বাংলা 简体中文 मराठी தமிழ் Italiano Bahasa Indonesia 繁體中文 Nederlands 日本語 한국어 Bulgarian Danish Hungarian Basa Jawa Malay Norwegian Romanian Swedish Telugu Thai Українська Filipino Turkish Azərbaycan Русский Vietnamese
Programmers Are Made, Not Born © 2025 CodeGym
MastercardVisa
Programmers Are Made, Not Born © 2025 CodeGym