
B
String name = "Lion King";
Write another way to input name.
<-this code assigns "Lion King" as value of name.
Oh yeah sorry it's java and the program i am using is java technology IDE.
Answer
I'm not sure exactly what you are asking. Are you asking for another way to initialize a String? The capital S in String makes me assume this is either C#/VB.Net/java...
A String is actually a character array, so you can use that fact for another method of initialization...
char[] array = { 'L', 'i', 'o', 'n',' ', 'K', 'i', 'n' ,'g' };
String name = new String(array);
If that's not your question, then you need to provide some more info.
I'm not sure exactly what you are asking. Are you asking for another way to initialize a String? The capital S in String makes me assume this is either C#/VB.Net/java...
A String is actually a character array, so you can use that fact for another method of initialization...
char[] array = { 'L', 'i', 'o', 'n',' ', 'K', 'i', 'n' ,'g' };
String name = new String(array);
If that's not your question, then you need to provide some more info.
Design a computer based information system for Truck Booking Information System?

Sreeman
A transport company has n-no. of vehicles got a contract with a manufacturing company to trasposrt its goods to different parts of country. The client company has a very strict monitoring system of dispatch; any delay in reaching the destination will imply a penalty @ of Rs 300/= per day. A list of all possible destinations of the client-product has been given to the transporter which reflects the norm days to reach the location.
I would like a detailed design of the system; like how to conduct a requirements, steps of designing the system and database etc.
Answer
use VB.net to create this tool for the transport company.
the person who takes the order enters the details like the time or date of booking, destination the system will automatically access any databse which has the tables with all the info relating to that route.
do u want help in building this sytem or do u want somebody build this sytem for you? i can help in both the cases.
use VB.net to create this tool for the transport company.
the person who takes the order enters the details like the time or date of booking, destination the system will automatically access any databse which has the tables with all the info relating to that route.
do u want help in building this sytem or do u want somebody build this sytem for you? i can help in both the cases.
Powered by Yahoo! Answers
Comments :
Post a Comment