Pages

Tampilkan postingan dengan label using. Tampilkan semua postingan
Tampilkan postingan dengan label using. Tampilkan semua postingan

Sabtu, 28 Mei 2016

C Program which takes n values from user and then sort them using Bubble sort

C# Program which takes n values from user and then sort them using Bubble sort

Program Statement:
Write a program which takes n values from user and then sort them using Bubble sort

Solution:
 public class bubble
{
int n, x, y, z;
public void sort()
{
System.Console.Write(" Enter length of array : ");
n = Convert.ToInt32(System.Console.ReadLine());
int[] array = new int[n + 1];
int[] temp1 = new int[n + 1];
int[] temp2 = new int[n];
System.Console.WriteLine(" Enter {0} numbers : ", n);
for (x = 0; x < n; x++)
{
array[x] = Convert.ToInt32(System.Console.ReadLine());
}
for (y = n; y > 0; y--)
{
for (z = 0; z < y; z++)
{
if (array[z] > array[z + 1])
{
temp1[z] = array[z];
array[z] = array[z + 1];
array[z + 1] = temp1[z];
temp2[z] = array[z + 1];
}
else
{ temp2[z] = array[z]; }
}
}
Console.WriteLine(" >>>Ordered List<<< ");
for (int i = 0; i < n; i++)
{
Console.WriteLine(" {0}", temp2[i]);
}
}
}


Read More..

Jumat, 27 Mei 2016

Tutorial How to Create a Banner Scroll Vector Using Adobe Illustrator

Have you ever been wondering by how vector artist able to come out with unique banner that curved so perfectly? Here is a step by step guide on how you can do it with Adobe Illustrator.

1. Use your Adobe Illustrator and draw the below examples. I guess you have no problem drawing the following, right? In order to make all your points overlap accurately, you can use the Grid Tools (View -> Snap To Grid).


2. Select one of the rectangle and use Warp (Effect -> Warp -> Flag) just like the below.


3. Repeat the above step for the rests of the objects until you are satisfied.


4. Group the whole banner and use the Warp tool again. This time use Warp -> Arc, and you will get a perfected scrolling banner like the below.


I am also selling this banner scroll at IStockPhoto.



If you love this tutorial, please share to your friends and colleagues.



Read More..

Rabu, 25 Mei 2016

Convert C Coding into C Coding without using goto Statement

Convert C Coding into C# Coding without using goto Statement

Program Statement:
How many printf statements will be executed by this program and rewrite the following program without using goto statement.
void main( )
{
int i, j, k ;
for ( i = 1 ; i <= 3 ; i++ )
{
for ( j = 1 ; j <= 3 ; j++ )
{
for ( k = 1 ; k <= 3 ; k++ )
{
if ( i == 3 && j == 3 && k == 3 )
goto out ;
else
printf ( "%d %d %d ", i, j, k ) ;
}
}
}
out :
printf ( "Out of the loop at last!" ) ;
}

Solution:
 public class _check
{
int i, j, k, check=0;
public void c()
{
for (i = 1; i <= 3; i++)
{
for (j = 1; j <= 3; j++)
{
for (k = 1; k <= 3; k++)
{
if (i == 3 && j == 3 && k == 3)
{
Console.WriteLine(" Out of the loop at last ");
break;
}
else
{
Console.WriteLine(" {0},{1},{2}", i, j, k);
check = check + 1;
}

}
}
}
Console.WriteLine(" Loop iterated {0} times! ", check);
}
}


Read More..

Senin, 16 Mei 2016

C program to Check leap Year Using Conditional Statement

C# program to Check Year is leap or not Using Conditional Statement 

Program Statement: 
Write a program using conditional operators to determine whether a year entered through the keyboard is a leap year or not.

Solution:
static void Main(string[] args)
{
int year;
Console.WriteLine("Enter Year");
year = Convert.ToInt32(Console.ReadLine());
Console.WriteLine( year % 4 == 0 ? "Entered year is leap" : "Not leap year");
Console.ReadLine();}


Read More..

Senin, 09 Mei 2016

Shutdown computer using batch file

Most of the computer is rare shutdown their computer daily as a normal. They are create a batch which is easy and more fast than we think.

This is really a cool trick must be try.

This is a simple code that can be use to create a batch,



First create a shortcut as picture below














then type  shutdown -s -t 0











