Novice programmers usually find compiled languages easier to work with than interpreted languages.

There is no universal answer to this statement as it depends on the individual's programming background and preferences. However, there are some factors that may make compiled languages appear easier for novice programmers:

1. Clear Error Messages: Compiled languages often provide more descriptive error messages that can help beginners identify syntax or logic mistakes.

2. Static Typing: Many compiled languages require explicit declaration of variable types, which can help novices catch type-related errors early on.

3. Performance: Compiled languages generally offer better performance as the code is translated into machine language ahead of time. This can make it easier for novices to write and execute efficient code without worrying about runtime interpretations.

4. Comprehensive Compiler: Compiled languages often come with comprehensive compilers or Integrated Development Environments (IDEs) that provide useful features like auto-complete, debugging tools, and built-in documentation.

However, interpreted languages also have their advantages for novice programmers:

1. Ease of Setup: Interpreted languages usually have simpler setup processes as they don't require compilation steps. This allows novices to write and execute code quickly without configuring complex build environments.

2. Flexibility: Interpreted languages often offer more dynamic features like dynamic typing and runtime introspection, allowing beginners to experiment and make changes in their code without recompiling.

3. Interactive Shell: Many interpreted languages provide an interactive shell or REPL (Read-Eval-Print Loop), enabling novices to quickly test and experiment with code snippets.

Ultimately, the preference for compiled or interpreted languages often comes down to personal taste and the specific goals of a project. Both types of languages have their strengths and weaknesses, and novices may find different languages more or less approachable depending on their prior experiences and learning styles.