Posts

Showing posts from March, 2022

Top 15 JavaScript Interview Questions

Image
Most Commonly Asked JavaScript Interview Questions JavaScript is the most popular scripting language and it was developed by Netscape and used to develop the client-side web applications. JS - Education Funda The real name of JavaScript was Mocha . JavaScript is provided by Netscape and JScript name is provided by Microsoft. Check The 15 JavaScript Interview Questions in Below Video: © Education Funda Some Important Features of JavaScript Are: Lightweight Easy to use with html Compatible with most of the programming languages Open source platform for everyone Thanks for reading this article ✌

Solve MongoDB.Service: Failed With Result 'Exit-Code'

Image
Solve MongoDB Failed Service Error This worked for me and I didn't reinstall MongoDB. I have created manually sudo mkdir /var/lib/mongodb sudo mkdir /var/log/mongodb   and changed owner permission for both sudo chown -R mongodb:mongodb /var/lib/mongodb sudo chown -R mongodb:mongodb /var/log/mongodb   pgrep mongod sudo service mongodb start sudo service mongodb status Please share your feedback in comment section. Thanks

Get Real IP Address Of Any Website

Image
Get Real IP Address of Google, Facebook, YouTube, Instagram and Twitter What is IP Address? An IP address is a unique address that identifies a device on the internet or a local network. IP stands for "Internet Protocol," which is the set of rules governing the format of data sent via the internet or local network. IP Address - Education Funda Tool You can use your laptop or desktop to get IP address any website, you just need to open the command prompt of your operating system either windows operating system or linux operating system. In windows operating system just type CMD in search box so easily command line interface will open where you can run the command which we shown in this video. Here is the video with explanation how to get real ip address of any domain: Content in Video: - Get Google IP Address - Get Facebook IP Address - Get YouTube IP Address - Get Instagram IP Address - Get Twitter IP Address Thanks for reading this blog, I hope it will help you to increase ...

Top GIT Interview Questions

Image
Git is an open source code management system (SCM) which can control the source code of small and large scale projects in a very efficient way along with speed. It uses C language to maintain high level languages easily. GIT - Education Funda Let's jump into "Top 10 GIT Interview Questions": Important Notes For You GIT Repository A repository consists of a list named .git, where git holds all of its metadata for the catalogue. The content of the .git file is private to Git. GIT Stash When we do some edits and this edit we don’t want to push in the master branch so we can use the ‘git stash’ command. It will store the edits in Stack and our production branch will not reflect with it. For getting these changes again we can create a new branch and use ‘git status pop’ for retrieving the ‘git stash’ edits. We can remove the last added stash via the ‘git stash drop’ command and if we want to use specific then we can also do it via passing arguments. For showing listings o...

Is PHP Enough For PHP Developers

Image
PHP is a server side scripting language designed for web development by Rasmus Lerdorf in 1994. PHP - Education Funda If we talking about Core PHP knowledge only so nowadays as per developers trends it is not enough check in below video why it is not enough. Thanks for reading this article !!

Understand Agile Methodologies

Image
Agile & It’s Methodologies (Scrum, XP, Crystal, FDD, DSDM, LSD, Kanban) Agile Concept - Education Funda Agile is a software development approach which has multiple methodologies which we have to follow in it. Agile follows the iterations process, which means delivery project modules milestone wise. SCRUM is part of Agile or one of the Agile methodology. SCRUM methodology works under team-centric flow, meaning all team work in team.  SCRUM basically follows the 3 step rules which is Product Owner, Scrum Master and The Team. Product Owner is that person who directly deals with clients and which is like a principle of that project. Scrum Master is like a Team Lead for that project who assigns everything to the team and does further management. The Team includes all the back-end developers, designers, etc which is the team of 3 - 9 persons maximum as per SCRUM rule. XP (extreme programming) works under customer-centric flow, which means this methodology focuses on customer feedback...