multilist implementation for registration problem

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • BABAR SOHAIL
    New Member
    • May 2019
    • 1

    multilist implementation for registration problem

    A university with 40,000 students and 2,500 courses needs to be able to generate two types of reports. The first report lists the class registration for each class, and the second report lists, by student, the classes that each student is registered for.

    I do not know, how to implement .can anyone help.
  • Luuk
    Recognized Expert Top Contributor
    • Mar 2012
    • 1043

    #2
    How/Where do you get the information from these 40000 studens and 2500 courses?

    Are they stored in a Microsoft SQL Server? if so , you could use Microsoft Reporting Services to create those reports.

    On the other hand, if you are following a course in C/C++ programming, please show what you have learned, and where you got at the point 'I do not know'.

    Comment

    • dev7060
      Recognized Expert Contributor
      • Mar 2017
      • 655

      #3
      One way of doing this is to use file handling. Reports can be stored as separate binary or text files.

      Comment

      • donbock
        Recognized Expert Top Contributor
        • Mar 2008
        • 2427

        #4
        Is this assignment for a beginning C/C++ programming course?
        Is it for a beginning database design course?
        Is it for some other kind of course?

        The context is needed to craft an appropriate answer.

        Comment

        • jackob1234
          New Member
          • Mar 2020
          • 2

          #5
          if any one can solve this problem can help me and sent the code for me ?

          Comment

          • twinnyfo
            Recognized Expert Moderator Specialist
            • Nov 2011
            • 3653

            #6
            Jackob1234 (et al),

            We do not provide “solutions” for questions such as this. In general, this type of question is highly inappropriate to start, as it is asking for us to provide and end result that the user has obviously not put any effort into. We just don’t do it that way, here on Bytes. If the user has begun the design for their project and has come across hurdles or stumbling block or has errors popping up for unknown reasons, we are glad to help work through these issues. But, we are not going to build a database that can handle a university of 40,000 students. If someone were TRULY hired to do such a project, they would not have asked such a broadly open-ended question like they have here.

            This is most likely a school assignment and the OP wants someone else to do their work for them....

            Comment

            • jackob1234
              New Member
              • Mar 2020
              • 2

              #7
              twinnyfo

              thank you i am really tired in this project and i am try to solve it but i am fail this is a school project and my Colleagues are in groups to do this project put i am alone and no one want me to join any group

              Comment

              • Luuk
                Recognized Expert Top Contributor
                • Mar 2012
                • 1043

                #8
                @jackob1234: as donbock wrote you have to ask a NEW question, specify what your problem is, and tell us what YOU did to try and solve it. Explain where you 'got stuck'. Someone here will/can provide tips on ho to proceed with solving your problem but, in the end, YOU will solve the problem (with some help from a kind poster here 😉), which is much more satisfying than copy/paste a given solution which you do not understand how it works anywayz,,,

                Comment

                • donbock
                  Recognized Expert Top Contributor
                  • Mar 2008
                  • 2427

                  #9
                  I'll leave it to the moderators to decide if, as a different OP, you should start a new thread or if it is ok in this situation to hijack this one.

                  As I asked earlier, what kind of course is this for? If you don't tell us then it is very likely that any answer we provide will be to the wrong question.

                  Are you given the enrollment information for the 40,000 students and 2,500 courses? If so, what form is that data in: source code (structure initializer), data files, relational database, etc.

                  Comment

                  Working...