university courses

university courses questions and answers

More information about university courses at Education News.

Q: Which university courses should I start out with?
I want to be a doctor of some kind, (see below), but I don't know what courses I should take in university. And high school as well. I'm going into grade 10 next year, and yes I know I'm looking into this early, but I'd rather be prepared. Pediatrician, Obstetrician-Gynecologist, Oncologist, Cytotechnologist, Neurologist, Nurse Practitioner, Radiologist. Those are careers I want to pursue. Please help me out! :) Btw: I want to go to Queen's University in Ontario.

A: In high school, I would take as many Advance Placement (AP) courses as possible. In addition, if your school offers it, take classes at a local college for free! I would start off with AP Biology, something in Allied Health, calculus, physiology and chemistry (heavy in the sciences). It is never too early to start preparing for your career. I applaud you for being so driven! Good luck with your future endeavors!

Q: Who can descript university courses for Transript translation in Indonesian?
I need my university transcript and course description translate from Indonesian into English. Who can help me do it?

A: You usually need a certified translation of academic records like transcripts. Try University Language Services: http://www.universitylanguage.com/translation.html They definitely do translations from Indonesian into English.

Q: what is your opinion about university courses?
do you believe courses in business at university are a little bit more easier than science courses? of course sometimes in order to do well you have to like your stuff but sometimes this isn't the case.

A: That depends on the type of student you are. For me math courses were a breeze compared to any other. But that is me - I just love math. Thanks Bill

Q: what university courses that requires a laptop?
since, my chef school dream is broken, my dad bought me a macbook for my b-day and i want to use it properly so i was thinking that i could use it on university or something, so what courses requires a laptop or at least what courses could my laptop help me?

A: There are a few schools that require laptops for all students (usually graduate programs). However, most classes do not require laptops, and in fact some professors have banned laptops because they are distracting. If it is your only computer, then of course you can use it for nearly all of your classes, since you will have email from your professors, writing assignments, online classes, etc.

Q: What university courses do I need to take to major in Psychology and how long would I have to go to college?
I'm currently a sophomore in High school, and I've been thinking about majoring in Psychology. I wondered how many years I would have to go to school and what courses to take in college. I want to be a clinical psychologist, I think.

A: For a Clinic Psychologist, you'll need a PhD. A 4 year degree won't do it, but a combination Masters / PhD program can get you there in a total of about 6-7 years of college.

Q: What university courses should i take to become a teacher?
I am 26, live in Toronto, Ontario Canada and am thinking about going to school to become a teacher. My high school grades weren't that good. What courses should i take to become a teacher? I'm looking to teach grades 7 or 8 and below.

A: Look for teaching colleges...the first few years are regular undergrad stuff...last few years will be mostly courses related to education...

Q: What type of university courses to take to become a video game producer?
I'm thinking of persuing video game management as a career, what type of courses should I be taking?

A: computer design and computer programming

Q: What University courses would i need to become a forensic investigator?
I was thinking of policing and forensic psychology, but with 50,000 courses in the world i don't know what to take...

A: if you are interested in police work, than you can take criminal justice, but if you are interested in the chemistry/biology aspects, then you need a science major. If you go for psychology, today you need to go on for advanced studies-graduate or doctorate. Depends on how long you want to be in school. Talk to an admissions counselor at a school that interests you. That is the best way to get accurate guidance on what direction to take. Also, ask if they help with placement after college, and go online and research salaries and job opportunities. Good luck.

Q: What are the steps to becoming a detective (specifically the intellegence division) i.e. University courses?
I'm going to become a detective and I'm going to university next year.. I'm wondering whether or not i should be taking specific courses since i want to be a detective. I know I still have to become a regular officer for some time and I'm up for that. Oh, and also, if you're a police officer in Canada, please tell me, and leave your msn email if it's fine with you.. Because you're really cool and I'm curious and wanna hear more from you! Thanks.. Jason =D

A: Study Criminal Justice, join a police department, work as a beat cop for a few years, take the Detective exam, and possibly get picked up for a position. You may also consider joining the Military to gain some better experience.

Q: write a program for university courses details using file handling and as according to the code in cplusplus?
user can add, delete, modify and view alll courses details or a particular courses. its a project work. please help.

A: Do this #include #include using namespace std; make a classes called whatever you want I suggest IOException NullException DoesNotExistException which hold a char* message and have a constructor that takes a char* and a accessor getMessage make a class that holds information on a course such that the name is a Char* the description is a char* and and anything else that it would have should be out lined make a constructor to handle this. make a class LinkedList or use #include that can hold the type of class listed above holds a ClassType which you defined above in the class you created It should support: void add(ClassType anewclasstype)throws NullException* void delete(char* name)throws NullException*, DoesNotExistException* void modify(char* name,...) throws DoesNotExistException* //this //should be over loaded to change what the user wants to change in Main do this: ifStream* in = new ifSteam(pathToFileAsCharPointer); for each course read into a linkedlist of a pointer type or the type of the class listed above from a text file or user input while(the user does not press the key that triggers it to quit) { try{ check user input and test it if the user enters an invalid error throw new IOException("error message goes here"); } catch(IOException* ex) { printf("%s",ex->getMessage()) continue; } try{ if the user selects add by typing 1 or add or whatever the assignment says they type then call add on the LinkedList class else if the user wants to delete it should call delete on the linkedlist class and so on } catch(NullException* ex) { printf("%s", ex->getMessage()); } catch(DoesNotExistException ex) { printf("%s",ex->getMessage()); } }LOOP