Everyone Is An Achiever

Wednesday, December 31, 2014

Tuesday, December 30, 2014

program to calculate stems and leafs

1:34 PM Posted by Unknown No comments
After you got an idea about stems and leafs lets program it. I'm gonna do something different in this tutorial. I'll post the entire code at once, then I'll explain it line by line. using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using...

[theory] Stem and leaf

10:01 AM Posted by Unknown No comments
 Stem and leaf theory Lets start with a definition to stem and leaf plot. A Stem and Leaf Plot is a special table where each data value is split into a "stem" (the first digit or digits) and a "leaf" (usually the last digit) [1] Lets take an example to make it more clear. If you have...

[improved] Convert a whole integer to an array of integers

9:50 AM Posted by Unknown No comments
the class takes string  and returns byte of integers using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TectConsole { class ConvertToIntegers { private byte[] numbers { get; set; } public byte[] doConvert(string strNumber) { numbers = new byte[strNumber.Length]; for (int i = 0; i < numbers.Length;...

Saturday, December 20, 2014

Convert a whole integer to an array of integers

2:08 PM Posted by Unknown 2 comments
Hello everyone, In this tutorial, we will see how we can convert an integer into an array of integers. First, what does that mean? What we mean is that the program will accept an integer number such as "76342986" and will convert it into an array of integers 7 6 3 4 2 ...

Sunday, December 14, 2014

loop puzzle - 1

7:07 AM Posted by Unknown 9 comments
Hello everybody, So, do you love solving puzzles? If yes, then before reading the rest of this article give it a go and try to write a loop that will generate the following pattern: 2020202020202020202020202020202020202020  _19191919191919191919191919191919191919  __181818181818181818181818181818181818  ___1717171717171717171717171717171717  ____16161616161616161616161616161616  _____151515151515151515151515151515  ______1414141414141414141414141414  _______13131313131313131313131313  ________121212121212121212121212  _________1111111111111111111111  __________10101010101010101010 ___________999999999  ____________88888888  _____________7777777  ______________666666  _______________55555  ________________4444  _________________333  __________________22  ___________________1  Assuming...

Generate strong password

6:28 AM Posted by Unknown No comments
Hello everyone, In this tutorial, we will learn how to generate a password that is safe and hard to detect. The methodology that we will follow for generating a safe password is: we will run a loop and for every time the loop runs we will generate a character and then append it to a string variable. Here...

Wednesday, December 10, 2014

Reversing array in-place

8:53 PM Posted by Unknown No comments
In this tutorial, we will do actual reversing of the array elements without using an extra array.  Many programmer when they're asked to reverse an array they either display the array in reverse order, or use another array and copy the contents of array 1 to array 2 starting from the last...

Hello everyone

1:17 PM Posted by Unknown No comments
Hello everybody, This is the first post in my blog and here I want to welcome you all. I'm happy that you made it to here and I hope that you find the content of my blog useful. What I'm going to share with you guys is primarily my knowledge in software engineering more specifically problem solving...