Just Wait we are coming with IPL WebApp out there

Friday, 30 July 2021

Very Important JavaScript Functions

Very Important Javascript functions. You must know these functions in order to call yourself a JS Developer.


  1. JSON.parse
  2. Stringify
  3. Convert Object to an array
  4. Object Keys
  5. Object Values
  6. Object Assign

Friday, 29 January 2021

Interesting Questions of Software Engineering

 1) Rest full API
    Source: https://www.smashingmagazine.com/2018/01/understanding-using-rest-api/

Short: 
REST determines how the API looks like. It stands for “Representational State Transfer”. It is a set of rules that developers follow when they create their API. One of these rules states that you should be able to get a piece of data (called a resource) when you link to a specific URL.

2) How passwords are stored in the Database?

    
    Source: https://www.geeksforgeeks.org/store-password-database/#:~:text=The%20password%20entered%20by%20user,is%20different%20for%20different%20users.

Short: You can generate a Random Salt for every user to secure the user's password.

Sunday, 19 January 2020

" . $txt1 . ""; echo "Study PHP at " . $txt2 . "
"; echo $x + $y; ?>