• Result
  • Today's Puzzle
    • Previous Puzzles
    • Prize & Rules
  • Discussion Board
    • Suggestion Board
    • Trending Articles
  • Maths Tricks
  • Placement Papers
    • Placement Questions
    • Interview Experience
    • Placed user Comment
    • Group Discussion
  • English APP
  • login
  • Result
  • Today's Puzzle
    • Previous Puzzles
    • Prize & Rules
  • Discussion Board
    • Suggestion Board
    • Trending Articles
  • Maths Tricks
  • Placement Papers
    • Placement Questions
    • Interview Experience
    • Placed user Comment
    • Group Discussion
  • Walkins
    • Corporate Job Exam
    • Government Job Exam
    • Entrance Exam
  • Training
    • Internship
  • Placement Questions
  • /
  • Self

self Math Questions and Answer Page 34

self Select Another Category Select Another Topic

Maths Puzzle

  • A website 299
  • Book 23779
  • Campus 250
  • CMAT 49
  • Exam 86152
  • General 399
  • Interview 141
  • M4maths 295
  • Maths 226
  • Orkut 27
  • Other 72
  • Others 1356
  • Reasoning 101
  • Self 3157

self Question Topics

    Category (37)

    General Ability (20)

  • General Knowledge (16)
  • HR Interview (30)

  • Interview (23)
  • Logical Reasoning (172)

  • Blood Relations (19)
  • Coding Decoding (21)
  • Cryptography (7)
  • Decision Making and Problem Solving (7)
  • Direction Sense (2)
  • General Mental Ability (14)
  • Letter Arrangement (1)
  • Letter Series (3)
  • Logical Sequences (9)
  • Mathematical Reasoning (17)
  • Missing Character (1)
  • Number Series (25)
  • Seating Arrangement (5)
  • Numerical Ability (352)

  • Age Problem (13)
  • Algebra (10)
  • Alligation or Mixture (4)
  • Area and Volume (5)
  • Arithmetic (14)
  • Averages (5)
  • Boats and Streams (1)
  • Clocks and Calendars (5)
  • Co-ordinate geometry (2)
  • Data Interpretation (2)
  • Geometry (5)
  • Height and Distance (2)
  • LCM and HCF (6)
  • Log and Antilog (2)
  • Number System (32)
  • Percentage (12)
  • Permutation and Combination (18)
  • Pipes and Cistern (1)
  • Probability (22)
  • Profit and Loss (9)
  • Quadratic Equations (3)
  • Ratio and Proportion (11)
  • Sequence and Series (25)
  • Simple & Compound Interest (6)
  • Stock and Shares (2)
  • Time and Work (18)
  • Time Distance and Speed (14)
  • Trigonometry (4)
  • Programming (19)

  • Arrays (1)
  • Database (3)
  • Program (7)
  • Puzzles (1)
  • Verbal Ability (20)

  • Antonyms (1)
  • Miscellaneous (7)
  • One Word Substitution (1)
  • Sentence Completion (4)
  • Spotting Errors (2)
  • Synonyms (1)
Keep an EYE (0)
Solved Question (381) UnSolved Question (2916)
Pages: 330FirstPrev30313233343536373839NextLast
Advertisements

