Himti e-Community

Komunitas online buat ngumpulnya anak-anak TI BINUS University
It is currently Tue Feb 09, 2010 6:49 pm

All times are UTC + 7 hours




Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 365 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7 ... 37  Next
Author Message
 Post subject: Re: KISI-KISI UTS SEMESTER 5
PostPosted: Wed Nov 12, 2008 3:00 pm 
Offline

Joined: Thu Apr 19, 2007 9:41 pm
Posts: 137
sisop

pg 20 soal 40% -> pertemuan 1-12
essay 4 soal 60%

1. pengertian2 apa itu s/o, sejarah s/o, klarifikasi s/o, h/w riview, konsep s/o, system call, structur s/o
2. proses & thread : proses, thread,ipc,masalah klasik, schedulling
3. deadlock : resource, introduksi deadlock, algoritma ostrich, deadlock detection & recovery(nga deadlock), deadlock avriance, deadlock prevention, issue2
4. memory management : teknik dasar, pengertian memory, monoprogramming, multiprogramming dgn partisi tetap, modelling multiprogramming
, analisis kinerja sistem multi programming, relokasi & proteksi swapping, memory management dgn bitmap, linked list, algoritma pengalokasian memory, virtual memory, page table


tuh ralatnya, dosenya ngebold yg itu doang, mencurigakan ngga?

kayaknya yg di bold bakalan kluar, hehehe...

_________________
add My YM : gamebreakerremy@yahoo.com

My Personal Blogs : http://www.Arcielt.blogspot.com


Top
 Profile  
 
 Post subject: Re: KISI-KISI UTS SEMESTER 5
PostPosted: Wed Nov 12, 2008 3:29 pm 
Offline

Joined: Thu Apr 19, 2007 9:41 pm
Posts: 137
Open GL!!!

membuat kotak
print2d_t kotak [4] = {{400,-300},{400,-300},{400,300},{400,300}};

warna
color_t col[4] = {{1,1,1},{1,1,1},{0,0,1},{0,0,1}};

gradate
gradatePolygon(kotak,col,4);

buat garis
drawline(xp,yp,xp+dx,yp);
setcolor(1,1,1); ->putih

print2d_t bintang[100];
bintang[i].x=and()%400;
bintang[i].y=and()%300;
drawdot(bintang[i].x,bintang[i].y)

klo ada yang sala ralat ya!

ujian 2 hr lg ne...

_________________
add My YM : gamebreakerremy@yahoo.com

My Personal Blogs : http://www.Arcielt.blogspot.com


Top
 Profile  
 
 Post subject: Re: KISI-KISI UTS SEMESTER 5
PostPosted: Wed Nov 12, 2008 6:08 pm 
Offline

Joined: Tue Mar 18, 2008 8:54 pm
Posts: 42
GRAFKOM denger2 katanya bakal ada codingan openGL yang keluar.
Denger2 lagi kalo ga salah yg keluar eclips sama fill background (agak2 ga yakin juga bener apa ga)..
Kalo ada yg punya codingan openGL apapun juga, tolong minta donggg..
soalnya dosen gw bener2 ga ngasih tugas apa2.. ::help::

_________________
just another picture of my life..


Top
 Profile  
 
 Post subject: Re: KISI-KISI UTS SEMESTER 5
PostPosted: Wed Nov 12, 2008 6:28 pm 
Offline

Joined: Mon Nov 13, 2006 5:10 pm
Posts: 22
Algoritma Cyrus Beck itu seperti apa ya (Liat di Binusmaya tak mengerti) ? azarin sedikit donk kalau bisa disertai dengan contoh... thanks

_________________
Santai tyuuuuuss.....


Top
 Profile  
 
 Post subject: Re: KISI-KISI UTS SEMESTER 5
PostPosted: Wed Nov 12, 2008 7:20 pm 
Offline
User avatar

Joined: Tue Nov 13, 2007 3:44 pm
Posts: 100
Location: Jakarta
Tolong jgn jd leecher saja..
tp jd seeder jg..
hehe

nih gw share grafkom cth soal (tp gak jelas, soalnya dosen gw gak jelas jg.. wakwkkw)

Code:

