Twitter Bird Gadget

12th result 2012







HSC 2012 Examination Results Expected on 22nd May 2012 at 11:00 Hrs.Link Will Be Soon!!!!!!!

Analytical Section - Interview Questions and Answers


Analytical Section - Interview Questions and Answers

Question 1-3

Three men (Tom, Peter and Jack) and three women (Eliza, Anne and Karen) are spending a few months at a hillside. They are to stay in a row of nine cottages, each one living in his or her own cottage. There are no others staying in the same row of houses.

Analytical Reasoning



Analytical Reasoning
Analytical Section : Analytical Reasoning
Analytical Reasoning
This course provides extensive practice in test-taking strategies and verbal skills with individual feedback to raise your score on
the General Management Admissions Test.
The focus of the course is on the Analytical Reasoning section, but it also deals with the Logical Reasoning Section to the extent

Analytical Reasoning


                                        logical REASONING

1) In a group of five persons A,B,C,D,and E
a)A and C are intelligent in English and Reasoning.
b)B and C are intelligent in English and General Awareness.
c)E and D are intelligent in Arithmatic and Inteview.
d)E is intelligent in Interview,reasoning and Arithe matic.
c)E and D are intelligent in Arithmatic and Inteview.
d)E is intelligent in Interview,reasoning and Arithe matic.
e)B and D are intelligent in Arithematic and General Awareness.

Write a c program to add two numbers without using addition operator


Add two numbers in c without using operator
How to add two numbers without using the plus operator in c

#include<stdio.h>

int main(){
   
    int a,b;
    int sum;

    printf("Enter any two integers: ");
    scanf("%d%d",&a,&b);

    //sum = a - (-b);
    sum = a - ~b -1;

    printf("Sum of two integers: %d",sum);

    return 0;
}



Sample output:

Enter any two integers: 5 10

Sum of two integers: 15

Explanation:

In c ~ is 1's complement operator. This is equivalent to:  
~a = -b + 1
So, a - ~b -1
= a-(-b + 1) + 1
= a + b – 1 + 1
= a + b

FIND POWER OF A NUMBER USING C PROGRAM


How to calculate power of a number in c

How to write power in c

#include<stdio.h>
int main(){
  int pow,num,i=1;
  long int sum=1;
  printf("\nEnter a number: ");
  scanf("%d",&num);
  printf("\nEnter power: ");
  scanf("%d",&pow);
  while(i<=pow){
            sum=sum*num;
            i++;
  }
  printf("\n%d to the power %d is: %ld",num,pow,sum);
  return 0;
}


Write a c program to find out sum of digit of given number


Code 1:
1. C program to add digits of a number
2. C program for sum of digits of a number
3. C program to calculate sum of digits