then click next and name it as shutdown.exe and click finish.
After that right click on the file that created and  click properties.





















Click on change icon and choose a icon below and click ok.
Thats it.















Hope this stuff useful for you can you may try it at home.
Read More..

C program to print nth iteration using loops

C# program to print 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 6 6 6 6 6 6 . . . nth iteration

Problem Statement:
Write a program using loop which prints the following output.
1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 6 6 6 6 6 6 . . . nth iteration

Solution:
static void Main(string[] args)
{
int i, j, num;
Console.WriteLine("Enter value of num:");
num = Convert.ToInt32(Console.ReadLine());
for (i = 1; i <= num; i++)
{
for (j = 1; j <= i; j++)
Console.Write(i + " ");
}
Console.ReadLine();
}


Read More..

Array Problem Solving using C

Array Problem Solving using C#

Program Statement:
Create two arrays student_rollno and student_marks, both of same size. First array will save the rollnos of students and second array will save the marks of students against his rollno. e.g. if student_rollno[0] contains 197 then student_marks[0] will contains the marks of roll no 197.
You have to print the roll no of student with maximum marks.

Solution:
 public class stud
{
int n, max = 0, check = 0;
public void marks()
{
Console.Write(" Enter number of students : ");
n = Convert.ToInt32(Console.ReadLine());
int[] array1 = new int[n];
int[] array2 = new int[n];
for (int x = 0; x < n; x++)
{
Console.Write(" Enter Roll No : ");
array1[x] = Convert.ToInt32(Console.ReadLine());
Console.Write(" Enter Marks : ");
array2[x] = Convert.ToInt32(Console.ReadLine());
if (max < array2[x])
{
max = array2[x];
check = x;
}

}
Console.WriteLine(" Student {0} has maximum marks! ", array1[check]);
}
}


Read More..

Sabtu, 07 Mei 2016

C program to Find Worker efficiency using if else statement

C# program to find Worker efficiency using if_else statement 

Program statement:
In a company, worker efficiency is determined on the basis of the time required for a worker to complete a particular job. If the time taken by the worker is between 2 – 3 hours, then the worker is said to be highly efficient. If the time required by the worker is between 3 – 4 hours, then the worker is ordered to improve speed. If the time taken is between 4 – 5 hours, the worker is given training to improve his speed, and if the time taken by the worker is more than 5 hours, then the worker has to leave the company. If the time taken by the worker is input through the keyboard, find the efficiency of the worker.

Solution:
static void Main(string[] args)
{
double time;
Console.WriteLine("Enter the Workers Time to complete Task:");
time = Convert.ToDouble(Console.ReadLine());
if (time >= 2 && time <=3)
Console.WriteLine("Good! Worked Efficiently");
else if(time>3 && time<=4)
Console.WriteLine("Improved Your working Speed");
else if(time>4 && time<=5)
Console.WriteLine("Required Tranning to improve Speed");
else if(time>5)
Console.WriteLine("Leave this company");
else
Console.WriteLine("No Result for this input");
Console.ReadLine();
}


Read More..

Selasa, 26 April 2016

C Program using Functions and loops

C# Program using Functions

Program Statement:
Write a function which takes one value as parameter and display the sum of digits in the value. e.g. if user has passed 125 then function will print 1+2+5 = 7

Solution:
 class _sum
{
long n, i, sum = 0;
public void add(long n)
{
for (i = n; i != 0; i = i / 10)
{
sum = sum + i % 10;

}
Console.WriteLine(" Sum of digits is : {0}", sum);
}
public void input()
{
Console.Write(" Enter desired digit : ");
n = Convert.ToInt64(System.Console.ReadLine());
add(n);
}

}


Read More..

Minggu, 24 April 2016

C Program should be able to search a value in the array using binary search algorithm

C# Program which takes n values in an array and then program should be able to search a value in the array using binary search algorithm

Program Statement:
Write a program which takes n values in an array and then program should be able to search a value in the array using binary search algorithm. Hint: You have to sort that array first because binary search can be applied only on sorted array

