DPDiksha Pandeyinmewithus.hashnode.dev·Apr 22, 2023 · 2 min readMachine LearningMachine Learning is the application of Artificial Intelligence that allows the system to learn automatically and improve from experiences without being explicitly programmed. The main object of machine learning is "to learn without human interfere". ...00
DPDiksha Pandeyinmewithus.hashnode.dev·Apr 18, 2023 · 1 min readTop-Down ParsingTop Down Parser constructs Parse tree starting from Root and proceeding towards Leaf node. Top-Down Parser uses Left Most Derivation(L.M.D). for example- S -> AB A -> a B -> b Types of Top-Down Parser- Backtracking(Brute Force Method)-: Backtrackin...01S
DPDiksha Pandeyinlearnwith.hashnode.dev·Apr 16, 2023 · 1 min readCompiler Design-A compiler is Software that translates High-Level Language to Low-Level Language. For Example, C Compiler translates C code into Assembly Language and Java Compiler translates Java Code into Byte Code. The task of the Compiler- The main two tasks of ...00
DPDiksha Pandeyinmewithus.hashnode.dev·Apr 11, 2023 · 1 min readConnectivityEdge Connectivity is a minimum number of edges in a connected graph 'G', whose removal leaves the graph Disconnected. It is represented by λ(G). Example: In this fig, Edge Connectivity is 2, because from vertex 'e' if we remove edge to be and ed the...03SDR