Monday, July 1, 2013

Resume Project Communication Management

,
     Manajemen Komunikasi Proyek termasuk proses yang diperlukan untuk memastikan bahwa informasi dalam proyek dibuat dengan tepat dan cepat, baik dalam segi pengumpulan, diseminasi, penyimpanan, dan disposisi. Hal ini menciptakan hubungan yang penting antara orang-orang, ide, dan informasi yang diperlukan supaya proyek berakhir dengan kesuksesan.            Manajemen Komunikasi  Identifikasi Stakeholder -Proses mengidentifikasi semua orang atau organisasi dipengaruhi oleh proyek, dan mendokumentasikan informasi yang relevan mengenai kepentingan mereka, keterlibatan, dan dampaknya pada keberhasilan proyek. Rencana Komunikasi -Proses penentuan...
Read more

Resume Project Procurement Management

,
Manajemen Pengadaan adalah proses –proses yang dilakukan untuk mendapatkan barang dan/atau jasa yang dibutuhkan sebuah proyek dari luar organisasi yang didukungnya. Proses Project Procurement Management Enam proses utama dari project procurement management :         1. Planning purchases         2. Planning acquisition         3. Planning contracting         4. Requesting seller responses         5. Selecting sellers         6. Administering the contract         7.  Closing the contract Tiga siklus dalam pengadaan proyek :  ...
Read more

Resume Project Risk Management

,
Proyek Manajemen Risiko melibatkan perencanaan melakukan manajemen risiko, terlibat dalam identifikasi risiko, menyelesaikan analisis risiko, menciptakan rencana risiko tindakan tanggapan, dan pemantauan dan pengendalian risiko pada proyek. Proyek Manajemen Risiko adalah proses berkesinambungan untuk terlibat dalam seluruh keseluruhan proyek. Hal penting yang harus diingat adalah bahwa risiko tidak selalu buruk. Ada peluang dan ada ancaman. Kesempatan adalah risiko yang baik. Memperlakukan adalah risiko buruk. Tujuan dari manajemen risiko proyek adalah untuk meningkatkan kemungkinan dan dampak peristiwa positif dan untuk mengurangi probabilitas dan dampak dari kejadian negatif. Proses manajemen...
Read more

Thursday, December 1, 2011

Jenis Fungsi pada bahasa C dan C++

,
jenis fungsi-fungsi pada bahasa C maupun C++ : 1. fungsi yang tidak punya input dan tidak punya output 2. fungsi yang tidak punya input tetapi punya output 3. fungsi yang punya input tetapi tidak punya output 4. fungsi yang punya input dan punya output jenis fungsi pada bahasa C dan C++ menurut nilai kembalian yang dihasilkan : 1. fungsi yang mempunyai nilai kembalian : a. fungsi yang tidak punya input tetapi punya output Code:sintaks umum : tipe_data nama_fungsi () {     statemen1;     statemen2;     ... } contoh : Code:int show_number() {     int a = 1;     return (a); } fungsi return()...
Read more

Wednesday, November 23, 2011

Manchester United F.C.

,
Manchester United Nama lengkap Manchester United Football Club Julukan The Red Devils[1] Didirikan 1878, dengan nama Newton Heath LYR F.C. Stadion Old Trafford (Kapasitas: 75.957[2][3]) Pemilik Keluarga Glazer Wakil ketua Joel dan Avram Glazer Manajer Sir Alex Ferguson Liga Liga Utama Inggris 2010–11 Liga Utama Inggris, ke-1 Situs web Situs web resmi klub Manchester United F.C. (biasa disingkat Man Utd, Man United atau hanya MU) adalah sebuah klub sepak bola papan atas di Inggris yang berbasis di Old Trafford, Manchester, Dibentuk sebagai Newton Heath L&YR F.C. pada 1878 sebagai tim sepak bola depot Perusahaan Kereta Api Lancashire dan Yorkshire Railway di Newton...
Read more

Wednesday, November 9, 2011

Snow Leopard Transformation pack

,
" class="thumbnail" src="https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_vT4ZCku4pZZW8e818uCtoonO-fOqiw3y2l0ZoNDEh-WgVrk4ODHGjcchIfZbrrNfKslTQAvENyvnRe1oMPiumptqA2gLsZqtQQbxsZetLrjhn_hkQK0J4tDpRZpClDLLGlfPGH=s0-d" title="User Login » Click to zoom ->"> " class="thumbnail" src="https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_sdrcXpCQAKPBHQr8ytuhfHCPKNdtdj-MH5XF0ZAKbzoYlNJ2gfuBjJI4KXcsqZVLW5hYJYbX3eolnvRgwxHotLkUIHUAyL0IbZ5q2F95XmgQSu7za8PzcHS-v50SyVyv9ovw=s0-d" title="Desktop » Click to zoom ->"> " class="thumbnail" src="https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_ttMxDh8sl-c1YihUhSP6g4kPN7_z3IhlmGLxLo5QwVp1YcVEWK-sL30UIjX1gM5PUpJOcNHZkkNle-JVVs2zMCaPbg1HBuZfF8DE4y9aYmB5sXR1A-bnU--Te1muQU1KJcgw=s0-d"...
Read more

Analisis algoritma

,
1.      2. Tn = 1/3 + 2/3 + 1 + 4/3 + …… + 1/3na.       Tentukan kompleksitas waktub.      Tentukan big OJawab :        a). Tn = 1/3 + 2/3 + 1+ 4/3+………….+ 1/3 n    Tn = 1/3 (1+2+3+4+………………….+ n)    1/3. ½ n (n+1)    1/6 n (n+1)    1/6 n2 + 1/6 n    Tn = O (n2)b). 1/6 n2 + 1/6 n ≤ 1/6 n2 + 1/6 n2       1/6 n2 + 1/6 n ≤ 1/3 n2       C = 1/3 ,  n0= 1 ,   n ≥ 1===============================================================1.     ...
Read more

Saturday, November 5, 2011

FILE JOINER 2.01

,
File Joiner is a tool that combines (binds) unlimited files (no matter their type) into a single standalone executable (a Container). The Container (the final bound file) is a simple compiled program that, when opened, will automatically launch the included files. File Joiner can run any type of file from the bound file without affecting its direct functionality. For instance, if you bind an executable, a text file and an image file, when the Container file is run, the executable will be run too while the other files...
Read more

Thursday, November 3, 2011

Coding Segitiga

,
#include <stdio.h> #include <stdlib.h> int main(int argc, char *argv[]) {   int n,i,j,k,l;   l=1;   printf("masukan : ");scanf("%i",&n);   for (i=n; i>=1; i=i-2)   {      for (k=1;k<=l;k++)               printf(" ");       for (j=1; j<=i; j++)       {           printf("*");       }       l++;       printf("\n");   }   getch();      return 0;...
Read more

SARDU - Multiboot creator DVD & USB

,
  SARDU enables you to create a multiboot device (USB stick or other removable) containing your Utilities, Antivirus, Windows PE and Windows XP, Vista, Seven Installers with all Windows Recovery Disks.You can also import customized menus and customized folders and / or ISOs not directly supported. This makes SARDU infinitely complete and customizable. Multiple AntivirusAfter downloading the ISO images, with SARDU you can use the engine of more than ten of antivirus (one at time) to remove malware, viruses or others malicious software. This multiple antivirus rescue disc utility considers a great computer troubleshooting tools if your computer can't be start or if is damaged....
Read more
 

cvbn45's Blog Copyright © 2011 -- Template created by O Pregador -- Powered by Blogger