Prompts & Tips OpenAI

General

Ask you interview questions for a specific job

I’m interviewing for a software engineer position, can you give me some interview questions?
Please provide me with some common interview questions for a senior developer role.

Coding

Explain why a piece of the code isn’t working

Why this code is not working

var x = 5;
var y = 0;
console.log(x / y);

Explain what a piece of code mean

What this code does?

function addNumber(a, b) {
return a + b;
}

Code an entire software program

Write a programs that calculates the factorial of a given number in python?
How do I make an HTTP request in Javascript?

Generate regular expressions (regex)

Create a regex that matches all email addresses?
Generate 8-digits password regex