Solution:
 public class search
{
int n, num, s = 1, e, mid;
public void show()
{
Console.Write(" Enter length of array : ");
n = Convert.ToInt32(Console.ReadLine());
int[] array = new int[n];
Console.WriteLine(" Enter {0} numbers : ", n);
for (int i = 0; i < n; i++)
{
array[i] = Convert.ToInt32(Console.ReadLine());
}
for (int x = 0; x < n; x++)
{
for (int y = x + 1; y < n; y++)
{
if (array[x] > array[y])
{
int temp;
temp = array[y];
array[y] = array[x];
array[x] = temp;
}
}
}
Console.Write(" Enter number to search : ");
num = Convert.ToInt32(Console.ReadLine());
e = n;
mid = (s + e) / 2;
if (num == array[mid])
{ Console.Write(" Element {0} found! ", array[mid]); }
else if (num < array[mid])
{
for (int x = 0; x < mid; x++)
{
if (num == array[x])
{ Console.Write(" Element {0} found! ", array[x]); }
}
}
else if (num < array[mid])
{
for (int y = mid; y < n; y++)
{
if (num == array[y])
{ Console.Write(" Element {0} found! ", array[y]); }
}
}
else
Console.WriteLine(" Element not found! ");
}
}


Read More..

Sabtu, 23 April 2016

C Program to Print ASCII values and characters using a while loop

C# Program to Print ASCII values and their equivalent characters using a while loop

Problem Statement:
Write a program to print all the ASCII values and their equivalent characters using a while loop. The ASCII values vary from 0 to 255.

Solution:
static void Main(string[] args)
{
int i=0;
Console.WriteLine("ASCII Char");
while (i <= 255)
{
Console.WriteLine(i+" "+(char)i);
i++;
}
Console.ReadLine();
}


Read More..

Kamis, 14 April 2016

C Program using Two argument passing function

C# Program using Two argument passing function

Program Statement:
Write a function which takes two values n1 and n2 as arguments and multiply the n1 by itself n2 times i.e. calculate n1n2 and then return the result to main function which will display the result.

Solution:
 class power_fun
{
double x;
public
power_fun()
{
x = 1;
}
double power(int a,int b)
{

for (int i = 1; i <= b; i++)
{
x = x * a;
}
return x;
}

static void Main(string[] args)
{
power_fun p = new power_fun();
int n1, n2;
double result;
Console.Write("Enter 1st Value: ");
n1 = Convert.ToInt32(Console.ReadLine());
Console.Write("Enter 2nd Value: ");
n2 = Convert.ToInt32(Console.ReadLine());
result= p.power(n1, n2);
Console.WriteLine(n1+"^ "+ n2+" = "+ result);
Console.ReadLine();
}


Read More..

Rabu, 13 April 2016

C Program to Print ASCII Values Using do while Loop

C# Program to Print ASCII Values Using do-while Loop

Program Statement:
Write a program to print all the ASCII values and their equivalent characters using a do-while loop. The ASCII values vary from 10 to 255.

Solution:
 static void Main(string[] args)
{
int i = 0;
Console.WriteLine("ASCII character");
do
{
Console.WriteLine(i+" "+(char)i);
i++;
} while (i <= 255);
Console.ReadLine();
}


Read More..

Minggu, 10 April 2016

C program to prints an identity matrix using for loop

C# program which prints an identity matrix using for loop

Program statement:
Write a program which prints an identity matrix using for loop i.e. takes value n from user and show the identity table of size n * n.

Solution:
static void Main(string[] args)
{
int n,i,j;
Console.WriteLine("Enter value of n:");
n = Convert.ToInt32(Console.ReadLine());
int[,] arr=new int[n,n];

for (i = 0; i < n; i++)
{
for (j = 0; j < n; j++)
{
if (i == j)
arr[i, j] = 1;
else
arr[i, j] = 0;
Console.Write(arr[i, j]);
}
Console.WriteLine();
}
Console.ReadLine();
}


Read More..

Kamis, 07 April 2016

Download From Any Survey PPD Site Using Java Script 100 Working


Download From Any Survey PPD Site Using Java Script 100% Working
A site survey is an area to get information to complete the initial tasks required for an activity. The type of site survey depend on the nature of the project.To day I am sharing knowledge with you about downloading of survey site. In Internet world, there are many PPD sites which allows you to download any form after completing the survey. Survey completing step annoy you or sometime you are in hurry or sometime after completing survey you not able to download files.



Survey completion step is wastage of time sometime you ask to enter your personal information like phone number, Email address, home address etc. In order to overcome these problems I am sharing with you a trick to download from any survey PPD site using Java script.So,today our topic is How to Downlaod PPD Site Without Completing Survey. The trick which I am sharing with you will enable you to bypass any PPD site like Cleanfiles,Sharecase,Linkbucks etc without completing survey. Follow below steps to download from any type of survey sites.All these steps are shown with images hope so you follow it easily.

Regiments:
Below are requirement which you need to by pass PPD sites.


