Short for Globally Unique Identifier, a unique 128-bit number that is produced by the Windows OS or by some Windows applications to identify a particular component, application, file, database entry, and/or user. For instance, a Web site may generate a GUID and assign it to a user's browser to record and track the session. A GUID is also used in a Windows registry to identify COM DLLs. Knowing where to look in the registry and having the correct GUID yields a lot information about a COM object (i.e., information in the type library, its physical location, etc.). Windows also identifies user accounts by a username (computer/domain and username) and assigns…
-
-
Basics of Internet Cookies
Cookies can help provide a unique and tailored user experience. But what are the different types of cookies? What are they used for? Can be the deleted or blocked? Read this guide to find out more about cookies and how they affect you.
-
Preparing for a Software Developer Interview
After working for quite some time at the same company, you decide it’s time to look around for another job. And there’s nothing wrong with that. You want to develop yourself as a person, but you’re also looking for a great opportunity to develop your skillset. Preferably, in a whole different environment. So, you start looking for job applications on the internet. After spending hours looking for the perfect job application, you finally found it. The job hunt was successful. This has got to be the one! You decide to not waste any more time and you start writing your motivational letter. Obviously, you are the most suitable candidate for…
-
10 most tricky question in java
References https://www.journaldev.com/552/java-tricky-interview-questions https://hubpages.com/technology/10-most-tricky-question-in-java http://www.java67.com/2012/08/10-java-coding-interview-questions-and.html
-
Java Programs from coding interviews
References https://javarevisited.blogspot.com/2017/07/top-50-java-programs-from-coding-Interviews.html https://www.codingame.com/playgrounds/35979/java-interview-questions-and-programming-examples https://practity.com/765-2/ http://www.java67.com/2012/08/10-java-coding-interview-questions-and.html
-
OAuth 2.0
References: http://tutorials.jenkov.com/oauth2/index.html https://www.javacodegeeks.com/2017/09/understanding-oauth2-token-authentication.html
-
How does the Internet work?
Original post: https://developer.mozilla.org/enUS/docs/Learn/Common_questions/How_does_the_Internet_work
-
Asynchronous vs Deferred JavaScript
Original post: https://bitsofco.de/async-vs-defer/
-
Difference between require, include, require_once and include_once
In PHP, when should I use require vs. include? When should I use require_once vs. include_once?
-
What is Data, Database and Database Management System (DBMS)?
Data Data is any sort of information which is stored in computer memory. This information can later be used for a website, an application or any other client to store for future purpose. The most common information is User information in the form of user personal, address and banking information. Let’s consider Facebook, it stores our personal data, images, posts, comments and many more things. Banking application also stores user data, their transactions details, funds summary etc. All this information is data, but when it put together and store in a structural way, it becomes informational data. Database A database is a collection of information that is organized so that…