Posts

Showing posts with the label MCWC

How To display the signal strength of WiFi connection of the given computer

Image
Practical - 3 How To display the signal strength of WiFi connection of the given computer. Download Practical Commands: netsh wlan show drivers Output: netsh wlan show interfaces Output: netsh wlan show profiles Output: netsh wlan show all Output:

Prepare a wireless ad hoc network and show its working

Image
Practical - 9 Prepare a wireless ad hoc network and show its working. Download Practical An ad hoc network is a local area network you can build spontaneously in a pinch. It allows computers and devices to communicate directly with each other within a small radius. The ability to create an ad hoc network has been possible since XP and is a way to quickly share data and an Internet connection to other wireless devices. For this tutorial you’ll need the host computer to be hardwired and have wireless capabilities such as a Netbook or Laptop. Create an ad hoc Network Open the Start Menu and type  wireless  into the Search box and select  Manage wireless networks . Click the Add button to add a wireless network. Next click on  Create an ad hoc network … You’ll get a message instructing you of what an ad hoc network is…click Next. Now give your network a name and choose security options…check   Save this network   if you plan to...

Developing calculator Android Application

Image
Practical - 9 Develop calculator Android Application. Download Practical Code: MainActivity.java package com.believe.calculator; import android.os.Build; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.view.Window; import android.view.WindowManager; import android.widget.Button; import android.widget.TextView; import java.text.DecimalFormat; public class MainActivity extends AppCompatActivity {     Button mone;     Button mtwo;     Button mthree;     Button mfour;     Button mfive;     Button msix;     Button mseven;     Button meight;     Button mnine;     Button mzero;     Button mdot;     Button mplus;     Button mminus;     Button mmultiply;     Button mdevide;     Button mequal;     Button mallClear;  ...