Wednesday 11 March 2015

C Program for Given Number is AMSTRONG or NOT

Program:
/* C Program to find given number is amstrong or not for N digit number*/
#include<stdio.h>
#include<conio.h>
#include<math.h>
void main( )
{
int temp = 0,n,i = 0,r = 0,m;
long int sum = 0;
printf("Enter N Value:");
scanf("%d",&n);
temp = n;
m = n;
while( temp > 0)
{
                   i++;
                   temp = temp/10;
}
while( n > 0 )
{
r = n%10;
sum = sum + pow(r,i);
n = n/10;
}
if(sum == m)
{
printf("Given Number is AMSTONG");
}
else
{
printf("Given Number is not AMSTRONG");
}
}

Output:


Program3: Basic I/O and Data Types

Program3:

#include<stdio.h>
#include<conio.h>
void main( )
{
int a,b;
printf("Enter a and b Values: ");
scanf("%d%d",&a,&b);
printf("Addition of a and b is %d\n",a+b);
printf("Substraction of a and b is %d\n",a-b);
printf("Multiplication of a and b is %d\n",a*b);
printf("Division of a and b is %d\n",a/b);
printf("Modulus of a and b is %d\n",a%b);
}


Output:


Program1: Basic I/O and Data Types

Program:

#include<stdio.h>
#include<conio.h>
int main( )
{
               clrscr( ); //Clear the Screen Contents
               printf("Welcome\n");
               printf("To\n");
               printf("Let Us Code in C\n");
}


Execution Process in Borland C

Compiling: ALT + F9
Linking:      F9
Execution:   CLT + F9

Output:






Miracle Software Systems Selection Process and Placement Papers 2015



                             Miracle Software Systems is the one of the leading company in India. It is working on various technologies including IBM Tools. For More information visit MiracleSoft Website.

Selection Process:

Round1: 
            
               Verbal Online Test

---> Synonyms and Fill in the Blanks(Vocabulary).

Round2: 

               Aptitude Online Test

---> Problems on trains, Work and Time, Problems on Ages, etc.

Round3: 

               C/JAVA  Online Test

---> All Basic Questions.

Round4: 

               C/JAVA Programming Test

Round5: 

                HR Round









Thanks for Visiting..........

Tuesday 3 March 2015

Portware Selection Process and Written Test Pattern 2015


Portware is one of the leading company. It was founded in the year 2002. for more details visit PORTWARE Website.

Selection Process 2015:

1) Online Test

2) Technical Interview-1

3) Technical Interview-2

4) Technical Interview-3 and HR Interview


1) Online Test Pattern:

           The test consists of Two Sections. They are Section-1 and Section-2. Both Sections contains overall 45 Questions. There is a Negative Marking of -1 for each question.

      Section-1: Aptitude 
                        25 Questions
                        Each Question carries 2 Marks 
                        25 Minutes Time.

      Section-2: Technical
                        20 Questions
                        Each Question carries 2 Marks
                        20 Minutes Time.

----> Overall 45 Questions for 90 Marks.

Note:
 
                   There is no random selection of questions during the test.

PORTWARE Placement Paper 2015

Aptitude



Topics:

1) Time and Work

2) Pipes

3) Relations

4) Problems on trains

5) Problems on geometry

6) Odd Man Out

Technical


Topics:

1) DBMS

2) UNIX

3) Software Engineering

4) Code Segments






Thanks for visiting........