Skip to main content

Miner Project | Major project for college Students | B.E, MCA, B-tech Student project in college

                        Miner Project | Major project college Student for majors and miner project to submit the college and university. we can submit this project to final year students and third-year also?   Download project

This project is written in java language so if you know java then this project for you,

If you want this project you have to join the below link on any social media platforms. also subscribe to my youtube channel then you will get more details about the project.


   Download project

My Other Channel(Er prince Kumar Ojha).

     https://www.youtube.com/channel/UCgcpEPz_96MJAXGDtn1xmVg

My Website for Assignment(Logical Coding Question)

   #https://thejavatemple.blogspot.com/

My Facebook(Prince Kumar)

     https://www.facebook.com/profile.php?id=100013255064826

My Instagram Id(prince Kumar)

  https://www.instagram.com/princekumar4364/

My Blog Website(javaforjob1)

    https://javaforjob1.blogspot.com/

Project link: you can download from hear

   Download project


Name of project: E-Movie Tickets

E-Movie Tickets provides the solution booking tickets from their home or office and view more details on movies.

 

 

         System Analysis

 

Purpose of the System:

Online Ticket Reservation for Cinema Halls provides the solution booking tickets from their home or office and view more details on movies.

Existing System:

·       Existing system Existing system has no facility to book the tickets from their home or office.

·       Existing system does not provide the easy retrieval of movie information.

Proposed System:

The development of this new system contains the following activities, which try to recover the problems from the previous system:

 

·       Secure registration and profile management facilities for system users

·       Tracking member’s activities and progress.

·        Facilitating communication – Through Emails among System users.

·       Basic and advance admin facilities like add/update members, backup/recovery of data, generating various reports etc.

·       Provide the solution for booking requests.

Feasibility Study

    Download project

 TECHNICAL FEASIBILITY:

Evaluating the technical feasibility is the trickiest part of a feasibility study. This is because, at this point in time, not too many detailed designs of the system, making it difficult to access issues like performance, costs on (on account of the kind of technology to be deployed) etc. A number of issues have to be considered while doing technical analysis.

i)           Understand the different technologies involved in the proposed system:                   

Before commencing the project, we have to be very clear about what are the technologies that are to be required for the development of the new system.

ii)         Find out whether the organization currently possesses the required technologies:

o   Is the required technology available with the organization?

o   If so is the capacity sufficient?

For instance –

“Will the current printer be able to handle the new reports and forms required for the new system?”

 

OPERATIONAL FEASIBILITY:

The proposed project is beneficial only if it can be turned into information systems that will meet the organizations operating requirements. Simply stated, this test of feasibility asks if the system will work when it is developed and installed. Are there major barriers to Implementation? Here are questions that will help test the operational feasibility of a project:

Is there sufficient support for the project from management from users? If the current system is well-liked and used to the extent that persons will not be able to see reasons for change, there may be resistance.

Are the current business methods acceptable to the user? If they are not, Users may welcome a change that will bring about a more operational and useful system.

Has the user been involved in the planning and development of the project?

Early involvement reduces the chances of resistance to the system and in general and increases the likelihood of a successful project.

Since the proposed system was to help reduce the hardships encountered. In the existing manual system, the new system was considered to be operationally feasible.  

 

Comments

Popular posts from this blog

#Logic How to convert String Characters lower to upper and upper to low...

How to convert String Characters.  lower to upper and upper to lower How to Convert all the String character Upper and lower . If String character is lower than convert Upper If it is Upper than you have to convert a lower. I am going to introduce it is a very simple and easy way. String Conversion is very easy through the toUpperCase() and toLowerCase(); Method But I am going to do this Question without using the Inbuilt method in the class. You have to do this Only For logical coding Question. So, Finally, I am going to do this Question step-by-step if you want to watch videos than you can watch. In these videos, I discuss this question in a very simple and easy way. You have to take one class with the main method.                class Test{                 public static void main(){                    //your logic ...

Top 97 logical coding Question | for Freshers for getting a job in MNC Company | by er prince kumar

            Top 97 logical coding Question  for Freshers  If you do this you will become good logical programmers Write a Java program to perform input/output of all basic data types. Write a Java program to enter two numbers and find their sum. Write a Java program to enter two numbers and perform all arithmetic operations. Write a Java program to enter the length and breadth of a rectangle and find its perimeter. Write a Java program to enter the length and breadth of a rectangle and find its area. Write a Java program to enter the radius of a circle and find its diameter, circumference, and area. Write a Java program to enter the length in centimeter and convert it into meter and kilometer. Write a Java program to enter the temperature in Celsius and convert it into Fahrenheit. Write a Java program to enter the temperature in Fahrenheit and convert to Celsius Write a Java program to convert days into years, weeks and days....

Java objective question for written Test | Java written test objective question

                               Java objective question All the best important question ------------------------------------------------------------------------ 1. Answer: Illegal combination of final and abstract class 2. Answer: 4 3. Answer:    error: bad operand types for binary operator '=='                 System.out.println("Helo"+10==10); 4. Answer:   error: integer number too large                 System.out.println(08); Q5. ====  class Nit { public static void main(String[] args) { m1(2); } public static void m1(int i) { if (i >= 0) { m1(i - 1); } System.out.println(" " + i); }} output:  -1  0  1  2 ================================== Q.2 ------ ...