Skip to main content

REAL ESTATE MANAGEMENT SYSTEM



A program known as Real Estate site Management system is designed for those who have recently joined the real estate as a consultant for distribution of sites. They recently covert the lands they have purchased into sites and in order to handle this entire process a software is developed. The main objective of this project is to highlight the requirements and to provide guidelines for the benefits of the project that is mentioned above. It also provides guidelines regarding the frame of the project that is stated above. In short, this project aims to provide a guideline for people who are involved in developing this software application.
Plus, this project is a pilot project and is designed for the consultants for real estate who currently convert all the lands they have into sites. This software aims to handle the records and documents, pictures related to the sites and the informations stored in the system. This project is broad and comprehensive that can meet all the requirements.
Using this project consultant can easily manage his office without facing any sort of hasslement. There are lots and lots of paper work that comes in the real estate consultant office everyday which need to be managed and sort out for fulfilling the objectives. It becomes a cumbersome job to handle all this in a manual system ad it can also lead to errors. Thus to minimize this risk there is an intense need of an integrated system which is fulfilled by this software application.
Modules:-
1.Commercial Lands
2.Farm Lands
3.File Details
4.Interface
5.Login Page
6.Residential Lands
7.Contact
8.Main Programme
INTRODUCTION
Java is the object oriented programming language. It is interpreted and high level language. In Java, program is written by creating class and object. Unlike C, in which preprocessors and pointers are used, Java does not make use of these components. Any programming language that uses object oriented concepts like Encapsulation, Polymorphism, Inheritance, Abstraction is called object oriented programming language and JAVA comes under the same category.
Features of Java program C is the widely used language. It provides a lot of features that are given below.
1) Simple Java language is simple because its syntax is similar to C++. Similarly, it has removed many confusing and rarely used features like explicit pointers, operator overloading, etc. it is not needed to remove unreferenced objects because there is Automatic Garbage Collection in Java.
2) Object Oriented Object-oriented means we organize our software as a combination of different types of objects that incorporates both data and behaviour. The basic concepts of OOPs are: Object, Class, Inheritance, Polymorphism, Abstraction and Encapsulation.
3) Platform independent Java code can be run on multiple platforms e.g. Windows, Linux, Sun Solaris, Mac/OS etc. Java code is compiled by the compiler and converted into byte code. This byte code is a platform independent code because it can be run on multiple platforms i.e. Write Once and Run Anywhere(WORA).
4) Secured Java is secured because there is no use of explicit pointer and java programs run inside virtual machine sandbox.
5) Robust Robust simply means strong. Java uses strong memory management. There is lack of pointers that avoids security problem. There is automatic garbage collection in java. There is exception handling and type checking mechanism in java. All these points make java robust.
6) Architecture Neutral There are no implementation dependent features e.g. size of primitive types is fixed. Like- In C programming, int data type occupies 2 bytes of memory for 32-bit architecture and 4 bytes of memory for 64-bit architecture. But in java, it occupies 4 bytes of memory for both 32 and 64 bit architectures.
7) Portable We may carry the java byte code to any platform.
8) High-performance Java is faster than traditional interpretation but still somewhat slower than a compiled language like C.
9) Distributed We can create distributed applications in java. RMI and EJB are used for creating distributed applications. We may access files by calling the methods from any machine on the internet.
10) Multi-threaded A thread is like a separate program, executing concurrently. We can write Java programs that deal with many tasks at once by defining multiple threads. The main advantage of multithreading is that it doesn't occupy memory for each thread. It shares a common memory area.
PROJECT DESCRIPTION:
The main purpose of the system is to automate the real state information system which maintains record of land and their owner. It also provides easy method of searching the land where one can search land based on location where it is located by just accessing the system. Automated Real Estate is an information management system that has been developed for automating the process of buying and selling land that take place between the people, and the government. The system needs consistent flow of information at different levels within the automated real estate, any interruption in the flow of major data can cause the final result to get pending. Following is the list of modules that comprise the system with the module description.
FUNCTIONAL REQUIREMENTS Purpose
The purpose of doing this project is to provide all the requirements for the Real Estate
management System. The user can search easily anything regarding the flat/house he want with
moving here and there .This will make his time manageable and there will no waste of time in
goingout.
PROGRAM ARCHITECTURAL DESIGN:
SERIAL NUMBER NAME OF THE MODULE
1. MAIN PROJECT
2. LOGIN PAGE
3. INTERFACE
4. FILE DETAILS
5. RESIDENTIAL LANDS
6. COMMERCIAL LANDS
7. FARM LANDS
8. CONTACT DETAILS

