DgglobalTech

Technology Blog

  • Home
  • About Us
  • Interview Brain Teasers
    • Face to Face Interview Questions
  • Telephonic Interview Questions
  • Tutorial
    • HTML5 Tutorial
    • Video Tutorial
    • Javascript Tutorial
    • CSS3 Tutorial
    • Java Introduction
  • Contact Us

Articles by admin

DOM Tree Traversal through Breadth-first Search (BFS)

January 15, 2021 admin 0

First We will learn about What is BFS? Breadth-first search (BFS) is an algorithm for traversing tree structures. The algorithm starts at the root node and […]

DOM Tree Traversal through Depth-first Search (DFS)

January 13, 2021 admin 0

First We will learn about What is DFS? Depth–first search (DFS) is an algorithm for traversing tree structures. The algorithm starts at the root node and […]

Video Tutorial Series

December 23, 2020 admin 0

Check Out Our Video Tutorials for Interview Practice!

JavaScript interview questions and answers

Coding Challenge: Given an unsorted array A of size N of non-negative integers, find a continuous sub-array which adds to a given number S.

June 28, 2020 admin 0

Input: [1, 2, 4, 6, 7, 5], 12 Output: [7,5] Logic Implementation: We can keep adding numbers from array. We can check conditions, if it […]

Write the code to find the balance point of an Array.

April 27, 2020 admin 0

Question: You have given an array of integer. You need to create the algorithm which finds the balance point in the given array and return […]

Design a webpage which can auto-post new posts when you reach the bottom of the page by using JavaScript.

April 26, 2020 admin 0

First of all you need to create the html page which contains 1 or 2 posts, which means on the page you can show headline […]

Coding Challenge – Find maximum in a stack in o(1) time!

April 15, 2020 admin 0

Question: Create getMax() function to find maximum in a stack in O(1) time! This is widely asked technical interview for software engineers. You should know […]

Coding Challenge – Find the year with the most number of people alive!

April 13, 2020 admin 0

Question: Given a list of people with their birth and end years (all between 1900 and 2000), find the year with the most number of people alive. Input: […]

Coding Challenge – Bring all nonzero elements to the left of the array

April 11, 2020 admin 0

Question: Write an algorithm that brings all nonzero elements to the left of the array, and returns the number of nonzero elements. Input : {1, […]

Coding Challenge – Find out if a given singly-linked list contains a cycle.

April 8, 2020 admin 0

Question: Write a function testListCycle() that takes node as argument for a given singly-linked list and returns a boolean indicating whether the list contains a cycle. A cycle meaning when […]

Posts navigation

1 2 … 11 »

Video Tutorial

Video Tutorial

Copyright © 2021 | All Rights Reserved By DglobalTech.