Rabu, 18 Juli 2018






                                     


      " Technology and social media have brought power back to the people. One thing I think is great is that if you use social media really well - in a natural, personal way - you can kind of see what's missing. You can see when you're bored of something or of someone. Social media is not about the exploitation of technology but service to community. Like all technology, social media is neutral but is best put to work in the service of building a better world."




Rabu, 11 Juli 2018

Azizah
1703015188
English Writing

*Procedure Text*

"How To Setting Up a Basic LAN"

1.  Gather your network hardware.
Image titled Create a Local Area Network (LAN) Step 6
      To create a LAN, you'll need a router or switch, which will act as the hub of your network. These devices route information to the correct computers.
A router will automatically handle assigning IP addresses to each device on the network, and is necessary if you intend to share your internet connection with all the connected devices. It is highly recommended that you build your network with a router, even if you're not sharing an internet connection.
A network switch is like a simpler version of a router. It will allow connected devices to talk to each other, but will not automatically assign IP addresses and will not share an internet connection. Switches are best used to expand the number of LAN ports available on the network, as they can be connected to the router.

2. Set up your router.

Image titled Create a Local Area Network (LAN) Step 7
You don't need to do much to set up a router for a basic LAN. Just plug it into a power source, preferably close to your modem if you plan on sharing the internet connection through it.

3. Connect your modem to your router (if necessary)

Image titled Create a Local Area Network (LAN) Step 8

If you're sharing the internet connection from your modem, connect the modem to the WAN/INTERNET port on the router. This is usually a different color from the other ports.

4. Connect your switch to your router (if necessary)

Image titled Create a Local Area Network (LAN) Step 9
If you're using a switch to expand the number of ports available on the router, plug an Ethernet cable into any LAN port on the router and any LAN port on the switch. This will expand the network to the rest of the LAN ports on the switch.


5. Connect your computer to open LAN ports.
Image titled Create a Local Area Network (LAN) Step 10

Use Ethernet cables to connect each computer to an open LAN port on your router or switch. It doesn't matter what order the ports are connected in.
Ethernet cables cannot reliably transfer data at lengths larger than 100m (328 ft).

6. Set up PC as a DHCP server if you're just using a switch.
Image titled Create a Local Area Network (LAN) Step 11
If you're only using a switch as your network hub, setting up one computer as a DHCP (Dynamic Host Configuration Protocol) server will allow all of the connected computers to easily obtain IP addresses.
1. You can quickly create a DHCP server on one of your computers by installing a third-party utility.
2. The rest of the computers on the network will obtain IP addresses automatically once the server is running, as long as they are set to do so.

7. Verify the network connection on each computer.
Image titled Create a Local Area Network (LAN) Step 12 
After each computer obtains an IP address, they'll be able to talk to each other on the network. If you're using a router to share your internet connection, each computer will be able to access the internet.

8. Set up file and printer sharing 
Image titled Create a Local Area Network (LAN) Step 13
Once your network is up, you won't see anything on other computers unless that computer has shared files. You can designate files, folders, drives, printers, and other devices as shared so that anyone on the network, or just specific users, can access them.

Minggu, 10 Juni 2018

English Writing 2D
Azizah

Social Devotion in Ramadhan

    In the middle of Ramadhan, association of informatics engineering held social devotion . This event held at elementary and junior high school of Al Hamidiyah in Kampung Gunung Batu, Bogor. We send some college student as teacher to teach and introduce about IT with student in there.
     For junior high school, we introduce and explain about Social Media like Facebook, Instagram, Twitter, etc. Then how to use the social media wisely. While, for elementary school we introduce and explain about computer like laptop. Then, we teach how to operate the laptop and try to draw in the application (paint). All of them so happy, and we so happy too. Because we can share science with them.

English Writing 2D
1. Azizah
2. Faiz Nur Iqbal

Information Age about Sport Data

      Sport has never been more competitive. Today , every athlete, coach and team are tapping into data analysis to achieve the slightest for this, but is the analysis as effective as possible?
      The context here is that the volume of data available to teams is expanding exponentially. If you take football as an example, as the amount of data increases, it's becomes harder to analyse these milions of data points into something that can be quickly absorbed,tailored,and shared to enchance teams performances and win more games. So instead, many teams only receive flat, statistical reporting that's devoid of tactical context.

Selasa, 24 April 2018

TUGAS INDIVIDU MK STRUKTUR DATA 2A
RESUME (TIPE DATA DALAM BAHASA C/C++)
AZIZAH 1703015188

https://drive.google.com/file/d/1kwDhbBgCrZsb1E98wj64svsBuKVV3ltC/view?usp=drivesdk

Selasa, 27 Maret 2018

Azizah 1703015188
Alamat blog : azizah1703015188.blogspot.com
Pengertian Dan contoh dari tipe bahasa C/C++
 setiosflags() Dan ios::scientific
Sumber :
http://googleweblight.com/i?u=http://www.materidosen.com/2017/03/10-jenis-manipulator-c-lengkap-contoh.html?m%3D1&hl=en-ID

setiosflags() Dan ios::scientific Adalah fungsi dari manipulator yang disediakan oleh DevC++ dengan menyertakan file header <iomanip> dan <iostream>

setiosflags( )

setiosflags( ) adalah sebuah fungsi manipulator yang dipakai untuk mengatur berbagai format keluaran data, Untuk menggunakan manipulator setiosflags(), sobat harus menyertakan file header <iomanip>. Terdapat berbagai format keluaran (outout) untuk fungsi setiosflags(), salah satunya Adalah ios:: scientific yaitu memformat keluaran pada notasi eksponensial .
Contoh :
#include <iostream>
#include <iomanip>

using namespace std;

int main ()
{
     int M = 20, D = 35;

     // Contoh fungsi manipulator setiosflags()
     cout<<"\nPenggunaan ios::left dan ios::right\n";

     cout<<"\nRata Sebelah Kiri  = ";
     cout<<setiosflags(ios::left)<<setw(8)<<M;
     cout<<setiosflags(ios::left)<<setw(8)<<D;

     cout<<"\nRata Sebelah Kanan = ";
     cout<<setiosflags(ios::right)<<setw(8)<<M;
     cout<<setiosflags(ios::right)<<setw(8)<<D;

     return 0;
}