1. http://www.kitaupload.com/download.php?file=206LATIHAN SOAL.doc
2. http://www.kitaupload.com/download.php?file=656LATIHAN SOAL.rtf
3. http://www.kitaupload.com/download.php?file=170LATIHAN SOAL-II.rtf
4. http://www.kitaupload.com/download.php?file=995LATIHAN SOAL-III.rtf
5. http://www.kitaupload.com/download.php?file=618SOAL CLIPPING.rtf
6. http://www.kitaupload.com/download.php?file=687SOAL TRANSFORMASI 3D.rtf
7. http://www.kitaupload.com/download.php?file=73SOAL VIEWING 2D.rtf
8. http://www.kitaupload.com/download.php?file=633SOAL-TRANSFORMASI-2D.rtf
9. http://www.kitaupload.com/download.php?file=79utsuasgraf08_SP[1].doc




credits to uploader ( H***** )

_________________
=- No Gain Without Pain -=


Top
 Profile  
 
 Post subject: Re: KISI-KISI UTS SEMESTER 5
PostPosted: Wed Nov 12, 2008 8:16 pm 
Offline
User avatar

Joined: Tue Nov 20, 2007 7:57 pm
Posts: 31
Location: tempat yang sangat indah
Code:
//*****************      IMPORTANT NPTE      ****************************
//
//To do glut make sure you have glut32.lib and opengl32.lib are inserted
//in the project as files. Also make sure glut.h is also in the inculde
//file under Tools->option path. Also glut32.dll is in the windows/system
//directory
#include <stdio.h>
#include <glut.h>
#include <windows.h>


void display(void)
{
glClear( GL_COLOR_BUFFER_BIT);
glColor3f(0.0, 1.0, 0.0);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glRotatef(-30.0,  1,  0,  0);
glRotatef(-30.0,  0,  1,  0);
glTranslatef(0,  0,   0);



//glutWireCube(2.0);
glVertex3f(2.0, 4.0, 0.0);
  glVertex3f(8.0, 4.0, 0.0);
  glVertex3f(8.0, 6.0, 0.0);
  glVertex3f(2.0, 6.0, 0.0);
glEnd();
glFlush();
}

int main(int argc, char **argv)
{
printf("hello world\n");
glutInit(&argc, argv);
glutInitDisplayMode ( GLUT_SINGLE | GLUT_RGB | GLUT_DEPTH);

glutInitWindowPosition(100,100);
glutInitWindowSize(300,300);
glutCreateWindow ("square");

glClearColor(0,0,0,0);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrtho(-5.0, 5.0, -5.0, 5.0, 5.0, -5.0);

glutDisplayFunc(display);
glutMainLoop();

return 0;
}

_________________
No comment...


Top
 Profile  
 
 Post subject: Re: KISI-KISI UTS SEMESTER 5
PostPosted: Wed Nov 12, 2008 9:02 pm 
Offline

Joined: Fri Nov 07, 2008 8:40 am
Posts: 4
thoo wrote:
Code:
//*****************      IMPORTANT NPTE      ****************************
//
//To do glut make sure you have glut32.lib and opengl32.lib are inserted
//in the project as files. Also make sure glut.h is also in the inculde
//file under Tools->option path. Also glut32.dll is in the windows/system
//directory
#include <stdio.h>
#include <glut.h>
#include <windows.h>


void display(void)
{
glClear( GL_COLOR_BUFFER_BIT);
glColor3f(0.0, 1.0, 0.0);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glRotatef(-30.0,  1,  0,  0);
glRotatef(-30.0,  0,  1,  0);
glTranslatef(0,  0,   0);



//glutWireCube(2.0);
glVertex3f(2.0, 4.0, 0.0);
  glVertex3f(8.0, 4.0, 0.0);
  glVertex3f(8.0, 6.0, 0.0);
  glVertex3f(2.0, 6.0, 0.0);
glEnd();
glFlush();
}

int main(int argc, char **argv)
{
printf("hello world\n");
glutInit(&argc, argv);
glutInitDisplayMode ( GLUT_SINGLE | GLUT_RGB | GLUT_DEPTH);

glutInitWindowPosition(100,100);
glutInitWindowSize(300,300);
glutCreateWindow ("square");

glClearColor(0,0,0,0);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrtho(-5.0, 5.0, -5.0, 5.0, 5.0, -5.0);

glutDisplayFunc(display);
glutMainLoop();

return 0;
}




btw ni coding bwt ap y?? :-?
ada yg bs bantu jelasin??


Top
 Profile  
 
 Post subject: Re: KISI-KISI UTS SEMESTER 5
PostPosted: Wed Nov 12, 2008 9:04 pm 
Offline

