List of Interview Questions Interview questions on Software Quality In this article, we have covered Interview questions on Software Quality including QA, Software testing and much more.
Culture S. P. Sundaram [Indian Mathematician] S. P. Sundaram was an Indian Mathematician during the early twentieth century and originated from Sathyamangalam in Tamil Nadu. He is best known for Sieve of Sundaram, an algorithm for finding Primes.
JavaScript Snake Game Using JavaScript In this article, we have explained how to build Snake game using HTML, CSS and JavaScript. This is a strong web development project to work on and is a good addition to Web Developer Portfolio.
C Programming Copy struct in C [Shallow & Deep Copy] In this article, we have explained how to copy a struct in C Programming Language to another struct. We have covered different cases including Shallow and Deep copy.
C Programming Return two digit after decimal point in C In this article, we have explained how to return two digits after decimal point using functions and implemented the technique in C Programming Language.
C Programming Return last two digits of an Integer in C In this article, we have explained how to return last two digits of an Integer using functions and implemented the technique in C Programming Language.
Culture Mass Tech Layoff in 2023: How to stay safe? Over 120,000 employees were dismissed from their job in 2022 from large technology corporations like Google, Amazon, Meta (Facebook), Microsoft, Netflix and major startups. In 2023, it is estimated another 190,000 employees will lose their job due to this trend of mass layoff.
Time Complexity Time Complexity to sort N strings In this article, we have explored the Time Complexity to sort N strings when each string is of length M. This is an important Algorithmic questions which most get it wrong.
Algorithms 5 Advantages of Huffman coding In this article, we have explored the 5 advantages of Huffman coding and why it is one of the best encoding method despite being so simple.
C Programming Print the triangular pattern (right angle triangle) in C In this article, we have take a look at how to print a triangular pattern (right angle triangle) with integers 1 to 15 in C Programming Language.
C Programming Print the 2x3 rectangular matrix in C In this article, we have take a look at how to print a rectangular matrix of size 2 * 3 with integers in C Programming Language with numbers from 1 to 6.
C++ strtol in C++ In this article, we will learn about strtol in C++ and we will also compare it with other similar functions such as strtoul.
JavaScript Detect Ctrl+C and Ctrl+V using JavaScript In this article, we have explained with code examples how to detect the key presses Ctrl + C and Ctrl + V using JavaScript on a webpage. The two keypresses are mainly used for Copy and Paste.
Python Python script to create GitHub repository In this article, we have explored the approach to create a Python script to create GitHub repository. In this, we have used GitHub REST API.
Software Engineering 5 Types of Web Servers A web server is a software application that runs on a computer and is responsible for serving web content, such as HTML pages, to clients over the internet. When a user enters a web address into their web browser, the browser sends a request to the web server.
JavaScript Disable Text Selection, Copy, Cut, Paste and Right-click in JS (JavaScript) In this article, we will explored how to disable Text Selection, Copy, Cut, Paste and Right-click in JS (JavaScript) with example code and a interactive demo.
C++ snprintf() function in C++ In this article, we will look at snprintf() function in C++ which is used to print strings in formatted way as a character buffer.
C++ Struct inheritance in C++ One of the most important concepts in object-oriented programming is inheritance. Inheritance allows us to define a class or a structure (struct) in terms of another class, which makes it easier to create and maintain an application.
Software Engineering WebRTC [Introduction] This article is an introduction into WebRTC, a free and open-source project providing web browsers and mobile applications with real-time communication via application programming interfaces.
Top tech that is changing the finance world forever Technology is quite literally constantly evolving and changing the world around everyone today. In the finance world, this is especially evident as new technology is paving the way for a special new era of financial transactions.
Deep Learning Instance Segmentation In this article, we will dive deeper in a very important concept in computer vision which considered a great progress in deep learning field which is Instance Segmentation. what is it?, the most popular algorithm for it, and its evaluation metric.
C++ ifstream in C++ In this article, we have explored the idea of ifstream in C++ and explained how it is used with C++ code examples.
C++ memcmp() function in C++ memcmp() is a C++ function that compares a specified number of characters in two pointer objects.
C++ Delete default constructor in C++ In this article, we have explored how to delete the default constructor in C++ Programming Language using different C++ code examples.
C++ static_cast in C++ In this article, we will learn about static_cast in C++ Programming Language and understand when to use it in contrast to similar functions like dynamic_cast.