© 2022 Hashnode
Copy is the same value as anything. But copy value and the original value have individual independence. That means if the copy value is changed, the original value doesn't change according to the copy…
On your journey through 100Devs and software development in general, there will come times where you desire to reach out to a community for help. Asking great questions -- or asking questions in an easy-to-understand format -- can be a grea…
Once, all of us would search for our first job. And usually, it's a long, painful, and scary process. I've been interviewing interns and juniors for some time and would want to share my knowledge. In…
How to generate a random string of 10 character? There are many ways to generate a random string. This one is a simple way to do it. SELECT RIGHT(CAST(NEWID() AS VARCHAR(255)),10) How to generate a random number? Generate a random number fr…
To demonstrate this, we will first create a test data number sequence from 1 to 25 with some missing numbers in the sequence. --create test data CREATE TABLE NUMBERS ( ID INTEGER ) GO INSERT INTO …
There are two functions in SQL Server that are used to identify whether the two strings are pronounced similarly or not. They are SOUNDEX() - This function takes a string as parameter and returns a four-character code. This code is called…
Hello Developers I am an intermediate developer. I had great mentors to whom I could ask any question and they would help me. Now, as time passes I get many questions from the juniors, but I think the…
I don't believe imposter syndrome is something that can just go away. Often people ask me how to get rid of imposter syndrome, and from my experience, it continues to manifest in various ways. However, I believe there are methods to manage …
Answer: DECLARE @t TABLE ( id INT IDENTITY(1,1) PRIMARY key, drink_name VARCHAR(30) ) INSERT INTO @t (drink_name) SELECT * FROM (VALUES ('milk tea'),('lemon tea'),('milk shake')) x(drink_nam…
S. NoQuestions 01.What does the runtime environment mean in Node.js? 02.What is Node.js? 03.What is Node.js Process Model? 04.What are the data types in Node.js? 05.How to create a simple serve…