  • Download Java Script from the below link.
  •  Browser like Mozilla firefox, Google Chrome.
  •  Java Script Enable for the Browser.
                                                       Download Java Script

Downloading Steps:
1. Open your web browser.Copy java scripts and add it in bookmark list.


Download from any type of survey sites 100% working


Download from any type of survey sites 100% working

Download from any type of survey sites 100% working

2. Click on Book mark,when survey page appear.
Download from any type of survey sites 100% working

Download from any type of survey sites 100% working



3. This will remove the survey steps and downloading will start.

Download from any type of survey sites 100% working

Download from any type of survey sites 100% working

Download from any type of survey sites 100% working

Thats all.By doing this you will able to save your time and will download from any site without completing survey. Stay bless :)
Read More..

Rabu, 23 Maret 2016

C Program to Print half Diamond shapes using numbers

C# Program to Print half Diamond shapes using numbers 1 to 10

Program Statement:
Write a program to produce the following output:
             1
          2   3
        4   5   6
       7  8  9  10

Solution:
 static void Main(string[] args)
{
int i,j,k=1;
for (i = 1; i <= 4; i++)
{
for (j = 4; j >= 1; j--)
{
if (j > i)
Console.Write(" ");
else
Console.Write(" " + k++ + " ");
}
Console.WriteLine();
Console.WriteLine();
}
Console.ReadLine();
}


Read More..

Jumat, 18 Maret 2016

FIVE WAYS TO SELL OR PROMOTE YOUR BUSINESS USING FACEBOOK

