Posts

MMPC-016 Solved Assignment 2023-24

  For complete solved assignment visit:   Click here for solution For Pdf of Assignment Solution contact:  Reach me here

MMPO-005 Solved Assignment 2023-24

  For complete solved assignment visit: Click here for Solution

Array

Image
  An array is a collection of similar data elements stored at contiguous memory locations. It is the simplest data structure where each data element can be accessed directly by only using its index number. For instance, if we want to store the marks scored by a student in 5 subjects, then there’s no need to define individual variables for each subject. Rather, we can define an array which will store the data elements at contiguous memory locations. · array  marks[5]  defines the marks scored by a student in 5 different subjects where each subject marks are located at a particular location in the array i.e.  marks[0]  denotes the marks scored in first subject,  marks[1]  denotes the marks scored in 2nd subject and so on.
  STACKS in Data Structure A stack is  an abstract data type that holds an ordered, linear sequence of items . In contrast to a queue, a stack is a last in, first out (LIFO) structure. A real-life example is a stack of plates: you can only take a plate from the top of the stack, and you can only add a plate to the top of the stack... Click here to Know more

Asymptotic notations

  Data Structure The main idea of asymptotic analysis is to have a measure of efficiency of algorithms that doesn’t depend on machine specific constants,  and doesn’t require algorithms to be implemented and time taken by programs to be compared. Asymptotic notations are mathematical tools to represent time complexity of algorithms for asymptotic analysis.  The following 3 asymptotic notations are mostly used to represent time complexity of algorithms. 1) Θ Notation, 2) Big O Notation, 3) Ω Notation. Click here to learn more

MCS-032 Object Oriented Analysis and Design Solved Assignment 2019-2020

Q1. What is OOAD? Explain concepts of objects and class with the help of examples and diagrams. Ans. Object-oriented analysis and design (OOAD) is a popular technical approach for analyzing and designing an application, system, or business by applying objectoriented programming, as well as using visual modeling throughout the development life cycles to foster better stakeholder communication and product quality. OOAD in modern software engineering is typically conducted in an iterative and incremental way. The outputs of OOAD activities are analysis models (for OOA) and design models (for OOD) respectively. The intention is for these to be continuously refined and evolved, driven by key factors like risks and business values Object and Class The concepts of objects and classes are intrinsically linked with each other and form the foundation of object–oriented paradigm. For complete solution Click Here 👉 For any query contact me.