5
Aptitude Questions By Muhammed Thanveer Melayi

Aptitude Questions-2

Embed Size (px)

DESCRIPTION

enjoy it peace fully............

Citation preview

Page 1: Aptitude Questions-2

Aptitude Questions

By

Muhammed Thanveer Melayi

Page 2: Aptitude Questions-2

The average age of husband, wife and their child 3 years ago was 27 years and that of wife and the child 5 years ago was

20 years. The present age of the husband is:

Page 3: Aptitude Questions-2

Sum of the present ages of husband, wife and child = (27 x 3 + 3 x 3) years = 90 years.

Sum of the present ages of wife and child = (20 x 2 + 5 x 2) years = 50 years.

Husband's present age = (90 - 50) years = 40 years.

Page 4: Aptitude Questions-2

What will be the output of the program ?#include<stdio.h> int main() { printf(5+"Good Morning\n"); return 0; }

Page 5: Aptitude Questions-2

printf(5+"Good Morning\n"); It skips the 5 characters and prints the given string.

Hence the output is "Morning"