Thu Jan 19 21:10:53 2012 Subject: [Cmpe150] Announcement about Make-up Exam Dear Students, There will be *NO make-up examination* this semester. If you have *missed one of the midterm exams* and have submitted a report (or contacted Cem Ersoy about your situation), your missing grade will be set according to your other exam grades. When evaluating a missing grade, the mean and standard deviations of each of the exams will be taken into account. Have a nice holiday! CmpE150 Coordination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listeci.cmpe.boun.edu.tr/pipermail/cmpe150/attachments/20120119/ac58556e/attachment.html

Tue Jan 17 14:02:18 2012 Subject: [Cmpe150] Objection #3 (Project 9 & 10, Final Exam, Attendance) - Deadline is: 18.01.2012 23.59. Attached you can find the grades regarding all the projects, exams, and attendance in this term. 1. If you have an objection for Project 9 & 10, Final examination and Attendance you can send an objection e-mail using the following format. 2. Please check ALL of your grades in case there is a clerical error (typos, copy-paste errors, etc...) and if there is, send an objection e-mail for this error using the following format. Objection Deadline is:* 18.01.2012 23.59.* NOTES: 1. Repeat students DO NOT have any attendance grades since they are NOT responsible for attending the class. Hence, in the attached list Repeat students do NOT have any attendance grade. This is normal. 2. If you didn't attend an exam but delivered to us a report that allows you to attend the make-up exam instead, your exam grade will be shown as "0". Do not worry, this grades are pre-Makeup grades. AFTER the make-up exam your grades will be changed accordingly. 3.* *If you do NOT obey the subject format, your mail* *WILL* *be ignored. 4. Please send* *a SINGLE email for all your objections. Multiple emails MIGHT get ignored. OBJECTION FORMAT: please send an email to: cmpe150object at gmail.com *with subject format:* * * * * e.g. if a student with number 2010123456 wants to object to his project2 and also his 2nd and 3rd midterm1 questions, subject of mail must be: summer2011 project2 midterm1 q2 q3 2010123456 e.g if a student wants to object only to project3, subject of email must be: summer2011 project3 2010123456 etc. write explanations in the body of the email -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listeci.cmpe.boun.edu.tr/pipermail/cmpe150/attachments/20120117/0e138597/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: Fall 2011, Grades - preObjection.xlsx Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet Size: 96565 bytes Desc: not available Url : http://listeci.cmpe.boun.edu.tr/pipermail/cmpe150/attachments/20120117/0e138597/attachment-0001.bin

Tue Jan 17 00:53:50 2012 Subject: [Cmpe150] Final grades on online compiler Objection details will be announced later, Final grades are on online compiler under "grades" section. > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listeci.cmpe.boun.edu.tr/pipermail/cmpe150/attachments/20120117/ce3ed2db/attachment.html

Mon Jan 9 23:27:55 2012 Subject: [Cmpe150] FINAL Exam: January 16, 2012, 13:00-15:00 Dear Students, *FINAL* will be held on *January 16, 2012 MONDAY at 13:00-15:00 (Single Session)* * * *topics included:* - There will be *direct questions from* topics including: * *strings * multidimensional arrays * structs* - There will *a question from topics included in the first midterm*: * basic input-output (printf,scanf), * basic arithmetic, * conditional statemtents (if), * loops (while, for) - Although there will be no direct questions, to solve the exam questions you are *OBLIGED* to know all other topics: * nested loops * functions * pointers * arrays * array to functions *class appointments:* cmpe150.01: A4 cmpe150.02, students with surname A-J: A4 cmpe150.02, students with surname K-Z: B4 cmpe150.03: B4 *PLEASE CHECK YOUR REGISTERED SECTION AND MEMORIZE YOUR CLASS APPOINTMENT BEFORE COMING TO EXAM* *Hints for the exam:* Archive questions are on the web, solve them (do not look at the answers and memorize answers, SOLVE THEM) Study lab questions Study study questions About exam questions: Since your exams will be read by computer,* Input output format is STRICT.* e.g For a question: -Write a program which reads an integer, and prints the square of that integer and for input output sets: Input: 2 Output: 4 Input: 3 Output: 9 -Your correct answer should be like #include int main(){ int num,result; scanf("%d",&num); result = num*num; printf("%d",result); anykey(); return 0; } -However, the following is wrong and it will get 0 grade: #include int main(){ int num,result; printf("Enter an integer\n"); scanf("%d",&num); result = num*num; printf("the result is %d\n",result); anykey(); return 0; } -Because it does not OBEY to the given input-output format.It writes extra things on the screen like "Enter an integer" or "the result is". We do not want those. We (or the computer which evaluates your exams) just want the plain answer AS stated in the question. *Announcement section of the CMPE150 Exam:* As a reference, below is the announcements section of one of the previous years' C exam. *Please read:*