Posts

Showing posts with the label SEMESTER IV

TPP TECHNICAL

Image
 Share more and more And comment for help

Design and Analysis of Algorithms

Image
 Share more and more And comment for help      Assignment 1  Solution            Download               

Design and Analysis of Algorithms Lab

Image
 Share more and more And comment for help  List of Experiment: Task 1: Code and analyze solutions to the following problem with given strategies: i. Knap Sack using a greedy approach ii. Knap Sack using a dynamic approach Task 2: Code and analyze to find an optimal solution to matrix chain multiplication using dynamic programming. Task 3: Code and analyze to find an optimal solution to TSP using dynamic programming. Task 4: Implementing an application of DFS such as: i. to find the topological sort of a directed acyclic graph ii. to find a path from source to goal in a maze. Task 5: Implement an application of BFS such as: i. to find connected components of an undirected graph ii. to check whether a given graph is bipartite. Task 6: Code and analyze to find the shortest paths in a graph with positive edge weights using Dijkstra’s algorithm. Task 7: Code and analyze to find shortest paths in a graph with arbitrary edge weights using the Bellman-Ford algorithm. Task 8: Code and ...

Aptitude

Image
 Share more and more And comment for help Syllabus: Reasoning: Reasoning Lectures   Allotted   (Hours) Quant Lectures   Allotted   (Hours) 1. Coding-Decoding   3 1.   Vedic   Maths   and   Simplification     6   2.   Directions   2 2.   LCM/HCF   and   problem   on   nos. 3.   Odd   man   out 1 3.   Averages 5     4.   Ages     5.   Ratio   proportion 3     6.   Percentages 4 TOTAL 6 TOTAL 18 Execution: Execution S.No. Topics Lectures   Allotted   (Hours)   1 Vedic Maths   and   Simplification     6 2 LCM/HCF and   problem   on   nos. 3 Coding-Decoding 3 4 Averages 5 5 Ages 6 Directions 2 7 Ratio   proportion 3 8 Percentages 4 9 Odd   one   out 1 Logical   +   Quant 24 Assignment 1 Questions          Download Assignment 1...

Operating Systems Lab

Image
 Share more and more And comment for help List Of  Experiments: Task 1:  Installation Process of various operating systems. Task 2:  Implementation of CPU scheduling algorithms to find turnaround time and waiting time. a) FCFS b) SJF c) Round Robin (pre-emptive) d) Priority. Task 3:  Virtualization, Installation of Virtual Machine Software and installation of Operating System on Virtual Machine. Task 4:  Commands for files & directories: cd, ls, cp, md, rm, mkdir, rmdir. Creating and viewing files using cat. File comparisons. Disk related commands: checking disk free spaces. Processes in linux, connecting processes with pipes, background processing, managing multiple processes. Background process: changing process priority, scheduling of processes at command, batch commands, kill, ps, who, sleep. Printing commands, grep, fgrep, find, sort, cal, banner, touch, file. File related commands ws, sat, cut, grep. Task 5:  Shell Programming: Basic of shell...

Operating Systems

Image
 Share more and more And comment for help Important Books : Download (70 MB)        Click Here     Assignment 1                  Download SYLLABUS (Detailed Contents): Module 1: Introduction Concept of Operating Systems, Generations of Operating systems, Types of Operating Systems, OS Services, System Calls, Structure of an OS - Layered, Monolithic, Microkernel Operating Systems, Concept of Virtual Machine. Case study on UNIX and WINDOWS Operating System. Module 2: Processes Definition, Process Relationship, Different states of a Process, Process State transitions, Process Control Block (PCB), Context switching Thread:  Definition, Various states, Benefits of threads, Types of threads, Concept of multi-threads, Process Scheduling:  Foundation and Scheduling objectives, Types of Schedulers, Scheduling criteria: CPU utilization, Throughput, Turnaround Time, Waiting Time, Response Time;...

Soft Skills

Image
 Share more and more And comment for help

Computer Organization & Architecture Lab

Image
 Share more and more And comment for help

Computer Organization & Architecture

Image
 Share more and more And comment for help Important Books : Download (102 MB)        Click Here    

Java

Image
 Share more and more And comment for help Only Java syllabus:             Click Here   Important Books and the internet notes : Download (20 MB)        Click Here     ASSIGNMENT 1:                                       Download Java Assignment 1 Java Workspace used for  making assignment contain all  java files  of the program below    Download   Question 1:  Write a program to check if a given number is Positive, Negative or Zero. Code: package  first;   import  java.util.Scanner;   public   class  firstcode {          public   static   void  main(String[]  args )            {               ...