www.facebook.com/naijaebookstore
A special report on
5 simple ways to sell your
products or service on
facebook for almost zero
naira capital
By
Ademiluyi Adegboyega
http://www.facebook.com/naijaebookstore
http://www.onlineresourceng.blogspot.com
www.facebook.com/naijaebookstore
Copyright Notice
You have my full 100% give away right to distribute this report to your friends and
loved one. However, do not edit any part of this report.
www.facebook.com/naijaebookstore
Before I go on, let me ask you a question
What if I could lay in your hands right now the full
advance course that will show you the complete
step by step on how to make your own facebook
cash in less than 30 days from now by giving you
access to all of my facebook marketing materials?
Click here to see full details
www.advancefacebookcourse.blogspot.com
www.facebook.com/naijaebookstore
Without wasting much time, lets get down to business
Facebook as we all know is one of the major social networks in the world having over
600 million users registered and still growing. Because of the large amount of people on
this network, it is now a very big potential place for marketers to sell and promote their
product. Whether you are a business owner, internet marketer, consultant, affiliate
marketer etc, you can easily get assess to lots of customer through facebook which is
the reason of you reading this report now to learn the 5 simple ways you can sell your
product on facebook for almost zero naira.
As you can see the title of this special report, I said almost zero capital because out of
the 5 ways I will be showing you on how to sell or promote your product or service only
one of them will actually involve you using money while the remaining four are free.
Here they are
Using facebook profile (free)
Using facebook page (free)
Using facebook event (free)
Using facebook application (free)
Using facebook ads (paid)
www.facebook.com/naijaebookstore
1. Using facebook profile
You might be familiar with this already but you might not have been conscious of the
fact that you can use this to sell your product or service directly to your friends. Have
you notice in your news feed whereby one of your friend place a picture of a product
like laptop, car, phone etc to sell to those that are interested in it. Same way here is the
same way you can sell your own product or service and even give out a free report if
you have one to give and the best part of it is that if it is something that people will fall
in love with immediately, they will like your post which will now be seen in all of their
friends news feed causing your product to reach a wider audience. All you just have to
do to make sure that your friends on facebook to want to visit or click the link is how
catchy and attractive you make the post to be. One simple to make sure that your post
on the profile page gets noticed is to make sure that the post is something interesting
and catchy. This alone will make the difference between your post and other who are
also selling similar products or services online.
2. Using facebook page
Lots of people and business owners are now creating facebook pages to promote their
business or to build up their brand, through the use of facebook page which you can
easily create at http://www.facebook.com/page/create.php and the best part of it is
that when you have 25 likes on your page you will be able to customize your page to
make it much more unique like http://www.facebook.com/naijaebookstore and easily
use that link to drive traffic through advertisement either online or offline. But what you
have to note is that you have to promote your page to a wider set of people to really
sell your product. For example in http://www.facebook.com/naijaebookstore the owner
who happens to be me is selling downloadable product which people will have to
request for and all this was done for next to zero naira. (More on this later). Anytime
you make a post on this pages, it will automatically reflect in the newsfeed of those that
www.facebook.com/naijaebookstore
have like your page which automatically make the friends of those who like you page to
see your post and also like your page or even buy your product or service that you are
offering.
NOTE: just from this http://www.facebook.com/naijaebookstore i have made over
N20,000 and I started all this in less than 10 days of selling ebooks using this page and
also whenever any of them need any downloadable product they come to me. So you
can see how using facebook page to sell your product easily. Apart from creating simple
facebook pages, you can even customize it to your taste with the new application
iframe that can allow you to use customized picture for your page.(visit
www.advancefacebookcourse.blogspot.com for more details about this)
3. Using facebook event.
You can easily use facebook event to sell or promote your product. If you are seling a
particular item, just create a special promo using the event whereby you will use that to
inform them about your product or service through the promo and when they make
there mind on attending the event, you will just use that to redirect them to where you
want them to go. It may be a link to site(this can even be used to send traffic to your
adesense, cpa or affiliate site). After creating the event and adding your friend on
facebook to inform them about your event you will be able to send them personal
message in which you will now also put your link to your site to your product you want
to sell. You can read how I use the facebook event to get people to know about my
blog and ebook store at http://imclassroom.com/forum/index.php/topic,82.165.html (I
will advice you join this forum as it will especially help you if you are new to internet
marketing/online business).
4. Using facebook application.
www.facebook.com/naijaebookstore
This is still something a lot of people still do not know about which a friend of mine
happen to stumble upon when looking for ways to promote his clickbank product. What
he simply did was to create a facebook application to distribute a free report to his
facebook friends which was very successful. If you are looking to sell your product
through facebook, you can easily create a viral marketing campaign through the use of
facebook application which is very easy to create.
NOTE: how his campaign was successful is that before anyone can get the free report,
they will have to share the link on their facebook newsfeed for their friend to see of
which if any of their friend also need the information he will have to share the link also
before he can get assess to the information making the application to instantly go viral.
(read the end of this post). Let me ask you a question here about how you would want
your viral marketing to grow on facebook if you are to use application,
· You share the link to your free report or product on your Facebook friend’s wall
and anyone can visit your website and download your free report OR
· You share the link to your free report on your Facebook friend’s wall and
everyone who wants to download your report has to share the same link on his
own wall to download the report and visitors coming from that link also have to
do the same.
To know the full details of how you can use facebook application to create your viral
marketing campaign, visit www.advancefaceboookcourse.blogspot.com
5. Facebook ads
This is where you will have to pay some money to advertise your products or service on
facebook. Using the facebook advertising platform, you will be able to display your
product immediate to targeted audience who will want your product and the best part is
www.facebook.com/naijaebookstore
that you will only be charged when any of those customer click on your advert and
facebook advert is very cheap if you really know your way around it as you can use just
between $10-$20 to drive traffic to your site daily. In using facebook ads, creativity is
needed to make sure that when your targeted audience sees your ads, they will always
want to click on it to see what you have to offer them. Your picture must also be
something that will also interest them to want to click on your advert.
There you have, the 5 simple ways you can use facebook to sell your products or
services with almost zero naira.
Before I go I will like to stress the fact that most people do not know that for them to
succeed online, they must know how their list as there is the popular saying that money
is in the list, you can do this by using all of the above to build your email list by giving
out free report. To know more about list building, you can join this free forum here at
www.imclassroom.com
To get the full advance course of how you can effectively use facebook to start making
your own money online by getting access to all my facebook materials, click here now
for full details www.advancefacebookcourse.blogspot.com
Thanks for reading this report
Gboyega
07065059136.
Read More..

Tutorial How to Create Stunning Background Effect with Gradient using Adobe Illustrator

