C++ TCHAR, WCHAR, LPSTR, LPWSTR, LPCTSTR in C++ In this article, we are going to learn about the TCHAR, WCHAR, LPSTR, LPWSTR, LPCTSTR in C++ along with code examples.
Problems on Binary Tree Degenerate or Pathological Tree Degenerate or Pathological Tree is a variant of Binary Tree which we have explored in depth along with code implementation for Degenerate or Pathological Tree.
Machine Learning (ML) Huber Fitting using ADMM Huber Fitting in general is the approach of using the Huber function to fit the data models, the advantage of this approach is due to the clever formulation of the Huber function which brilliantly combines the best features of both preceding optimization solution approaches of LAD and LS.
Machine Learning (ML) LASSO using ADMM LASSO is the acronym for Least Absolute Shrinkage and Selection Operator. Regression models' predictability and interpretability were enhanced with the introduction of Lasso.
Machine Learning (ML) Least Absolute Deviation using ADMM Least Absolute Deviation (LAD) is a powerful approach for solving optimization problems with good tolerance to outliers. Hence solving it to obtain a practicably applicable form is essential to take advantage of its theoretical prowess.
Data Communication and Computer Networks How Canada's Internet went down? On 10th July 2022, Canada's internet was DOWN. People were flocking to coffee shops/libraries for internet. I could not get in touch with my friends. How can complete country's internet go down like a house of cards ? Let's dissect it through our technical lenses.
C++ cout is not a member of std [FIXED] In this article, we have explored the reason behind the error "cout is not a member of std" and 2 fixes to resolve this compilation error with C++ code.
C++ [FIXED] /usr/lib/libstdc++.so.6: version 'GLIBCXX_3.4.16' not found In this article, we have explored the cause of the error "/usr/lib/libstdc++.so.6: version 'GLIBCXX_3.4.16' not found" and presented 3 fixes to resolve this runtime error.
Linux List symbols in a .so file In this article, we have presented different commands which can be used to list all or specific symbols in a given shared object .so file. This involve different commands with nm, objdump and readelf.
String Algorithms Power Set of String in Lexicographic order In this article, we have explored what is the meaning of Power Set of String and the algorithm to generate Power Set of String in Lexicographic order.
Machine Learning (ML) Sentiment Analysis with Naive Bayes Classifier Built from Scratch In this article, we will implement a Naive Bayes classifier from scratch to perform sentiment analysis.
Python Interview Questions on NumPy In this article, we have considered around 80 questions covering conceptual as well as practical foundations of NumPy to help you in dealing with arrays of homogeneous type.
HTML 80 Important Interview Questions on HTML This article will cover everything you need to know for your HTML interview.
Culture How privacy policy of iPhone impacted Meta (Facebook) stock by 50%? Last year, Apple announced huge changes to its privacy policy. This gave iPhone users a lot of control of their data. Due to this, Meta stock and earnings dipped by around 50%.
Graph Algorithms Directed vs Undirected Graph In this article, we have explained the differences between Directed and Undirected Graphs based on different attributes such as adjacency matrix, entropy and much more.
C++ Different ways to pause a program in C++ In this article, we are going to learn about the different ways to pause a program in C++. With the help of this method or function, you will be able to pause any C++ program during execution.
data science Project ideas for Data Science In this article, we will get to know some ideas for data science projects.
Operating System Proof that Shortest Job First (SJF) Algorithm is Most Optimal SJF algorithm is the most optimal CPU scheduling algorithm and we have proved this mathematically in this article at OpenGenus.
data science Python questions for Data Science interviews We will discuss a basics of Python here as importance of Python for data science cannot be emphasized enough.
data science Different types of Hypotheses In this article, we will get to know about the various types of hypotheses in statistics.
C++ Convert uint8_t* to char* in C++ In this article, we have presented how to convert an array of uint8_t (uint8_t*) to an array of char (char*).
data science Advanced interview questions on Data Science In this article, we have discussed 35 advanced data science questions asked in interviews.
C++ Undefined reference to pthread_create [FIXED] In this article, we have explored the reason behind the error "Undefined reference to pthread_create" and presented two fixes in the compilation command to fix this compilation error.
Algorithms Convert Binary to Hexadecimal, Octal, Decimal In this article, we will discuss how we can convert a binary number to a hexadecimal, octal, and decimal number.
Algorithms Iterative post-order traversal In this article, we have explained how to do Iterative post-order traversal of a Binary Tree using 3 different techniques along with complete implementation.