Questions: 11 448

Answers by our Experts: 10 707

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

Why are the services below important to a firm or company, Explain?

(i) Advertising

(ii) Sales Promotion

 (iii) Personal Selling

(iv) Public Relations 


Program to create a class person having members name and age. Derive a class student having member percentage. Derive another class teacher having member salary. Write necessary member function to initialize, read and write data. Also write the main function. 


Repeatedly Delete N nodes after M nodes of a Linked list:
Given a linked list and two integers M and N. Traverse the linked list such that you retain M
nodes then delete next N nodes, continue the same until end of the linked list.
Input:
M = 2, N = 2
Linked List: 1->2->3->4->5->6->7->8
Output:
Linked List: 1->2->5->6
The main part of the problem is to maintain proper links between nodes, make sure that all
corner cases are handled.
Write a program to print all the elements of the single linked list in reverse order. The
algorithm should have linear time complexity and constant space complexity
Write a program to remove the duplicate elements from a sorted linked list.
Write a program to implement the Doubly linked list. Perform the following operations on
the doubly linked list:
 Creating an empty doubly linked list
 Adding the new element at the beginning of the linked list.
 Deletion of a node after a particular location.
 Counting the no of nodes.
 Displaying the linked list.

Design an algorithm which gets a natural value N as it's input and calculate the numbers equal or less than N. Then write it in a standard output.


WAP in C++ to find multiplication of two complex numbers using constructor overloading. The first constructor which takes no argument is used to create objects which are not initialized, second which takes one argument is used to initialize real and imag parts to ‘equal values and third which takes two argument is used to initialized real and imag to two different values.


QUESTION 7

(20 marks)

A savings and loan association has decided to undertake the development of an in-house computer system to 

replace the processing it currently purchases from a time-sharing bureau. The internal auditors have suggested 

that the system development process be planned in accordance with the Systems Development Life Cycle. The 

following items have been identified as major systems development activities that will have to be undertaken

I.System test

II.Initial investigation

III.Install hardware and software

IV.Implementation planning 

V.Conversion

VI.System survey

VII.Technical specifications

VIII.Systems modification 

IX.User procedures and training

X.Programming

Required:

a)Arrange the above ten items in the sequence in which they should logically occur. (10 marks)

b)Discuss the conceptual systems design process in the SDLC and the activities in this phase. 



#include <iostream>

using namespace std;

class A {

  protected:

    char i;

  public:

    A(char a): i(a) {}

    void display(char x){

      cout << x << " ";

    }

// create abstract function fun()

    ______________________;       

};

class B: ________ {             

  public:

    B(int a = 0): A(a) {}

    void fun(){ display(i+1); }

};

class C: ________ {             

  public:

    C(int a = 0): A(a) {}

    void fun(){ display(i+2); }

};

class D: ________ {           


LATEST TUTORIALS
APPROVED BY CLIENTS