(#M40032900) SELF QUESTION PROGRAM Keep an EYE Keep an eye puzzle Keep an eye puzzle

What will be output of following program?
#include
int main()
{
int a = 320;
char *ptr;
ptr = (char *)&a;
printf("%d",*ptr);
return 0;
}

Dinesh thatti (11 years ago)
Unsolved Read Solution (3)
Is this Puzzle helpful?   (18)   (11) Submit Your Solution Program

(#M40032899) SELF QUESTION PROGRAM Keep an EYE Keep an eye puzzle Keep an eye puzzle

What will be the output
main()
{
if(1,0)
{
printf("True");
}
else
{
printf("False");
}
}

Dinesh thatti (11 years ago)
Unsolved Read Solution (3)
Is this Puzzle helpful?   (23)   (15) Submit Your Solution
Advertisements

(#M40032898) SELF QUESTION PROGRAM Keep an EYE Keep an eye puzzle Keep an eye puzzle

What will be the output
main()
{
int i;
i = 10;
if(i == 20 || 30)
{
printf("True");
}
else
{
printf("False");
}
}

Dinesh thatti (11 years ago)
Unsolved Read Solution (3)
Is this Puzzle helpful?   (11)   (2) Submit Your Solution

(#M40032897) SELF QUESTION PROGRAM Keep an EYE Keep an eye puzzle Keep an eye puzzle

What the below statement will print if a=10
printf("%d %d",a, !a++);

Dinesh thatti (11 years ago)
Unsolved Read Solution (2)
Is this Puzzle helpful?   (11)   (7) Submit Your Solution

(#M40032896) SELF QUESTION PROGRAM Keep an EYE Keep an eye puzzle Keep an eye puzzle

What value of c will get printed
main()
{
int a,b,c;
a=10;
b=20;
c=printf("%d",a)+ ++b;
printf("n%d",c);
}

Dinesh thatti (11 years ago)
Unsolved
Is this Puzzle helpful?   (13)   (10) Submit Your Solution

(#M40032895) SELF QUESTION PROGRAM Keep an EYE Keep an eye puzzle Keep an eye puzzle

Suppose a,b,c are integer variables with values 5,6,7 respectively. What is the value of the expression:
!((b+c)>(a+10))

Dinesh thatti (11 years ago)
Unsolved Read Solution (1)
Is this Puzzle helpful?   (44)   (22) Submit Your Solution

(#M40032894) SELF QUESTION PROGRAM Keep an EYE Keep an eye puzzle Keep an eye puzzle

switch(option)
{
case 'H' : printf("Hello");
case 'W' : printf("Welcome");
case 'B' : printf("Bye");
break;
}
what would be the output if option = 'H' ?

Dinesh thatti (11 years ago)
Unsolved Read Solution (2)
Is this Puzzle helpful?   (13)   (5) Submit Your Solution

(#M40032875) SELF QUESTION numbers problem Keep an EYE Keep an eye puzzle Keep an eye puzzle

Q. What is the missing number of the following sequence
9, 35, 91, 189, _, 559

arunkumar (11 years ago)
Unsolved Read Solution (4)
Is this Puzzle helpful?   (24)   (11) Submit Your Solution Sequence and Series

(#M40032855) SELF QUESTION PUZZLE Keep an EYE Keep an eye puzzle Keep an eye puzzle

Q. The sum of two positive integers multiplied by the larger number is 204. The difference multiplied by the smaller number is 35. The larger number is

shailaja (11 years ago)
Solved aviral bhargava Read Solution (2)
Is this Puzzle helpful?   (17)   (5) Submit Your Solution

(#M40032854) SELF QUESTION PUZZLE Keep an EYE Keep an eye puzzle Keep an eye puzzle

How many squares are there in a chess board. A chess board has 8 rows and 8 columns.
(The answer is not 64.)

shailaja (11 years ago)
Unsolved Read Solution (2)
Is this Puzzle helpful?   (1)   (0) Submit Your Solution
Keep an EYE (0)
Solved Question (381) UnSolved Question (2916)
Pages: 330FirstPrev30313233343536373839NextLast
  • Login
  • Register

Resend

Sponsored Links

Advertisements

Challenger of the Day

no image
Dimple
India
Punjab
Time: 00:01:33
Points
19

Maths Quotes

The pulse of the earth is mathematics

Hithesh

mathematics is like puzzle and it improves our brain sharpness

demoorgan

Placed User Comments

M4Math helped me a lot.

Vipul Chavan 5 years ago

Thanks m4 maths for helping to get placed in several companies.
I must recommend this website for placement preparations.

yash mittal 5 years ago

Now enjoy Offline Access of latest Question.

Get M4maths app to avail expert's solution and latest selected questions.

Download m4maths app now

  • 2533K+Registerd user
  • 1774K+Engineers
  • 759K+MBA Asprirant
  • 3K+Enginnering College
  • 250+Company Exam
  • 150K+Interview Questions
  • Site Links
  • Home
  • Result
  • Today's Puzzle
  • Discussion Board
  • Maths Tricks
  • Advertise with us
  • Contact Us
  • Useful Info
  • Maths Quotes
  • Previous Puzzles
  • Prize
  • Privacy Policy
  • Disclaimer and Copyright
  • Terms and Conditions
  • Sitemap
  • Placement papers
  • TCS Placement Paper
  • HCL Placement Paper
  • INFOSYS Placement Paper
  • IBM Placement Paper
  • SYNTEL Placement Paper
  • TECHNICAL Interview
  • HR Interview
All rights are reserved to @m4maths.com