Category: Interview Questions
Agile & Project Management Questions
1. What do you mean by servant leadership? The servant-leader shares power, puts the needs of others first and helps people develop…
Cloud Computing
1. Different ways of Data EncryptionA: a) Encrypting when data is at rest– Let’s suppose some data is in the database and…
Relational & Non-Relational Databases
Relational or SQL Databases These are also called SQL databases. These are used to store structured data. Relational Databases stores data in…
Amazon CloudWatch & CloudTrail
Amazon CloudWatch It’s an Amazon web service that monitors the AWS resources and the applications you run on AWS in a particular…
Common mistakes using a few PHP functions
Common mistakes using a few PHP functions: empty() – commonly mistaken due to different results with different content. Most of the time…
Naming conventions – PHP
Here are the suggested naming conventions for Variables, Classes, Functions and Files. Naming Variables Use all lower case. Use _ to separate…
Best coding Practices – PHP
Never put phpinfo() in the root directory Assignments in arrays may be aligned. When splitting array definitions onto several lines, the last…
Node.js
How to enable v8 inspector for debugging and profiling? –inspect –inspect=<PORT NO> NodeJS is advised to be used for? Single Page Applications…
Compile time & run time
Q1. Difference between Run time and compile time? A: To become an executable program, source code should be compiled into machine code.…
jQuery
Q: What is the difference between onload() and document.ready()? A: In a page, we can have only one onload function but we…