NON-FUNCTIONAL REQUIREMENTS
INTERFACE:
An interface is a reference type in Java. It is similar to class. It is a collection of abstract
methods. A class implements an interface, thereby inheriting the abstract methods of
the interface. Along with abstract methods, an interface may also contain constants, default
methods, static methods, and nested types. INHERITANCE :
Inheritance in java is a mechanism in which one object acquires all the properties and
behaviors of parent object. The idea behind inheritance in java is that you can create new
classes that are built upon existing classes. ARRAYS:
Java provides a data structure, the array, which stores a fixed-size sequential collection of
elements of the same type. An array is used to store a collection of data, but it is often more
useful to think of an array as a collection of variables of the same type EXCEPTION HANDLING:
An exception (or exceptional event) is a problem that arises during the execution of a program. When an Exception occurs the normal flow of the program is disrupted and the program/Application terminates abnormally, which is not recommended, therefore, these exceptions are to be handled.

CODE:
project code
package Project;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import static java.lang.System.out;
import java.util.Scanner;
public class RealestatedemoImpl{
public static void main(String[] args) throws IOException {
LoginPage l=new LoginPage();
l.Details();
}
} class LoginPage{
LoginPage()
{
System.out.println("welcome to REAL ESTATE SYSTEM");
}
void Details() throws IOException {
FileDetails f=new FileDetails();
Scanner in=new Scanner(System.in);
System.out.println("Are you a registerd user 1/0 ");
int n=in.nextInt();
if(n==0) {
System.out.println("User Name:");
String Username= in.next();
System.out.println("Password:");
String Password = in.next();
System.out.println("Confirm Password:");
String RPassword = in.next();
while (Password.compareTo(RPassword) != 0) {
System.out.println("Confirm Password:");
RPassword = in.next();
}
f.Fileoperation(Username, Password);
}
else if(n==1)
{
System.out.println("User Name:");
String Username = in.next();
System.out.println("Password:");
String Password = in.next();
f.Search(Username,Password);
}
}
} class Interface {
Interface()
{
System.out.println("Main Menu");
System.out.println("1.Residential Lands");
System.out.println("2.Commercial Lands");
System.out.println("3.Farm Lands");
System.out.println("4.Contact");
System.out.println("Enter Your Option");
}
int Option()
{
Scanner in = new Scanner(System.in);
int n=in.nextInt();
return n;
}
} class FileDetails {
public void Fileoperation(String Username,String Password) throws IOException{
File ProjectLogin = new File("ProjectLogin.txt");
FileWriter Filewriter = new FileWriter(ProjectLogin, true);
BufferedWriter Buffer = new BufferedWriter(Filewriter);
PrintWriter Writer = new PrintWriter(Buffer);
if(ProjectLogin.exists() == false){
ProjectLogin.createNewFile();
}
Writer.println(Username+" "+Password);
Writer.close();
}
public void Search(String Username,String Password) throws FileNotFoundException {
Scanner input;
File ProjectLogin = new File("ProjectLogin.txt");
input = new Scanner(ProjectLogin);
while(input.hasNext()) {
String User = input.next();
String pass = input.next();
if (User.compareTo(Username) == 0) {
if (pass.compareTo(Password) == 0) {
Interface in = new Interface();
int op = in.Option();
if(op==1)
{
ResidentialLands r=new ResidentialLands();
System.out.println("Do you Want to view them sorted");
System.out.println("1.Price Higher TO Lower");
System.out.println("2.Price Lower TO Higher");
System.out.println("3.Area Higher TO Lower");
System.out.println("4.Area Lower TO Higher");
System.out.println("5.Exit");
Scanner in1 = new Scanner(System.in);
int choice = in1.nextInt();
while(choice!=5)
{
if(choice==1)
{
r.ByCostGreater();
}
else if (choice==2)
{
r.ByCostLower();
}
else if(choice==3)
{
r.BySftGreater();
}
else if(choice==4)
{
r.BySftLower();
}
System.out.println("Do you Want to view them sorted");
System.out.println("1.Price Higher TO Lower");
System.out.println("2.Price Lower TO Higher");
System.out.println("3.Area Higher TO Lower");
System.out.println("4.Area Lower TO Higher");
System.out.println("5.Exit");
choice = in1.nextInt();
}
}
else if (op == 2)
{
CommercialLands z=new CommercialLands();
System.out.println("Do you Want to view them sorted");
System.out.println("1.Price Higher TO Lower");
System.out.println("2.Price Lower TO Higher");
System.out.println("3.Area Higher TO Lower");
System.out.println("4.Area Lower TO Higher");
System.out.println("5.Exit");
Scanner in1 = new Scanner(System.in);
int choice = in1.nextInt();
while(choice!=5)
{
if(choice==1)
{
z.ByCostGreater();
}
else if (choice==2)
{
z.ByCostLower();
}
else if(choice==3)
{
z.BySftGreater();
}
else if(choice==4)
{
z.BySftLower();
}
System.out.println("Do you Want to view them sorted");
System.out.println("1.Price Higher TO Lower");
System.out.println("2.Price Lower TO Higher");
System.out.println("3.Area Higher TO Lower");
System.out.println("4.Area Lower TO Higher");
System.out.println("5.Exit");
choice = in1.nextInt();
}
}
else if(op == 3)
{
FarmLands f=new FarmLands();
System.out.println("Do you Want to view them sorted");
System.out.println("1.Price Higher TO Lower");
System.out.println("2.Price Lower TO Higher");
System.out.println("3.Area Higher TO Lower");
System.out.println("4.Area Lower TO Higher");
System.out.println("5.Exit");
Scanner in1 = new Scanner(System.in);
int choice = in1.nextInt();
while(choice!=5)
{
if(choice==1)
{
f.ByCostGreater();
}
else if (choice==2)
{
f.ByCostLower();
}
else if(choice==3)
{
f.BySftGreater();
}
else if(choice==4)
{
f.BySftLower();
}
System.out.println("Do you Want to view them sorted");
System.out.println("1.Price Higher TO Lower");
System.out.println("2.Price Lower TO Higher");
System.out.println("3.Area Higher TO Lower");
System.out.println("4.Area Lower TO Higher");
System.out.println("5.Exit");
choice = in1.nextInt();
}
}
else if(op == 4)
{
Contact c = new Contact();
}
System.exit(0);
}
else
{
System.out.println("enter a valid password");
}
}
else
{
System.out.println("you are not a valid user");
}
}
}
class FarmLands {
FarmLands()
{
System.out.println(" 4 Acres of land with Black soil\n for sale in nalgonda \n no water problem and powercuts \n StatusReady to Buy , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 200 Lac\n ? 5,572 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 6 Acres of land with Red soil\n for sale in Begumpet \n Builder Rain tree Park\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi- Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 400 Lac \n? 5,572 per sqft");
System.out.println("====================================================== ===================================================================== =====================================================================
===================================================================== ===================================================================== =====================================================");
System.out.println(" 3 Acres of land with Red soil\n for sale in Bharat Nagar\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 412 Lac \n ? 3,472 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 4 Acres of land with Red soil\n for sale in Kukatpally , Hitech City\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 300.0 Lac\n ? 7,582 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 1 Acres of land with Red soil\n for sale in Nampally\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 60 Lac \n ? 6,572 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 10 Acres of land with Red soil\n for sale in Secunderabad\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3
Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n\n 700.0 Lac\n ? 7000 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
}
void ByCostGreater()
{
System.out.println(" 10 Acres of land with Red soil\n for sale in Secunderabad\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n\n 700.0 Lac\n ? 7000 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 3 Acres of land with Red soil\n for sale in Bharat Nagar\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 412 Lac \n ? 3,472 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 6 Acres of land with Red soil\n for sale in Begumpet \n Builder Rain tree Park\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi-Furnished,
5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 400 Lac \n? 5,572 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 4 Acres of land with Red soil\n for sale in Kukatpally , Hitech City\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 300.0 Lac\n ? 7,582 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 4 Acres of land with Black soil\n for sale in nalgonda \n no water problem and powercuts \n StatusReady to Buy , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 200 Lac\n ? 5,572 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 1 Acres of land with Red soil\n for sale in Nampally\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 60 Lac \n ? 6,572 per sqft");
System.out.println("====================================================== ===================================================================== =====================================================================
===================================================================== ===================================================================== =====================================================");
}
void ByCostLower()
{
System.out.println(" 1 Acres of land with Red soil\n for sale in Nampally\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 60 Lac \n ? 6,572 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 4 Acres of land with Black soil\n for sale in nalgonda \n no water problem and powercuts \n StatusReady to Buy , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 200 Lac\n ? 5,572 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 4 Acres of land with Red soil\n for sale in Kukatpally , Hitech City\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 300.0 Lac\n ? 7,582 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 6 Acres of land with Red soil\n for sale in Begumpet \n Builder Rain tree Park\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 400 Lac \n? 5,572 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 3 Acres of land with Red soil\n for sale in Bharat Nagar\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 412 Lac \n ? 3,472 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 10 Acres of land with Red soil\n for sale in Secunderabad\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n\n 700.0 Lac\n ? 7000 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
}
void BySftGreater()
{
System.out.println(" 10 Acres of land with Red soil\n for sale in Secunderabad\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3
Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n\n 700.0 Lac\n ? 7000 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 6 Acres of land with Red soil\n for sale in Begumpet \n Builder Rain tree Park\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi- Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 400 Lac \n? 5,572 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 4 Acres of land with Red soil\n for sale in Kukatpally , Hitech City\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 300.0 Lac\n ? 7,582 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 4 Acres of land with Black soil\n for sale in nalgonda \n no water problem and powercuts \n StatusReady to Buy , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 200 Lac\n ? 5,572 per sqft");
System.out.println("====================================================== ===================================================================== =====================================================================
===================================================================== ===================================================================== =====================================================");
System.out.println(" 3 Acres of land with Red soil\n for sale in Bharat Nagar\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi- Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 412 Lac \n ? 3,472 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 1 Acres of land with Red soil\n for sale in Nampally\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 60 Lac \n ? 6,572 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
} void BySftLower()
{
System.out.println(" 1 Acres of land with Red soil\n for sale in Nampally\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 60 Lac \n ? 6,572 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== =====================================================================
===================================================================== =====================================================");
System.out.println(" 3 Acres of land with Red soil\n for sale in Bharat Nagar\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 412 Lac \n ? 3,472 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 4 Acres of land with Black soil\n for sale in nalgonda \n no water problem and powercuts \n StatusReady to Buy , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 200 Lac\n ? 5,572 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 4 Acres of land with Red soil\n for sale in Kukatpally , Hitech City\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 300.0 Lac\n ? 7,582 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 6 Acres of land with Red soil\n for sale in Begumpet \n Builder Rain tree Park\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi- Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n 400 Lac \n? 5,572 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
System.out.println(" 10 Acres of land with Red soil\n for sale in Secunderabad\n BuilderMahindra Lifespaces\n StatusReady to Move (New Property) , Freehold\n Details\n\n 3 Bath , Semi-Furnished, 5th Floor (of 15), Garden/Park Facing, Pool Facing, Main Road Facing, East Facing\n\n View Details\n\n 700.0 Lac\n ? 7000 per sqft");
System.out.println("====================================================== ===================================================================== ===================================================================== ===================================================================== ===================================================================== =====================================================");
}
} } class Contact {
Contact()
{
System.out.println("Thanks For Asking");
System.out.println("ph no:9848660211");
System.out.println("Address:Vijayawada");
System.out.println("Feel free To Contact");
}
void display()
{
System.out.println("Thanks for Asking");

}
}

Comments

Popular

pattern problem in c with output 12345 4321 123 21 1

#include <stdio.h> int main(void) {     int f=5;     int w=5; for(int i=1;i<=5;i++) {     if(i%2!=0){         for(int h=1;h<=f;h++){             printf("%d",h);         }         f=f-1;         w=w-1;         printf("\n");     }     if(i%2==0){         for(int r=w;r>0;r--)         {             printf("%d",r);         }     w=w-1;     f=f-1;     printf("\n");     } } return 0; } output:- 12345                                                                                                                        4321                                                                                                                          123                                                                                                                          21                                                                                                       

pattern problem in c with output 13579 3579 579 79 9

#include <stdio.h> int main(void) {     int count=1,s=0,k=1; for(int i=1;i<=5;i++){     for(int j=k;j<10;j++)     {if(j%2!=0){         if(count==2)         s=j;         printf("%d",j);         count=count+1;     }     }     count=1;     k=s;     printf("\n"); } return 0; } output:- 13579                                                                                                                             3579                                                                                                                              579                                                                                                                               79                                                                                                                                9

DBMS LAB MANUAL

Programly Special's DBMS LAB MANUAL CLICK HERE TO DOWNLOAD