interview blogs

Keep learning new technologies.

30 advanced golang interview questions and answers

By

Here are 30 advanced Golang interview questions along with their answers:

Posted 8 months ago

golang interview questions

By

here are some common Golang interview questions along with their answers:

Posted 8 months ago

What is the difference between between type any and unknown?

By admin

The `any` and `unknown` types in TypeScript both serve as top types, meaning they can represent any possible JavaScript value. However, they differ in how they enforce type checking and safety.

Posted 9 months ago

write a function to that takes two arguments. If the 2 args are integers, return the sum, else return the concatenation of the 2 args (assume if a and b is not number its a string)

By admin

In TypeScript, you can create a function that checks the types of the two arguments and either adds them if they are both numbers or concatenates them if at least one of them is not a number. Here's how you can implement such a function:

Posted 9 months ago

Performance boosting in MongoDB

By admin

MongoDB is a powerful NoSQL database that's known for its flexibility and performance. However, as your data grows, you might start encountering performance bottlenecks. Here are some key strategies to boost your MongoDB performance.

Posted 9 months ago

Performance boosting in Next.js applications

By admin

Next.js is a popular React framework that offers a lot of out-of-the-box features for improved performance. However, as your application grows, you might need to adopt additional strategies to keep your app running smoothly. Here are some tips to enhance the performance of your Next.js applications.

Posted 9 months ago