I am an expert at Wizpert

Posted on:
tags: , , , , , ,

I am making this post for my all readers to let you know about the new application I just added to my blog on the top of the right-hand column- it’s called Wizpert because now I am one of the expert on Wizpert.



I was recently contacted by Michael Weinberg, CEO of Wizpert about becoming an expert on his website and of course I jumped on the opportunity. He said that I can give answers for questions and queries related to computers, programming or social media to the users for their Wizpert platform. I have to say that I’m extremely excited to be a part of this site and cannot wait until I get the chance to help my first person. 

Actually I know the question rattling in your mind is probably, “What exactly a wizpert is ?” Isn’t it ?

I’m glad you asked!  Keep reading and I’ll tell you!

You can find the answer to plenty of questions online, but sometimes it’s helpful to chat with a particularly knowledgeable human. New York City-based Wizpert aims to simplify the process of finding and chatting with experts instantly — and in the process, the startup is moving one step ahead of hot Q&A outfits like Quora.
You can think of Wizpert as an IT help desk for life. The company recruits knowledgeable bloggers, which it calls “Wizperts,” across topics like computers, technology, programming, exercise, health/wellness, and parenting and many more. Advice seekers can connect to Wizperts via their blogs or the service’s website, and most importantly, they can begin conservation within seconds.

This is a great chance to try out this new venture with me also because to get started each Wizpert begins in“free” mode until they get a few good reviews from callers on Skype.  So, if you or someone you know would like to “chat”, then grab a cup of coffee and get your Skype account pulled up on your computer while I am still offering advice for free.  I would love to connect with you through Wizpert – just make sure to leave an honest review at the end of our conversation.

And one more think I want to tell that you can ask me about Computer Programming i.e. SQL, Java, C/C++, JavaScript only because I chooses this topics for provide answers to you all guys.

I am excited to see what God has prepared for me to share with you tomorrow – until then !

---------------------------------------------------------------------------------
Posted By Sundeep aka SunTechie

Sundeep is a Founder of Youth Talent Auzzar, a passionate blogger, a programmer, a developer, CISE and these days he is pursuing his graduation in Engineering with Computer Science dept.
Add Sundeep as a Friend on 


Java Programming: Write a JAVA Program to prime number from an array of numbers.

Posted on:
tags: ,

      Write a JAVA Program to prime number from an array of numbers.
import java.io.*;
public class a17 {



public static boolean isprime (int n)
{
for(int i=2;i<=(n/2);i++)
  {
     if(n%i==0)
       return false;
  }
  return true;
 }

public static int readint ()
{
  int n=0;
  try
  {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
n = Integer.parseInt(br.readLine());
  }catch(IOException e)
 {
   System.out.println("input output error");
   System.exit(1);
  }
  return n;
}
public static void main(String args[])throws IOException{

    System.out.println("enter the size of array");
    int n = a17.readint();
    int a[]=new int[n];

    for(int i=0;i<n;i++){
       System.out.println("enter "+ i+"th number");
        a[i] = a17.readint();}
     for(int i=0;i<n;i++)
     {
             System.out.println(a[i]);
     }

    for(int i=0;i<n;i++){
           if(!a17.isprime(a[i]))
               System.out.println(a[i] + "is not prime ");
            else
                System.out.println(a[i] + "is prime ");
  }}}

OUTPUT:
enter the size of array
3
enter 0th number
22
enter 1th number
11
enter 2th number
33
22
11
33
22is not prime
11is prime
33is not prime

Java Programming : Write a JAVA Program to find the Average and Sum of an Array.

Posted on:
tags: ,


     Write a JAVA Program to find the Average and Sum of an Array.
import java.io.*;
import java.util.*;
public class a16 {
   

     public static void main(String args[])throws IOException
                 {
                        Scanner br = new Scanner (System.in);
                        System.out.println("Enter the no. of elements");
                        int n = br.nextInt();

                             int a[]=new int[n];
                        int sum=0,i,avg;
                             System.out.println("Enter the elements");
                        for(i=0;i<n;i++)
                a[i] = br.nextInt();
                         for(i=0;i<n;i++)
                        {
                        sum=sum+a[i];
                        }
                        System.out.println("the sum is"+sum);
                        avg=sum/n;
                        System.out.println("the avg is"+avg);
                        }
                        }
OUTPUT:
Enter the no. of elements
4
Enter the elements
4
5
6
7
the sum is22
the avg is5

Java Programming : Write a JAVA Program to print the Fibonacci Series .

Posted on:
tags: ,


   Write a JAVA Program to print the Fibonacci Series .
import java.io.*;
public class fibo {
     public static void main(String argc[]) throws IOException
    {
        fibonacci ob1 = new fibonacci();
        ob1.input();
        ob1.call();
     
    }


}
class fibonacci
{
     public int n,a,b,c,i;
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    void input() throws IOException
    {
        System.out.println("ENTER THE NUMBER :: ");
        n = Integer.parseInt(br.readLine());

    }
    void call()
    {
        a = 0;
        b = 1;
        System.out.println("THE  FIBONACCI SERIES IS ::");
        System.out.print(a+" , ");
       System.out.print(b);
        for(i = 2; i <= n; i++)
        {
            c = a + b;
            a = b;
             b = c;
            
             System.out.print(" , "+c);

        }

    }

}
OUTPUT:
ENTER THE NUMBER ::
7
THE  FIBONACCI SERIES IS ::
0 , 1 , 1 , 2 , 3 , 5 , 8 , 13

Java Programming: Write a JAVA Program Sorting Strings

Posted on:
tags: ,

     

Write a JAVA Program Sorting Strings
import java.io.*;

public class a14 {


        public static void main(String args[])throws IOException
        {
      BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
                System.out.println("Enter the no. of strings");

                String s=br.readLine();
                int n=Integer.parseInt(s);

                String str[]=new String[n];
                System.out.println("Enter the strings");
                for(int i=0;i<n;i++)
                str[i]=br.readLine();

                for(int i=0;i<n-1;i++)
                {
                        for(int j=0;j<n-i-1;j++)
                        {
                                if(((str[j]).compareTo(str[j+1]))>0)
                                {
                                        String t=str[j];
                                        str[j]=str[j+1];
                                        str[j+1]=t;
                                }
                        }
                 }
                  System.out.println("sorted string is");
                for(int i=0;i<n;i++)
                System.out.println( str[i]);
        }
 }
OUTPUT:
Enter the no. of strings
4
Enter the strings
s
d
ff
gg
sorted string is
d
ff
gg
s

Java Programming : Write a JAVA Program Sorting Numbers

Posted on:
tags: ,


    Write a JAVA Program Sorting Numbers
import java.io.*;
import java.util.*;
public class a13 {




        public static void main(String args[])throws IOException
        {
                 Scanner br = new Scanner (System.in);
                 System.out.println("Enter the no. of elements");

                 int n = br.nextInt();
                 int arr[]=new int[n];
                System.out.println("Enter the elements");
                for(int i=0;i<n;i++)
                arr[i] = br.nextInt();

                for(int i=0;i<n;i++)
                {
                        for(int j=0;j<n-1;j++)
                        {
                                if(arr[j]>arr[j+1]){
                                                     int temp=arr[j];
                                                     arr[j]=arr[j+1];
                                                     arr[j+1]=temp;
                                         }
                        }
                 }System.out.println("\nsorted array");
                 System.out.println("\n");
                for(int i=0;i<n;i++)

                System.out.println(arr[i]);
        }
 }
OUTPUT:
Enter the no. of elements
4
Enter the elements
2
1
53
22

sorted array
1
2
22
53
>