Showing posts with label an. Show all posts
Showing posts with label an. Show all posts

How to Boot From an ISO CD Image

An ISO image is a file that archives the content of an optical disk. The ISO file contains all the information contained in the optical disk it is a copy of. If you purchase Windows 7 online or install any software that requires you to restart your computer, you will be downloading an ISO image. The ISO image needs to be burned to a CD/DVD to be usable. However, if you are using a virtualization software program, you can use the ISO file directly in one of your virtual machines.

Instructions

    Virtual Machine

  1. Step 1

    Run your virtualization software. Create a virtual machine by clicking on "New" on the top of the window and follow the on-screen instructions.

  2. Step 2

    In the CD/DVD section, select "Use an ISO Image"

  3. Step 3

    Use the browse function to find the ISO image you want to use. Click "Open" to have the virtual CD/DVD reader load the ISO image.

  4. Step 4

    Start your virtual machine, and it will boot from the ISO image.

  5. Real Machine

  6. Step 1

    Open your CD/DVD-burning software.

  7. Step 2

    Select "Burn Image" and select the ISO image you want to put on CD/DVD.

  8. Step 3

    Once the ISO image is burned onto the CD/DVD, insert the CD/DVD in the reader of the computer you want to boot from.

  9. Step 4

    Press the appropriate key to open the "Boot" menu on your computer. Select the CD/DVD drive and press "Enter."

Read More..

Cisco Recertification Is An Essential Asset For Professionals In Technology

By Mike Davis


Once a person receives Cisco training in the field of technology, it is essential for that individual to commit to periodic recertification. Recertification helps a person to stay aware of the latest technological advances and procedures. Recertifying may assist a professional in securing employment, keeping a job, and getting promoted to higher positions.

Up to date knowledge

Along with aiding an individual in the pursuit of continuing an education, recertification demonstrates to clients and employers that a person knows about changes in the technological industry. As technology evolves continuously, industry professionals need to remain aware of advancements that are relevant. Those professionals who do not stay informed as technology evolves are not likely to be equipped to work in the field. Many employers and clients are aware that this is true.

The training and educational system is thorough, and established guidelines can help people to stay educated. Cisco implements these rules to enable professionals to easily remain current on their recertification. They must first register to recertify, and then they must pass the exams that are required.

Expiration

It is essential that individuals learn what they need to do to meet exam requirements, before current certification expires. People who do not do so will be required to repeat the first exam process completely. Another way to stay current on certification is to recertify by achieving the next level of certification.

The expiration for entry level, associate level, and professional level certification is three years. This means that a person who has attained associate level CCNA training, for example, would need to recertify within three years of the last certification. CCENT and CCT are the entry level certifications. The associate and professional levels of training include an array of various options.

The deadline for all CCIE certifications is two years, which means that people who have achieved such certifications must recertify within the two year period after the last certification. CCDE and CCIE certifications comprise the expert level Cisco certifications. Expert level CCIE certifications include expert training in such things as collaboration, security and wireless.

A professional who has received Cisco architect certification has attained the CCAr certification. The CCAr is the highest certification achievable that is provided within the training system at Cisco. Recertification for a person of architect status must be achieved within five years.

Specialist certifications have a recertification deadline of two years. A wide array of of specialist certifications is available. Professionals may be certified as specialists in data center, collaboration, operating system hardware, video, and security.

Cisco training

Remaining educated on the continuous advances that occur in technology is important. Those who work in the field must stay aware of changes, and they need to know the best ways to implement such changes. Cisco training gives students the education needed to stay useful in a competitive industry. Learning the rules regarding recertification can be helpful. A professional who knows and complies with recertification guidelines will ultimately save money, effort and time that could probably be better spent on other things. Countless individuals are grateful to have the opportunity to recertify, since it may greatly enhance a career in the field of technology.




About the Author:



Read More..

Insertion and Deletion of elements in an Array

Suppose you are storing temperature data for a few months and you forgot to
store the temperature of a particular day (say 5th day) then you need to INSERT
that temperature after the 4th element of the array and in the other case if
you accidentally stored duplicate data then you need to DELETE the duplicate
element.


Apart from these simple examples, there are many other uses of insertion and
deletion


The array to which the element is to be inserted or deleted can be of two types
unordered (unsorted) and ordered (sorted). Here we will be discussing about
the insertion and deletion of element in an unordered or unsorted array.


For insertion in these types of arrays, we need to have two information, the
element to be inserted and the position to which it will be inserted. For deletion,
we only need the position.


Suppose we have the following array:


arr[5]={5,7,2,1,3}


And we need to insert the element 6 at the 2nd position, after insertion:


arr[5]={5,6,7,2,1}


Notice how the last element of the array (i.e. 3) has gone out to compensate
for the insertion.


Now, suppose we wish to delete the element at position 3rd, after deletion:


arr[5]={5,6,2,1,0}


We see, all the elements after the 3rd have shifted to their left and the vacant
space is filled with 0.


That’s exactly how insertion and deletion are done!


Algorithm for Insertion of an element in an array


Suppose, the array to be arr[max], pos to be the position
at which the element num has to be inserted. For insertion,
all the elements starting from the position pos are shifted
towards their right to make a vacant space where the element num is
inserted.




  1. FOR I = (max-1) TO pos
    arr[I] = arr[I-1]



  2.  arr[I] = num



Yeah it is that simple!


Algorithm for Deletion of an element in an array


Suppose, the array to be arr[max], pos to be the position
from which the element has to be deleted. For deletion, all the elements to
the right of the element at position pos are shifted to their
left and the last vacant space is filled with 0.




  1. FOR I = pos TO (max-1)
    arr[I-1] = arr[I]



  2. arr[I-1] = 0



Now, to illustrate all this let me show you a simple example program:


  // Example Program to illustrate
// insertion and deletion of
// elements in an array

#include<iostream.h>

// array has been declared as
// global so that other functions
// can also have access to it
int arr[5];

// function prototype
void a_insert(int, int);
void a_delete(int);

void main(void)
{
int ch;
int num,pos;

while(ch!=4)
{
cout<<"1> Insert";
cout<<"
2> Delete";
cout<<"
3> Show";
cout<<"
4> Quit
";

cin>>ch;

switch(ch)
{
case 1:
cout<<"enter element:";
cin>>num;
cout<<"enter pos.:";
cin>>pos;

a_insert(num,pos);
break;

case 2:
cout<<"enter pos.:";
cin>>pos;
a_delete(pos);
break;

case 3:
cout<<"
Array:";
for(int i=0;i<5;i++)
cout<<arr[i]<<" ";
break;
}
cout<<"
";
}
}

// insertion function
void a_insert(int num, int pos)
{
for(int i=4; i>=pos;i--)
arr[i]=arr[i-1];
arr[i]=num;
}

  // deletion function
void a_delete(int pos)
{
for(int i=pos; i<=4;i++)
arr[i-1]=arr[i];
arr[i-1]=0;
}

Good-Bye!



Related Articles:


Read More..