Creating an artwork on a plain white background is boring. To make your artwork looks more stunning and expensive, you can add an intriguing background to it. This trick is very simple. All you will need to do is to create 4 squares with the same size and arrange it accordingly like the below example.


After you have arranged the 4 squares, pick the bottom left square and add a Gradient to it. Set the Gradient to Linear, 45 Degree angle, and Location 20. Remember not to have any Stroke Fill on it.


Repeat the above steps for rest of the squares. You will need to rotate the 3 other squares accordingly in order to achieve the effect below.


Now you are done. Go ahead and put some of your artwork on it, and you will realize that your artworks value has increases :)

An example of a washing machine silhouette
on this stunning background effect.

Please share this tutorial if you love it.
Read More..

Minggu, 13 Maret 2016

How to Money from the Dark Internet “Underbelly” by Using a Little Known Skill by Marc Charles

How to Money from the Dark Internet “Underbelly” by Using a Little-Known Skill

7:16 AM

Greetings:

Theres a battle raging under the Internet. 

Thats right....and theres money to be made :)

In this article I’ll show you how to produce a nice income for yourself…in a great side line business. 

Or you can choose to leverage this market in a bigger way.

Here’s the deal…..

Like I said….there’s a war taking place in the Internet’s “underbelly”. It’s like the movie The Matrix, but this is real not a fantasy.

And actually, it’s not limited to the Internet. This warfare is taking place on corporate intranets, extranets, wireless networks and everywhere in between.
About the only place you won’t find a battle is on “dead drops”. Which are “off Internet” style P2P file sharing zones such as DeadDrops.com.

The problems are being caused by pesky little things called "bug variants."
A "bug variant" is a conscious software programming error which can have many different negative side effects. 

For example, bug variants in Web browsers cause security breaches, deceptive downloads, automatic redirects and malicious viruses.

"Variants" are new strains of viruses which borrow code from other known viruses. 

A letter or letters following the virus family name usually identifies the variants.
For example, AgentBKY, SmallDAM, VBS.LoveLetter.B., VBS.LoveLetter.C., and WareZOV are all “bug variants”.

Bug variants are easy to understand for people who know the basics of programming, viruses, and software architecture. 

But get this.

There are incredible money making opportunities surrounding “bug variants” and the programming warfare taking place as we speak.

Heck….network security is the fastest growing sector in information technology!

One opportunity is professional hacking

Granted, you might not be tech savvy or even have an interest in this area. But you might know someone who is. Give them this information today!

What’s more, you can also invest in entrepreneurs and companies who are successful in network security, encryption, virus detection, IT forensics and professional hacking.

Believe me…this is a HOT rising trend.

Who would have guessed you could make money by eradicating bug variants on the Internet? 

But its true! 

Programming, professional hacking and network security is a legitimate business opportunity and the demand is growing like wildfire.

Robert Graham, founder and CEO of Errata Security, said, "We’re seeing kids playing and pretending to be masterminds, but recently, we saw the rise of the professional hacker. Many hackers are graduating into the professional ranks too. This development carries serious implications for corporate security."
And this is the opportunity for professional hackers.

How to Make Money as a Professional Hacker

One of the best ways to get started as a professional hacker is to start hacking. 

I’m serious.

There are thousands of books and online tutorials available to help bring you up to speed. 

But my 18-year-old son assures me the best “hacking” information and tutorials are posted online, in hacking forums, gaming chat rooms, and on encrypted websites. 

Hackers get a "kick" out of divulging their escapades!

As Graham points out, ordinary programmers in a “job” write code to pay the bills.

But professional freelance hackers think of this as something to do for fun.
Most hackers are delighted to find someone willing to pay them to do it. But for many hackers, money is secondary or even relevant. 

Dont get me wrong. 

Im not suggesting your break into professional hacker to screw things up, steal, or cause malicious problems for people and businesses.

Im confident if more people learn how to hack and become "tech savvy" with regards to bug variants, viruses, and other network security issues, there will be fewer opportunities for wayward geeks to get their thrills.

The big money is in providing this service for large corporations, governments, military, education, health care, and e-commerce. 

My preference would be to approach this market as a freelancer rather than an in-house hacker or in a “job”. 

Granted, you may have to work with a company on a part-time or intern basis to get your feet wet.

