Tuesday, December 23, 2025

DSA-BCS304-PPT

 

INTRODUCTION TO DATA STRUCTURES 
ARRAYS and STRUCTURES: STACKS:
QUEUES  LINKED LISTS  Additional List Operations


TREES:GRAPHS:


HASHING: PRIORITY QUEUES: INTRODUCTION TO EFFICIENT BINARY SEARCH TREES:



Written Assignment

 Please solve all queations for QP available in Below Link

If question is repeated concider it as void

Question paper Link


Assignment -Project Cipher Text

This cipher encrypts and decrypts a sequence of characters by dividing the sequence into blocks of size n, where n is specified by the encryption key. If the input text has a length that is not a multiple of input text has a length that is not a multiple of n, the last block is padded with null characters ('\0'). In addition to In addition to n, the key also specifies two parameters a and b. For each block, the i-th output character, starting from 0 as usual, is set to the j-th input character, where j = (ai + b) mod n. For appropriate choices of a and b, this will reorder the characters in the block in a way that can be reversed by choosing a corresponding decryption key (n, a, b).
 


For example, if n = 3, a = 2, and b = 3, the string Hello, world! would be encrypted like this:






Thursday, November 13, 2025

Syllabus Covered and PPT DATA STRUCTURES AND APPLICATIONS (BCS304)

 Syllabus Covered 

Module-1 8Hours

INTRODUCTION TO DATA STRUCTURES: Data Structures, Classifications (Primitive & Non-Primitive), Data structure Operations Review of pointers and dynamic Memory Allocation, ARRAYS and STRUCTURES: Arrays, Dynamic Allocated Arrays, Structures and Unions, Polynomials, Sparse Matrices, representation of Multidimensional Arrays, Strings STACKS: Stacks, Stacks Using Dynamic Arrays, Evaluation and conversion of Expressions 

Text Book: Chapter-1:1.2 Chapter-2: 2.1 to 2.7 Chapter-3: 3.1,3.2,3.6

Reference Book 1: 1.1 to 1.4

Module-2 8Hours

QUEUES: Queues, Circular Queues, Using Dynamic Arrays, Multiple Stacks and queues. LINKED LISTS : Singly Linked, Lists and Chains, Representing Chains in C, Linked Stacks and Queues, Polynomials

Text Book: Chapter-3: 3.3, 3.4, 3.7 Chapter-4: 4.1 to 4.4
Module 3 8Hours

LINKED LISTS : Additional List Operations, Sparse Matrices, Doubly Linked List. 

If any discripancies are found write back to dhananjay@gndecb.ac.in

Monday, April 21, 2025

MBA Python Assignment

 

A example xls sheet can be downloaded from below given link

download xls sheet from here

Please use python suitable library to

1 Find total sales 

2 Quarterly sales

3 Quarter with min sale

4 quarter with maximum sales

5 average sales in each quarter

5 Standard deviation of quarter

You can share PDF copy of the code outcome









Tuesday, December 17, 2024

Assignment 3 Cloud computing 21CS72

 Assignment 3 will be evaluated for 20 marks 

A: Refer the following published articles 

https://arxiv.org/pdf/1911.01941

https://www.sciencedirect.com/science/article/pii/S2666285X2200036X

Read article carefully and identify the Risk posed by AI development to Cloud Computing

Propose risk mitigation steps

B. Consider the case of  any OTT platform and consider the business model used and delivery model architecture. How cloud computing technology is leveraged in this technology.

Make a brief report on above 

All soft copies are to mailed to dhananjay@gndecb.ac.in

Last date to submit 28-12-2024

Any mail after due date will not considered for evaluation

 

Wednesday, November 20, 2024

Updated PPT 21CS72

 

Link to download / view PPT

For any quires mail to:

dhananjay@gndecb.ac.in

Assignment 21CS72 cloud computing

 

Assignment

1 Study the architecture of VBOX from Oracle 

2 compare architecture with VMware

3. Down load Vbox image 

Link https://www.virtualbox.org/wiki/Downloads

4 Download Ubuntu image 

Link  https://ubuntu.com/download/desktop 20 LTS server

Configure VBox as per your system resources

Run ubuntu desktop VM

Connect your VM system with host OS



Thursday, July 25, 2024

 Quiz carries 20 Marks Please note following

Keep Ready a pdf file congaing answer for following question available in google Form

Write a C /Java program to 

1 Exchange values of two given variable without using third variable or pointer. 5 marks
2. Identify number of bits Required to represent an integer number  
 5 Marks
No functions are to be called. 
Upload a single PDF file with file name as your USN Ex. 22AI089.pdf


Use the following link to upload pdf and answer all questions

DSA-BCS304-PPT

  I NTRODUCTION TO DATA STRUCTURES  ARRAYS and STRUCTURES:  STACKS: QUEUES  LINKED LISTS  Additional List Operations TREES: GRAPHS: HASHIN...