Archive for the "Programming & Design" Category

Need ebook : Oracle Database 11g PL/SQL Programming ?

Posted Wednesday, March 10, 2010 by admin


Hi
If any body has link to Oracle Database 11g PL/SQL Programming ebook,
kindly provide the same asap.

Thanks.

a java programing book?

Posted Friday, March 5, 2010 by admin


hi…i know c programing a bit …could u please suggest me a e-book for java programing …that tells from the very first step…i wana learn java programing from basics…and also please tell me what should i need to install to write and complie java programs….cheers

Does anybody know any site or E-BOOK about algorithm design for programming algorithmic problems ?

Posted Friday, March 5, 2010 by admin


Does anybody know any site or E-BOOK about algorithm design for programming algorithmic problems ?
with C/C++ source codes about each algorithm ,for example source code of a BFS for optimal path.

About Ming library’s book?

Posted Sunday, February 28, 2010 by admin


Can you give me the link for free ebook download about Ming Library (one of the libraries in PHP).
I need it…

Please

Thanx a lot ^0^

where can i download free e-book about sap programming implementation?

Posted Friday, February 26, 2010 by admin


sap programming implementation for production, finance and service

help with this java program?

Posted Thursday, February 18, 2010 by admin


we’ve been asked to do an address book program that could view all the inputted entries as well as add,update, and delete an entry….

i’m done with adding and updating entries…
but i’m having trouble with displaying all entries and deleting an entry

help please??
here’s what i’ve done so far:

import java.io.*;

public class AddressBook {
private int top = 0;
private static final int MAXENTRIES = 100;
private AddressBookEntry [] list;

public static void main(String[] args) {
BufferedReader keyIn = new BufferedReader (new InputStreamReader(System.in));
AddressBook addBook = new AddressBook();
String act = “”;
while (true){
System.out.println (“\n[A] Add entry”);
System.out.println (“[D] Delete entry”);
System.out.println (“[V] View all entries”);
System.out.println (“[U] Update entry”);
System.out.println (“[Q] Quit”);
System.out.println (“Enter desired action: “);

try{
act = keyIn.readLine();
} catch (Exception e){
System.out.println (“Error”);
}

if (act.equals(“A”)||act.equals (“a”))
addBook.addEntry();
else if (act.equals(“V”)||act.equals (“v”))
addBook.viewEntries();
else if (act.equals(“D”)||act.equals (“d”))
addBook.deleteEntry();
else if (act.equals(“U”)||act.equals (“u”))
addBook.updateEntry();
else if (act.equals(“Q”)||act.equals (“q”))
System.exit (0);
else
System.out.println (“Unknown command”);
}
}

public AddressBook() {
list = new AddressBookEntry [MAXENTRIES];
}

public void addEntry(){
BufferedReader keyIn = new BufferedReader (new InputStreamReader (System.in));
String name = “”;
String add = “”;
int tel = 0;
String email = “”;

if (top == MAXENTRIES){
System.out.println (“Address Book is full”);
return;

}

try{
System.out.print (“Name: “);
name = keyIn.readLine();
System.out.print (“Address: “);
add = keyIn.readLine ();
System.out.print (“Telephone number: “);
tel = Integer.parseInt (keyIn.readLine());
System.out.print (“Email Address: “);
email = keyIn.readLine ();
} catch (Exception e){
System.out.println (e);
System.exit (0);
}
AddressBookEntry entry = new AddressBookEntry (name, add, tel, email);
list [top] = entry;
top++;

}
public void updateEntry (){
BufferedReader keyIn = new BufferedReader (new InputStreamReader(System.in));
int index = 0;
String name = “”;
String add = “”;
int tel = 0;
String email = “”;

try {
System.out.print (“Entry number: “);
index = Integer.parseInt (keyIn.readLine ())-1;
System.out.print (“Name: “);
name = keyIn.readLine ();
System.out.print(“Address: “);
add = keyIn.readLine ();
System.out.print(“Telephone number: “);
tel = Integer.parseInt(keyIn.readLine());
System.out.print(“Email Address: “);
email = keyIn.readLine ();
} catch (Exception e){
System.out.println (e);
System.exit (0);

}
AddressBookEntry entry = new AddressBookEntry (name, add, tel, email);
list [index] = entry;

}

}

}

which is the best book (or any link or E-books )to starting studying C#.net?

Posted Tuesday, February 16, 2010 by admin


actually i about to start , i know the basics of C,C++. but i hav no idea about doing programs in C#. so i need to a link or a E-book to start with

Where do I start with bourne shell program?

Posted Monday, February 15, 2010 by admin


I have to make an address book using bourne shell that will search for a name or address and edit or add an entry. I’m suppose to have options of -s to search, -a to add, -e to edit. Could someone give me an example of how I should code the -a, -n, -e part. I tried searching on the internet but can’t find anything.

How to tell which computer programs a made Ebook would work on?

Posted Saturday, February 13, 2010 by admin


I want to make my own Ebook, but where can I buy the Cd’s to put it on and how can I tell which programs it will work on? (Windows XP, Vista, 97, 2000, Professional, etc.)

i need a book name XHTML for dummies but i cant buy on line i try to get it with my share program(e-mule) but?

Posted Friday, February 12, 2010 by admin


cant find any one can help me get it i realy need it

Copyright © 2010 Ebook program
Design by ID Themes