![]() |
|
QCM project help - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Java, JVM, & JRE (https://sinister.ly/Forum-Java-JVM-JRE) +--- Thread: QCM project help (/Thread-QCM-project-help) Pages:
1
2
|
QCM project help - Vi-Sion - 01-10-2017 i have a java QCM project for my uni but i've skipped many classes and don't know how to start . I'm not asking anyone to do it for me but i need someone to help me with answering some questions ifanyone can do this pls let me know. RE: QCM project help - Mr.Kurd - 01-10-2017 sorry for asking: What is meaning of QCM? RE: QCM project help - Vi-Sion - 01-11-2017 OUPS sorry it's in french it means Multiple choice question. Really hopping to find someone able to help me while going on with it. RE: QCM project help - meow - 01-11-2017 I hope nobody helps you so you can learn what the consequences are of being lazy and expecting something out of it. By not helping you, I and everyone else are doing you a favor. RE: QCM project help - Oni - 01-11-2017 (01-11-2017, 01:15 AM)meow Wrote: I hope nobody helps you so you can learn what the consequences are of being lazy and expecting something out of it. By not helping you, I and everyone else are doing you a favor. Irony: https://sinister.ly/Thread-GTXs-and-4k-monitors RE: QCM project help - Vi-Sion - 01-11-2017 (01-11-2017, 01:15 AM)meow Wrote: I hope nobody helps you so you can learn what the consequences are of being lazy and expecting something out of it. By not helping you, I and everyone else are doing you a favor. Looks like you misunderstood me, i'm not asking for someone that would make that project from me ,and i know how to use google and to keep trying till i learn something . What i want is ask some questions that might be helpful through the way . RE: QCM project help - Pikami - 01-11-2017 You had posted your code here, now it's gone... You were not able to write to a file because you were not closing the writer, so all the data was probably just staying in the internal buffer. After writing to the file you should close it. RE: QCM project help - Vi-Sion - 01-11-2017 (01-11-2017, 09:19 PM)Pikami Wrote: You had posted your code here, now it's gone... Yep that's why i've actually deleted the post . I figured out i didn't close it. Thanks for your reply . I got a new question while going with this i figured out that while writing to a txt \n doesn't work, after googling it i found that i should use \r\n instead . Any idea why ? and what does the \r do ? RE: QCM project help - Pikami - 01-11-2017 (01-11-2017, 09:39 PM)Vi-Sion Wrote:(01-11-2017, 09:19 PM)Pikami Wrote: You had posted your code here, now it's gone... '\n' is called a 'Line feed' symbol '\r' is called a 'Carriage return' symbol Unix based systems use '\n' as the newline character while Windows/DOS use '\r\n' as the newline character. '\n' jumps to new a new line while '\r' returns to the start of the line RE: QCM project help - meow - 01-12-2017 (01-11-2017, 05:35 AM)Oni Wrote:(01-11-2017, 01:15 AM)meow Wrote: I hope nobody helps you so you can learn what the consequences are of being lazy and expecting something out of it. By not helping you, I and everyone else are doing you a favor. There's a colossal difference between him wanting to cheat on a project at his university and me wanting help with a hobby of mine. |