There’s a new job title in networking and security circles, it’s called a "Chief Hacking Officer." 

I’m not kidding.

There were hundreds of freelance programmer and hacker opportunities posted online on sites like CodeWalkers, HackingAlert.com, and DICE.
If you review these postings you’ll become familiar with what companies are looking for when it comes to professional hackers. 

Many times professional hackers will also be referred to as “code specialists” and security programmers. But either way you’ll begin to see a tremendous need for professional hackers.

On top of that, the windows of opportunity have opened in three new sectors too: Google hacking, mobile phone (and iPhone) hacking, and Linux hacking. You can also join in the fun with online games.

This market is growing in leaps and bounds.  Google “hacking” and you’ll see what I mean.

On top of that, the money making potential in this sector is serious business.

Your humble host,

Marc Charles


******* Action Strategy *******
If youre new to hacking, and you have an interest in it, it’s fairly simple to bring yourself up to speed. 

One of the best ways to learn hacking is on hacking websites, forums, discussion lists, and IT Security websites which are devoted to the area.
There are a certification courses in "ethical hacking" too.

The Security Certified Network Architect (SCNA) offers one of the most respected courses. 

If youre already proficient at programming and hacking and you want to start making money, the fastest way to get started is by posting your availability on the most popular security boards.  I’ve included a ton of links to them in the Valuable Resources section.

Simply post your qualifications and expertise or interest on the top hacking sites and forums. 

I realize there’s a huge demand for a “high-level” security experts and hackers is with larger companies, corporations, governments, military, etc.

But there are plenty of opportunities in the small and medium sized business market too.

Direct marketing should be a part of any fast start strategy.

Most freelance programmers and hackers think marketing is a “sin” (and I know because I’ve hired, trained and worked with dozens of them).

But a simple, persuasive sales letter sent via FedEx to "A Prospects" (companies who hire professional hackers and security experts on a regular basis) could be very effective at securing projects.

Another approach is entering hacking tournaments.

If you place in the top percentile of these high-profile competitions, youll have more work and offers than you could ever handle. 

DEFCON hosts one of the largest hacking events in the world. 

You can also post a website or blog and “lace” it with security, virus and hacking terms with SEO and SEM in mind.

I helped a freelance programmer recently post his bio and expertise with a simple website and domain for under $100. He told me he receives quality traffic, inquires and leads every week. He hosts his bio/website free of charge on DotEasy.com. 

Now we’re talking!

Look….it’s simple. 

The security, hacking and virus sector of programming is a HOT rising trend. If you can hack and you know how to market and close contracts you’ll have more work and projects then you can handle.
Have fun!
Please send me your feedback and thoughts!


************ Valuable Resources**************

Top Freelance Hacking Job and Projects
CareerBuilder
IT Jobs Post (UK)
Security Focus Jobs
Craigs List
ITtoolbox
ScriptLance
CodeLance

Premier Hacking Competitions
Zone-H
LinuxSecurity (announcements)
Ghetto Hackers
Hack in the Box (announcements)

Additional Hacking Resources  
HackingAlert.com (Hacking school, competitions, tools, forums, etc.)
SecureRoot
HackersCatalog.com
JINX
The Network Administrator
phpBBHacks
Astalavista (fast crack engine)
Hacker Threads
How to Become a Hacker
Hackers World Portal
Phrack (digital hackers magazine)
2600 - The Hacker Quarterly
CIO Magazine
W3Privacy

Read More..

Jumat, 11 Maret 2016

program to print sum of series in C using loops

C# program to print sum of series

Program Statement:
Write a program to display the sum of the following series using loop.
1*x + 2*x2 + 3*x3 + 4*x4 + 5*x5 + … + n*xn

Solution:
 static void Main(string[] args)
{
int j, n = 1, x, lastn, sum = 0, prod = 1;
Console.WriteLine("Enter last digit:");
lastn=Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter value of x:");
x = Convert.ToInt32(Console.ReadLine());
for (j = 1; j <= lastn; j++)
{
n = n * x;
prod = n * j;
sum = sum + prod;
}
Console.WriteLine("Sum of Series 1*x + 2*x2 + 3*x3 + 4*x4 + 5*x5 + … + n*xn when n=: " + n +" and x= "+ x+ "sum= "+ sum);
Console.ReadLine();
}


Read More..