Joined: Tue Mar 18, 2008 8:54 pm
Posts: 42
thoo wrote:
Code:
//*****************      IMPORTANT NPTE      ****************************
//
//To do glut make sure you have glut32.lib and opengl32.lib are inserted
//in the project as files. Also make sure glut.h is also in the inculde
//file under Tools->option path. Also glut32.dll is in the windows/system
//directory
#include <stdio.h>
#include <glut.h>
#include <windows.h>


void display(void)
{
glClear( GL_COLOR_BUFFER_BIT);
glColor3f(0.0, 1.0, 0.0);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glRotatef(-30.0,  1,  0,  0);
glRotatef(-30.0,  0,  1,  0);
glTranslatef(0,  0,   0);



//glutWireCube(2.0);
glVertex3f(2.0, 4.0, 0.0);
  glVertex3f(8.0, 4.0, 0.0);
  glVertex3f(8.0, 6.0, 0.0);
  glVertex3f(2.0, 6.0, 0.0);
glEnd();
glFlush();
}

int main(int argc, char **argv)
{
printf("hello world\n");
glutInit(&argc, argv);
glutInitDisplayMode ( GLUT_SINGLE | GLUT_RGB | GLUT_DEPTH);

glutInitWindowPosition(100,100);
glutInitWindowSize(300,300);
glutCreateWindow ("square");

glClearColor(0,0,0,0);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrtho(-5.0, 5.0, -5.0, 5.0, 5.0, -5.0);

glutDisplayFunc(display);
glutMainLoop();

return 0;
}


ini buat bikin apa yah?
grafkom bener2 ga ada bayangan apa2 nih..
gw ga ada kuis, ga ada catatan, ga ada soal apa2..
dosen gw bener2 cuma baca slide.. :cry:

_________________
just another picture of my life..


Top
 Profile  
 
 Post subject: Re: KISI-KISI UTS SEMESTER 5
PostPosted: Wed Nov 12, 2008 9:16 pm 
Offline

Joined: Sat Jun 14, 2008 10:37 am
Posts: 50
Location: di kamar gue
thoo wrote:
Code:
//*****************      IMPORTANT NPTE      ****************************
//
//To do glut make sure you have glut32.lib and opengl32.lib are inserted
//in the project as files. Also make sure glut.h is also in the inculde
//file under Tools->option path. Also glut32.dll is in the windows/system
//directory
#include <stdio.h>
#include <glut.h>
#include <windows.h>


void display(void)
{
glClear( GL_COLOR_BUFFER_BIT);
glColor3f(0.0, 1.0, 0.0);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glRotatef(-30.0,  1,  0,  0);
glRotatef(-30.0,  0,  1,  0);
glTranslatef(0,  0,   0);



//glutWireCube(2.0);
glVertex3f(2.0, 4.0, 0.0);
  glVertex3f(8.0, 4.0, 0.0);
  glVertex3f(8.0, 6.0, 0.0);
  glVertex3f(2.0, 6.0, 0.0);
glEnd();
glFlush();
}

int main(int argc, char **argv)
{
printf("hello world\n");
glutInit(&argc, argv);
glutInitDisplayMode ( GLUT_SINGLE | GLUT_RGB | GLUT_DEPTH);

glutInitWindowPosition(100,100);
glutInitWindowSize(300,300);
glutCreateWindow ("square");

glClearColor(0,0,0,0);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrtho(-5.0, 5.0, -5.0, 5.0, 5.0, -5.0);

glutDisplayFunc(display);
glutMainLoop();

return 0;
}


gw coba debug, tapi kok error?

_________________
I'm : cari_kisi2
you get what you share... ;)


Top
 Profile  
 
 Post subject: Re: KISI-KISI UTS SEMESTER 5
PostPosted: Wed Nov 12, 2008 10:01 pm 
Offline

Joined: Mon Aug 28, 2006 1:06 am
Posts: 372
Location: jakarta
tu coding buat bikin wire cube.. jadi bikin kubus tapi ga ada isinya..
ada yang ke coment tu..

errornya gmana? kalo compilenya pake visual studio, musti di tambahin #include"stdafx.h"

_________________
:) >:) :)


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 365 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7 ... 37  Next

All times are UTC + 7 hours


Who is online

Users browsing this forum: andrew_stvn, Beenusian, eva, stvanzx, vespire and 23 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Blue Moon by Trent © 2007
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group