>>508058980 (OP)I had to debug a NullPointerException in one of our trading backends yesterday. I wasn't sure what caused it and didn't want to go through the hassle of enabling remote debugging at first.
So I asked ChatGPT what will happen when I call Arrays.asList(null). How should I know, after all, I'm not a programmer, I'm a product owner. I wasn't sure if the object that was passed was a null reference or not. That said, ChatGPT gave me a complete bullshit answerr. Arrays.asList(null) raises, in fact, a NullPointerException.
In the real world, you need to be able to read code, understand it and especially the context that it is used within and debug it. ChatGPT can't do that.