• 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
  • /
  • Programming

SELF Programming Math Questions and Answer

SELF Select Another Category Programming 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 (0) UnSolved Question (19)
Pages: 212NextLast
Advertisements

(#M40034935) SELF QUESTION program Keep an EYE Keep an eye puzzle Keep an eye puzzle

WAP to calculate x = (b-1)! - (b-2)!....-(b-a)!

divs (11 years ago)
Unsolved Read Solution (3)
Is this Puzzle helpful?   (0)   (1) Submit Your Solution Program

(#M40034852) SELF QUESTION Program Keep an EYE Keep an eye puzzle Keep an eye puzzle

write a Pgm to print this pattern:
1
23
456
456
23
1

Reshma Cutinho (11 years ago)
Unsolved Read Solution (2)
Is this Puzzle helpful?   (16)   (12) Submit Your Solution Program
Advertisements

(#M40033269) SELF QUESTION c programming Keep an EYE Keep an eye puzzle Keep an eye puzzle

main()
{
int i=0;
for(;i++;printf("%d",i));
printf("%d",i);
}

TANUSREE MAHAPATRA (11 years ago)
Unsolved Read Solution (1)
Is this Puzzle helpful?   (0)   (0) Submit Your Solution Program

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

What will be output of the following c program?
#include "stdio.h"
int main()
{
int _ = 5;
int __ = 10;
int ___;
___ = _ + __;
printf("%i", ___);
return 0;
}

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

(#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

(#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
Keep an EYE (0)
Solved Question (0) UnSolved Question (19)
Pages: 212NextLast
  • Login
  • Register

Resend

Sponsored Links

Advertisements

Challenger of the Day

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

Maths Quotes

MATHEMATICS have Strong Heart! So only, it will face so many "PROBLEMS"!!

Vignesh R (India)

If human invention is the tree bearing juicy fruits, Maths is the root of this tree!

srishti dhameja

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