Assalamualaikum warahmatullah wabarakatuh( traditional Islamic greeting in Arabic "Assalamu alaikum": "Peace be upon you." "Wa rahmatullahi": "And the mercy of Allah." "Wa barakatuh": "And His blessings.") I’m Faraz Alam, and I’m documenting my journey through the world of software technology. Despite earning a master’s degree in Computer Applications and having access to opportunities provided by my tier-3 college, I struggled to take full advantage of them due to poor management and a less productive environment. This led to joblessness, primarily due to a lack of upskilling. Now, I am dedicated to enhancing my skills and knowledge with the aim of securing a valuable job offer from leading product-based companies, including those in the FAANG group (Facebook, Amazon, Apple, Netflix, Google) and other prominent tech giants. This documentation is not for self-promotion; rather, it is for anyone who is waiting for an opportunity but feels they lack the tools and skills required to overcome challenges. It’s a testament to the effort and responsibility needed to navigate the journey towards success when you take charge of your own path. Date: 31 July 2024, 07:25 AM This page will be updated regularly to reflect new achievements and milestones as I continue to build my career.
Nothing here yet.
Sep 27, 2025 · 3 min read · 1) Detect a cycle in graph #include <bits/stdc++.h> using namespace std; struct Edge { int src, dest; }; struct Graph { int V, E; vector<Edge> edges; }; // Find the root parent of a node (with path compression) int find(vector<int>& pa...
Join discussion
Sep 23, 2025 · 4 min read · 1) Basic about c++ string char str[] = "Geeks"; string string_name = "Sample String"; // Internal Representation: String characters are internally stored as integers. This means: Characters like 'A' to 'Z' are mapped to integer values 65 to 90. Char...
Join discussion
Sep 1, 2025 · 6 min read · Properties of matrix A matrix represents a collection of numbers arranged in order of rows and columns. It is necessary to enclose the elements of a matrix in parentheses or brackets. A matrix with 9 elements is shown below: The above Matrix M ha...
Join discussion