You are on page 1of 13

NITTE MEENAKSHI INSTITUTE OF TECHNOLOGY, YELAHANKA,

BANGALORE-64

(An Autonomous college affiliated to VTU-Belgaum)

CASE STUDY REPORT ON

“DISPLAY MULTIPLICATION TABLE”

Submitted By:

Akash Urala B (1NT16MCA02)

Under the Guidance of:

Ms. Sushitha S.

DEPARTMENT OF MASTER OF COMPUTER APPLICATIONS

2018-2019
NITTE MEENAKSHI INSTITUTE OF TECHNOLOGY
GOVINDAPURA, GOLLAHALLI, YELAHANKA,

BANGALORE-560064

CERTIFICATE

This is to certify that Akash Urala B student of Master of Computer Application course of
this institute during 2018-2019 affiliated to VTU, Belgaum. The Case Study Report entitled
“Display Multiplication Table” is prepared by them under the Guidance of Ms. Sushitha S.
in partial fulfillment of the requirements of Semester - V for the award of the Degree of
Master of Computer Application.

Name & Signature of Guide Name & Signature of HOD (MCA )

………………………….. ………………………..

Mr. Sushitha S. Dr. Prasad N.H.


Assistant Professor, Prof & Head,
Dept of MCA, NMIT Dept of MCA,NMIT
ACKNOWLEDGEMENT

The satisfaction that accompanies the successful completion of any task would be
incomplete without mentioning the people who made it possible. With deep gratitude, we
acknowledge all those guidance and encouragement, which served as bacon of light and
crowned my efforts with success. We thank each one of them for their valuable support.

We express our kind thanks to the institution Nitte Meenakshi Institute of Technology,
Bangalore, for providing necessary facilities to carry out this case study successfully.

We express our kind thanks to Dr. H.C. Nagaraj , Principal, Nitte Meenakshi Institute Of
Technology, Bangalore, for providing necessary facilities and motivation to carry out the
case study successfully.

We express our gratitude and humble thanks to Dr. Prasad H.N. , Head of Department,
MCA, Nitte Meenakshi Institute of Technology, Bangalore, for the constant encouragement,
guidance and help to carry out case study successfully.

We express our gratitude and humble thanks to our Internal Guide Ms.Sushitha. S. , Asst
Professor, MCA, Nitte Meenakshi Institute of Technology, Bangalore, for the constant
encouragement, guidance and help to carry out case study successfully.

We would like to mention our special thanks to all the faculty members of MCA Department,
Nitte Meenakshi Institute of Technology, Bangalore, for their invaluable support and
guidance. We finally thank friends who have been encouraging us constantly and inspiring us
throughout without whom this report would have never seen the light of the day.
DECLARATION

We hereby declare that this case study entitled “Display Multiplication Table” has been
prepared by us during the year 2018 –2019 under the guidance of Ms. Sushitha S., Asst.
Professor, and Department of MCA in the partial fulfillment of MCA degree prescribed by
the college. We also declare that this case study is the outcome of our own efforts, that it has
not been submitted to any other university for the award of any degree.

Submitted By:

Mamatha M (1NT16MCA17)
TABLE OF CONTENTS
1. INTRODUCTION................................................................................................................ 6
2. REQUIREMENT ANALYSIS............................................................................................ 7
2.1 HARDWARE REQUIREMENTS ............................................................................................. 7
2.2 SOFTWARE REQUIREMENTS .............................................................................................. 7
3. IMPLEMENTATIONS ....................................................................................................... 8
4. RESULTS ............................................................................................................................. 9
5. CONCLUSION .................................................................................................................. 13

6
1. INTRODUCTION

C# is designed to be a simple, modern, general-purpose, object-oriented programming


language, borrowing key concepts from several other languages, most notably Java. C# could
theoretically be compiled to machine code, but in real life, it's always used in combination
with the .NET framework.

C# is an object-oriented programming language used with XML-based Web services on the


.NET platform and designed for improving productivity in the development of Web
applications.

This case study is implemented by using ToInt property and for loop to solve the
multiplication table. This C# Program Finds and display the Multiplication Table. Here the
limit is obtained from the user and the multiplication table is diaplayed.

Syntax:

int.Parse(string s)

Example:

string input1 = "101";

Console.WriteLine("int.Parse:(String to integer) : "+int.Parse(input1));


2. REQUIREMENT ANALYSIS

2.1 Hardware Requirements

 Processor : 1.7GHz
 RAM : 512MB
 Hard Disk : 256GB

2.2 Software Requirements

 Operating System : Any Compatible OS


 Editors : Notepad
 Language : C#
3. IMPLEMENTATIONS

Here is source code of the C# Program to Demonstrate Tower Of Hanoi. The C# program is
successfully compiled and executed with Microsoft Visual Studio.

This case study is implemented by using ToInt property and for loop to solve the
multiplication table.

using System;
public class Multiplication
{
public static void Main()
{
int j,n;

Console.Write("\n\n");
Console.Write("Display the multiplication table:\n");
Console.Write("-----------------------------------");
Console.Write("\n\n");

Console.Write("Input the number (Table to be calculated) : ");


n= Convert.ToInt32(Console.ReadLine());
Console.Write("\n");
for(j=1;j<=10;j++)
{
Console.Write("{0} X {1} = {2} \n",n,j,n*j);
}
}
4. RESULTS
5. CONCLUSION

This case study is implemented by using basic concepts of C#. It was very helpful in
knowing and understanding the concepts very well.

It was developed by using ToInt property and for loop to solve multiplication table.

You might also like