I applied online. I interviewed at CK-12 Foundation in Jun 2026
Interview
Gave the first round which was a managerial round. Had the interview with a VP level person and it was to discuss past projects and experience. The person seemed to have a really bad attitude and came off as rude. Bad experience overall.
Multiple rounds to test multiple skill set
Some puzzles aswell. Overall good. All rounds were online with different team members.
First round was a culture fit round, 2 development rounds, 1 puzzle round.
Interview questions [1]
Question 1
Basics of JS, web development and math related concepts
Applied via LinkedIn, after my profile was shortlisted I was supposed to completed a simple JS code and give explanation. I got an email that they will move forward with my profile and asked me to select the date and time for the next round After this there was another technical round
Interview questions [1]
Question 1
console.log("Start")
setTimeout(()=>{
console.log("this is time")
},100)
let obj = new Promise((resolve,reject)=>{
setTimeout(()=>{
console.log("Promise is created")
},500)
console.log("Promise is consumed")
})
console.log("End")