Cloud Computing AWS vs Azure vs Google Cloud Platform (GCP) vs Salesforce: A Comprehensive Comparison of Leading Cloud Providers In this article at OpenGenus, we have compared the four Leading Cloud Providers that is AWS vs Azure vs Google Cloud Platform (GCP) vs Salesforce.
Machine Learning (ML) Hinge Loss for SVM This article at OpenGenus will examine the notion of Hinge loss for SVM, providing insight into loss function.
Algorithms Range greatest common divisor (GCD) query using Sparse table In this article at OpenGenus, we will be discussing one of the common problem in computer science that involves finding the GCD of a given range of numbers in an array. One of the efficient solution is to use sparse table data structure to solve this problem.
HTML DOCTYPE in HTML DOCTYPE is a declaration, but definitely not a tag. It's the first line that you write in a HTML/XHTML documents.
Linear Search Advantages and Disadvantages of Linear Search In this article at OpenGenus, we have explained 7 Advantages and 5 Disadvantages of Linear Search. This will give you a core insight about Linear Search.
Python Multi-threaded Python Program for Linear Search The most common approach is to do Linear Search and when used in a multi-threaded fashion, it utilizes 100% of the CPU Core. In this article at OpenGenus, we demonstrate this by implementing Multi-threaded Linear Search in Python Programming.
Deep Learning OpenAI Codex: A Technical Overview: Model behind LLM The aim of this article at OpenGenus shall be to facilitate an understanding of the concepts and principles behind the OpenAI Codex, it's applications and it's implementation for use by a layperson.
Ruby Programming Ruby program for prime number (Prime class + Sieve of Eratosthenes) In the article at OpenGenus, we will be talking about the methods used to find prime numbers using the Ruby coding language. Methods such as the Ruby Prime class, Sieve of Eratosthenes and many others will be covered.
Java Multi-threaded Java program for Linear Search In this article at OpenGenus, we harness the power of multi-threaded to run Linear Search on an array in parallel across multiple threads in Java. We use threads to divide the array into smaller parts and perform Linear Search on each part concurrently.
C++ Multi-threaded C++ program for Linear Search In this article at OpenGenus, we have explained how to do Linear Search in a multi-threaded way in C++ Programming Language. We have presented this with the complete C++ code.
System Design System Design of Amazon Hub Locker Service Amazon Hub Locker Service is a convenient and secure delivery option that allows customers to pick up their packages from self-service lockers located in various public places.
Java Java Program to Calculate Standard, Mean Deviation and Variance In this article at OpenGenus, we will learn to calculate the standard deviation, mean deviation and variance in Java.
Rust Programming Multi-threaded RUST Program for Linear Search In this article at OpenGenus, we have explained how to implement Linear Search in Rust Programming Language using threads along with the complete Rust code.
C++ Print Parallelogram Star Pattern in C++ In this article at OpenGenus, we will learn how to print a parallelogram star pattern using C++. This is a common programming exercise that can help beginners get familiar with loops and basic C++ syntax.
Culture Do Google Search index LinkedIn posts? After the acquisition of LinkedIn by Microsoft, LinkedIn has rose to become the premium social media for professionals. In this article at OpenGenus, we answered the doubt if LinkedIn posts are indexed by Google Search.
Culture People who started the LLM revolution In this article at OpenGenus, we will take a look at what the team of 8 people are doing today who where behind the revolutionary paper that triggered the growth of Large Language Models (LLM) like ChatGPT/ GPT-4 since 2017.
Applications of Thermodynamics In this article at OpenGenus, we have explained applications of Thermodynamics in our day to day lives.
C Programming Selection sort in C In this article, we have explained how selection sort and implement a program on the same in C Programming Language.
Software Engineering 4 Advantages and 6 disadvantages of Inheritance In this article at OpenGenus, we have listed and explained the advantages and disadvantages of Inheritance.
Java Custom Exceptions in Java The term "custom exception" or "user-defined exception" refers to the creation of our own exceptions in Java, which are derived classes of the Exception class. In general, Java custom exceptions are used to tailor the exception to user needs.
C Programming Fibonacci sequence in C In this article at OpenGenus, we will explore how to generate a Fibonacci sequence and implement a program in C Programming Language to demonstrate the concept.
C Programming C program to check if given letter is a vowel, consonant or an alphabet In this article at OpenGenus, we will check whether the given alphabet or letter is a vowel, consonant or an alphabet. We have demonstrated this with a C program.
Python Virtual Environments: What are they? Virtual environments are isolated or private spaces within a computer system where software and dependencies can be installed and managed independently of the system-wide environment.
C++ Hollow and Filled Square pattern in C++ In this article, we will learn how to generate both a hollow and filled square pattern in C++.
C Programming Merge Sort in C In this article at OpenGenus, we have explained merge sort and implemented a program on the same in C Programming Language.