Tuesday, November 10, 2009
Exam Tips
Tuesday, September 29, 2009
Formal Methods Mid Term Tips
-Soundness and Completeness (Def. Actual Soundness)
-Logical Connectives (write in order of precedence) (not, and, or, logically implies, equivalence)
-Logical Connectives meaning
-Atomic sentences: predict the logic, create the sentence
-What is formal methods used for?
IF ITS TOO LATE ITS TOO LATE
Sunday, August 16, 2009
File Sharing
The yahoo group is quite a slow here... take long to upload one doc...
any suggestion?
Wednesday, August 12, 2009
Help Needed
Tuesday, August 11, 2009
Updates
BSEM Sem 6 Schedule
Today
Jason is not going to teach us this sem.. wondering who is going to replace him..
Concept of modeling might be another 3D modeling class for me... nothing much would I expect..
about Data Structure and Algorithm, have few questions about it:
1. Talking about Data, is it more to how are we storing it? or more to how we are going to display it?
2. Confused with the Pointer thinggy in C++, I was pretty sure that it's equal to Instances in OO programming.. It doesn't seems the same now haha
Monday, August 10, 2009
Data Structure and Algorithm
what I think is, it's interesting..
It's all about optimizing the code, choosing the right algorithm to apply, and also some standard algorithms that are applicable for doing daily programming functions.
Hopes it is good until the end.
Thursday, August 6, 2009
Monday, August 3, 2009
BSEM semester 6 Timetable
Data Structure -- 3pm - 5pm
Tuesday:
Concept of modeline -- 11am - 1.30pm
Data Structure -- 3pm - 5pm
Wednesday
Formal Method -- 11am - 12.30pm
Thursday
OFF
Friday
Major Project 9am - 11am
Formal Method 11am - 12.30pm
Thursday, June 18, 2009
Part Time jobs and Internships
Free Classes
those who are interested in taking these free classes, for Limkokwing's students only, please find Mr. Tee Wee Jing
Saturday, June 13, 2009
Exam Over
Don't know what to say, but I'm happy that it's done...
for those still have exams, and are willing to share their tips to their friends, please post it as comment, or contact one of us:
Adrian
Thogori
Andy
Adam
Happy :D
Tuesday, June 9, 2009
Tips Answers for CA
Didnt answer 2c and only give the formula for 5
If u see any mistakes, plz inform me.
1. RGB-
(R,G,B)
CMY-
Magenta = (RGB white)-(RGB magenta) = (1,1,1) – (1,0,1) = (0,1,0)
2.
a. Vector A->C = C-A= (4,1,2) – (3,3,2) = (1,-2,0)
Vector A->B = B-A= (2,2,1) – (3,3,2) = (-1,-1,-1)
Vector B->C = C-B= (4,1,2) – (2,2,1) = (2,-1,1)
b. Dot product A->B . B->C = (-1,-1,-1) . (2,-1,1) = (1st * 1st)+ (2nd *2nd)+(3rd * 3rd)
=(-1*2)+(-1*-1)+(-1*1)=-2
3. First Object
glBegin (GL_LINE_LOOP);
glvertex2i (200,60);
glvertex2i (240,150);
glvertex2i (280,60);
glvertex2i (190,120);
glvertex2i (290,120);
glEnd();
Second Object
glBegin (GL_LINE_STRIP);
glvertex2i (200,60);
glvertex2i (280,60);
glvertex2i (240,150);
glEnd();
glBegin (GL_LINE_STRIP);
glvertex2i (290,120);
glvertex2i (190,120);
glvertex2i (240,30);
glEnd();
4. Transform Rotate Scale
|1 0 tx| |cos& -sin& 0 | |sx 0 0 |
|0 1 ty| | sin& cos& 0 | |0 sy 0 |
|0 0 1 | | 0 0 1 | |0 0 1 |
The matrixes must be written from right to left. Instead of [S] [R] [T], the order of the question.
We have [T][R][S] (Remember This!!)
Transform Rotate Scale
|1 0 2 | | 0 -1 0 | |3 0 0 |
|0 1 2 | | 1 0 0 | |0 4 0 |
|0 0 1 | | 0 0 1 | |0 0 1 |
Then add them one by one.
[T]+[R]
[T] 1st row by [R] 1st column = (1*0)+(0*1)+(2*0)=0
[T] 1st row by [R] 2nd column = (1*-1)+(0*0)+(2*0)=-1
[T] 1st row by [R] 3rd column = (1*0)+(0*0)+(2*1)=2
[T] 2nd row by [R] 1st column = (0*0)+(1*0)+(2*1)=2
[T] 2nd row by [R] 2nd column = (0*-1)+(1*0)+(2*0)=0
[T] 2nd row by [R] 3rd column = (0*0)+(1*0)+(2*1)=2
[T] 3rd row by [R] 1st column = (0*0)+(0*0)+(1*1)=1
[T] 3rd row by [R] 2nd column = (0*-1)+(0*0)+(1*0)=0
[T] 3rd row by [R] 3rd column = (0*0)+(0*0)+(1*1)=1
So[TR] =|0 -1 2|
|2 0 2|
|1 0 2|
Then repeat the steps for [TR] + [S]
5. Xb = m∑i=0 mCi ui (i-u)m-I X
Yb = m∑i=0 mCi ui (i-u)m-I Y
m= number of point given -1
C= Combination (We did this B4)
Software Testing Tips
2. draw cause effect graph
3. Identify THREE actions involved during form testing
4. Briefly describe end-to-end transaction testing
5. What is a legacy system? define
6. Describe FOUR attributes of quality test case
7. CFG, Cyclomatic complexity value...
Thanks to Andy :D
Saturday, June 6, 2009
Software Project Management Exam Tips
- NPV, ROI, payback
Topics
- WBS, Weighted scoring model
- For WBS must at least three levels
- Check example of building a house
- EVM
- Textbook pp 285-291
- Tutorial 12 (Chapter7revised) page1 q1
- AOA
- Tutorial 8 page 2
- Text book pp 223-224, 255(q2)
- Project time management
- Critical path is the longest path
EVM Formulas
- EV = PV to date * RP
- CV = EV - AC
- SV = EV - PV
- CPI = EV/AC
- SPI = EV/PV
- EAC = BAC/CPI
- ETC= OTE/SPI
EV - Earned Value
PV - Planned Value
RP - Rate of Performance
CV- Cost Variance
AC- Actual cost
SV- Schedule Variance
CPI- Cost Performance Index
SPI- Schedule Performance Index
EAC- Estimate at Completion
BAC-Budget at Completion
ETC-Estimated Time to Complete
OTE-Original Time Estimate
Analyzing
Important factors in project are cost and time
- CV represents the cost performance
- SV represents the time performance
- If they are positive, they are ahead of schedule/under budget if negative they are behind schedule/ over budget
- CPI represents the cost performance as an index/performance. It verifies the CV
- SPI represents the time performance as an index/performance. It verifies the SV
- Over 100% is good ( they are ahead of schedule/under budget ) 100% is neutral and below 100% is bad (behind schedule/ over budget)
- If EAC is higher than BAC then the project is performing worse than planned because the new estimate to complete the project is x more than planned.
- You get OTE from the question, where they mention how long the project was intended to take
- If ETC is higher than OTE then the project is performing worse than planned because the project is projected to take x months longer than planned.
Exam Tips for CA
2. Given 3 points ( 3, 3, 2) , (2,2,1) and (4,1,2) find the vector, dot product, cross product and plane equation.
3. Draw the 2 object below with Open GL code
4. 2D transformation
Compose a 2D transformation matrix with
- scale in x by 3 and in y by 4; (Scale(3,4))
- then rotate trough 90 degree around origin (rotate(90))
- translate trough (2, 2)
5. Bezier Curve
Given V0(0,3), V1(1,5), V2(4,0) and V3(6,2) are the control points. Find the points where the curve will pass through when U = 0.5 using bezier curve technique
6. Find vector list, edge list, normal list and face list from a 3d object.
7. Describe each below:
Pre-production, Production, Post-production
8. Express the following terms : Animatronic, stop motion animation.
9 A triangle below is to be rotated for 30 degree in anti-clock wise order. given the pivot point (black dot) at (2,3) find the composite matrix in 2D space to perform the transactin.
Friday, June 5, 2009
Software Project Management Exam Tips
Exam date: Saturday 13th June 2009
These should be the most important sections to read:
- NPV, ROI, payback
- WBS, Weighted scoring model
- For WBS must at least three levels
- Check example of building a house
- EVM
- Textbook pp 285-291
- Tutorial 12 (Chapter7revised) page1 q1
- AOA
- Tutorial 8 page 2
- Text book pp 223-224, 255(q2)
- Project time management
- Critical path is the longest path
Topics
EVM Formulas
- EV = PV to date * RP
- CV = EV - AC
- SV = EV - PV
- CPI = EV/AC
- SPI = EV/PV
- EAC = BAC/CPI
- ETC= OTE/SPI
EV - Earned Value
PV - Planned Value
RP - Rate of Performance
CV- Cost Variance
AC- Actual cost
SV- Schedule Variance
CPI- Cost Performance Index
SPI- Schedule Performance Index
EAC- Estimate at Completion
BAC-Budget at Completion
ETC-Estimated Time to Complete
OTE-Original Time Estimate
Analyzing
Important factors in project are cost and time
- CV represents the cost performance
- SV represents the time performance
- If they are positive, they are ahead of schedule/under budget if negative they are behind schedule/ over budget
- CPI represents the cost performance as an index/performance. It verifies the CV
- SPI represents the time performance as an index/performance. It verifies the SV
- Over 100% is good ( they are ahead of schedule/under budget ) 100% is neutral and below 100% is bad (behind schedule/ over budget)
- If EAC is higher than BAC then the project is performing worse than planned because the new estimate to complete the project is x more than planned.
- You get OTE from the question, where they mention how long the project was intended to take
- If ETC is higher than OTE then the project is performing worse than planned because the project is projected to take x months longer than planned.
Thursday, June 4, 2009
Some tips on SPM
Wednesday, June 3, 2009
KLC Adress
23, Jalan Sultan Ismail,
50250 Kuala Lumpur, Malaysia.
Tel: (+603) 2143 0005
Fax: (+603) 2143 0002
Tuesday, June 2, 2009
Sunday, May 31, 2009
Ethics Tips
hahaha...
According to him, here are the tips:
1. part one is very easy, she don't want to tell anything...
2. Case study on testing a robot. ...
Monday, May 25, 2009
Final Exam Schedule for Software Engineering
11th June - ChaAnim - 2pm class L1/16 BMULT3609
12th June - Soft Test - 9.30am class L2/33 BTECH3618
13th June - SPM - 10am class L1/14 or 23 BCOMP3508
Friday, May 22, 2009
Microsoft Update Seminaar May 22, 2009
the RC will be expired on next March.. so the final release will only come after that
2. Windows Live. Lot's of cool stuffs. for me, it's just another google and yahoo, trying to make everything in one. I dunno what are the benefit others than its popularity. Maybe the popularity make it more popular LOL
3. Silverlight 3.. some new stuffs about it, like 3D perspective, support out of the browser etc... Not bad... hehehe...
4. errmm, ohh, the MSDNAA (Microsoft Development Network Academic Association)... For us, LKW students, can get any software for Student License from mr. Tee.. For educational purposes only...
5. Imagine Cup.. Nothing new about this. This year already closed. next year competition will be announced around July... by that, almost of all us graduated LOL
A new vacuum cleaner salesman knocked on the door on the first house of the street.
A tall lady open the door.
Before she could speak, the enthusiastic salesman barged into the living room and opened a big black plastic bag and poured all the cow droppings onto the carpet.
"Madam, if I could not clean this up with the use of this new powerful Vacuum cleaner in the next 10 mins,
I will EAT all this dung!"
Exclaimed the eager salesman.
"Do you need chilly sauce or ketchup with that" asked the lady.
The bewildered salesman asked, "Why, madam?? "
"There's no electricity in the house..." said the lady.
MORAL: Gather all requirements and resources before working on any project and committing to the client...!!