polkamnidhiblog.hashnode.comGCP Cloud 2025.....🧠 GCP Cloud Engineer – Key Responsibilities & Core Tech Stacks RoleKey ResponsibilitiesCore Tech Stacks 1. Cloud Infrastructure Engineer- Design and manage scalable GCP infra- Automate provisioning (IaC)- Optimize cost/performance- GKE, Compu...Jul 11, 2025·7 min read
polkamnidhiblog.hashnode.comGCP Cloud Engineer Learning Path LabsLink: GCP Cloud Engineer Learning Path WEEK 1 03 Google Cloud Fundamentals: Core Infrastructure → Introducing Google Cloud → Resources and Access in the cloud Getting Started with cloud marketplace → Virtual Machines and Networks in the Cloud G...Jun 25, 2025·3 min read
polkamnidhiblog.hashnode.comA Tour of Google cloud Hands-onLab-Course: A Tour of Google Cloud Hands-on Start: The username that resembles student-xx-xxxxxx@qwiklabs.net is a Google account that was created for your use as a student. It has a specific domain name, which is qwiklabs.net, and has been assigned...Jun 24, 2025·4 min read
polkamnidhiblog.hashnode.comCreate a Graphimport java.util.*; class Graph{ private final int V; private final List<List<Integer>> adjList; public Graph(int Vtcs) { this.V = Vtcs; adjList = new ArrayList<>(V); //[] for(int i=0 ; i<V ; i++) { ...Jun 13, 2025·1 min read
polkamnidhiblog.hashnode.comPerform BFS, DFS for both connected & disconnected Graphsimport java.util.*; class Graph{ private final int V; private final List<List<Integer>> adjList; public Graph(int Vtcs) { this.V = Vtcs; adjList = new ArrayList<>(V); //[] for(int i=0 ; i<V ; i++) { ...Jun 13, 2025·3 min read