Tuesday, 17 July 2018

Styling with CSS3 - Most Popular Question & Answers 13

1. Which feature enables easy identification of corresponding style element? Ans: Selectors 2. Which feature uses :: (double colon)? Ans: Pseudo-Elements 3. Which selector matches the name of any element type? Ans: The Universal Selector 4. What is best way to overcome the default settings that comes with CSS? Ans: create reset.css in-addition to your existing css 5. Applying style to a single specific HTML element can be best achieved through ________ type selector. Ans: ID 6. The...

Sunday, 15 July 2018

AWS Essentials - Most Popular Questions & Answers 19

1. The committee which designs the standards & characteristics for the cloud computing is Ans: NIST 2. I have some private servers on my premises, also I have distributed some of my workload on the public cloud, what is this architecture called? Ans: hybrid cloud 3. Developers and organizations all global around the world leverage ______ extensively Ans: paas 4. Cloud-computing providers offer their services as ______________ Ans: Iaas, paas, saas 5. The _____ services mixes...

Azure Essentials - Most Popular Questions & Answers 44

1. Azure is Microsoft’s ___________ as a Service Web hosting service. Ans: Infrasturcture 2. When using Azure Resource Manager, you can use a _______________ for deployment, which can build identical environments for different work scenarios such as testing, staging, and production.  Ans: Template 3. Which one of the following serives is a NoSQL datastore?  Ans: Tables 4. If you have to replace your current on-premise services in the form of virtual machines, then you can use Microsoft...

Saturday, 17 February 2018

Solution: How to get single column value returning from mysql function 1

Are you using MySQL function? Is it returning any single value? Then you may confused, how to get that value from record set after executing query. You will get idea after reading this detailed post. Okay... Let we write one simple function named mytest(), and make it returns TRUE. Then we will see how to get and assign that TRUE to our server side script variable.  DELIMITER...

Saturday, 13 May 2017

Add number of days to a Date in javascript 1

Problem: Add number of days to a Date in javascript / Add number of days to current date in javascript Solution: To add number of days to a Date, we need to convert our date string to a date object. Here we are going to use javascript inheritance property (prototype) to do that. Actual function : Date.prototype.addDays = function(days){ return new Date(this.getTime()+days*24*60*60*1000); } In this function we are going to convert days to milliseconds using days*24*60*60*1000 and...