Posts

Showing posts with the label Interview Questions

JavaScript Logical Output Based Interview Questions

Image
You mostly seen in JavaScript interviews there interviewers must asks output based questions in which candidate stuck mostly so here in this blog I'm telling you most commonly asked output based JavaScript interview questions. By Education Funda Most Commonly Asked JavaScript Output Based Questions Question: 1 function sum(){      let a = 8;      const b=2;      var c=a+b; } console.log(a) // Reference error: a is not defined console.log(b) // Reference error: b is not defined console.log(c) // Reference error: c is not defined sum() console.log(a) // Reference error: a is not defined console.log(b) // Reference error: b is not defined console.log(c) //Output: undefined ---------------------------------------------------------------------------- Question: 2 let arr=[1,2,3,4,5]; console.log(arr[2], arr.length); //Output: 3 5 arr.length=0; console.log(arr[2], arr.length); //Output: undefined 0 Note:  As we can see in above code 1st ques...

JavaScript Most Commonly Asked Data Structure Questions

Image
Let's See Some Of The Most Commonly Asked Data Structure Interview Questions with Answers Related To Arrays, String and Objects JS Data Structure - Education Funda 1. Custom sorting program in JS via Bubble Sort ? 2. Write a program to check if a string or word or number is palindrome ? Examples of Palindrome Words are:  racecar, madam. 3. Write a program to check if value/target exists or not in ascending array in O(log n) time complexity ? For doing this you should know the Binary Search Algorithm. 4. Write a program to get total vowel count from String ? 5. Write a program to prints factorial of any number ? 6. Write a program for check number is prime or not from 100 to 200 ? 7. Write a program to check whether number is perfect number or not ? Prime Number:  whose SUM of all factors equal to value expect value itself factor. 8. Write a program to find duplicate numbers in an integer array ? 9. How do you find all pairs of an integer array whose sum is equal to a...

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 ✌

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...

Top MongoDB Interview Questions

Image
MongoDB is a document database with the scalability and flexibility that you want with the querying and indexing that you need. Education Funda Let's Jump Into Directly Top 10 MongoDB Interview Questions: Important Notes BSON vs JSON JSON is Standard File Format whereas BSON is Binary File Format. BSON is faster then JSON because it is more efficient and MongoDB stores data in BSON format via MongoDB drivers data converted when we save or update any data. JSON takes less storage space whereas BSON takes more space as compared between both. We can embed 100 JSON formats inside JSON maximum. BSON is an encoded format of data so not easily readable for humans whereas JSON we can easily read. Objectld is composed of: Timestamp Client machine ID Client process ID 3 byte increment counter UpdateOne() vs ReplaceOne() With replaceOne () you can only replace the entire document, while updateOne () allows for updating fields.   Since replaceOne () replaces the entire document - fields in th...

Top Python Interview Questions

Image
Python is one of the most popular back-end programming language. I hope you must be aware it is the language which is compatible with machine learning that is why it is still too popular for development. Python Logo - Education Funda Python is often used to build websites and software, automate tasks, and conduct data analysis. it is a general purpose language, meaning it can be used to create a variety of different programs and isn't specialised for any specific problems. Let's check the top most commonly asked python interview questions in below video: I hope these python interview questions will help you to crack python interviews easily. Thanks for reading this article guys !!

OOPS Concept Interview Questions

Image
Object Oriented Programming Language Interview Questions Object oriented programming is a programming technique to design your application. Application can be of any type like it can be web based application, windows based application etc. OOPS is one of the programming language which is most commonly using in almost each back end programming language such as PHP, Java, Python in all these programming language OOPS is using so it is really important to you to understand about it. That is why in all the interviews related with back-end developers Interviewer will surely asked questions related to OOPS concept so let's see to Top 10 OOPS concept interview questions which is most commonly asked in interviews. Thanks for reading this blog !!

DSA Questions As Per Interview Prep SE

Let's see some of the Important Basic to Advanced Questions Regarding Data Structure & Algorithm Array Questions 1. Given a square matrix (2D array), calculate the sum of the primary diagonal and the secondary diagonal.      [[1, 2, 3], [4, 5, 6], [9, 8, 9]]     Primary Diagonal: 1 + 5 + 9 = 15 Secondary Diagonal: 3 + 5 + 7 = 15 2. Find out the duplicate elements from array.      const numArr = [1, 2, 1, 3, 2, 1, 2, 3, 4, 5]     const strArr = "data structure and algorithm discussion" 3.  The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones, starting from 0 and 1. Write the program for it      Example: 0,1,1,2,3,5,8,13,21,34,55,…     Time complexity should be O(n)      Formula: F(n)=F(n−1)+F(n−2) 4. Flatten the below given array without using array.flat() method.      [1, [2, 3], [4, 5, 6, [7, 8]]]     Output sho...