• 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
  • /
  • C
  • /
  • Category

Frequently Asked c Category Technical Interview Questions

c Select Another Category Category Select Another Topic

Programming and Technical

  • Android 118
  • ASP.NET 60
  • C 459
  • C++ 448
  • DATA STRUCTURE 66
  • DBMS 77
  • ELECTRONICS 39
  • Java 261
  • OOPs Concepts 117
  • Operating Syst 103
  • RDBMS 109
  • UNIX 70

c Question Topics

    Category (16)

    General Ability (2)

  • General Knowledge (2)
  • HR Interview (2)

  • Interview (2)
  • Logical Reasoning (9)

  • Coding Decoding (2)
  • Cryptography (1)
  • General Mental Ability (1)
  • Letter Series (1)
  • Mathematical Reasoning (1)
  • Missing Character (1)
  • Seating Arrangement (1)
  • Numerical Ability (12)

  • Age Problem (1)
  • Algebra (1)
  • Alligation or Mixture (1)
  • Data Interpretation (1)
  • Height and Distance (1)
  • Percentage (2)
  • Ratio and Proportion (1)
  • Time Distance and Speed (1)
  • Programming (218)

  • Arrays (15)
  • Basics (8)
  • Database (6)
  • Definition (25)
  • Functions (4)
  • Output (42)
  • Program (85)
  • Puzzles (1)
  • Technical (24)
  • Variables (1)
  • Verbal Ability (3)

  • Antonyms (1)
  • Miscellaneous (1)
  • Spotting Errors (1)
Keep an EYE (0)
Solved Question (0) UnSolved Question (16)
Pages: 212NextLast
Advertisements

(#M40164630) C QUESTION please solve Keep an EYE Keep an eye puzzle Keep an eye puzzle

In C++, which of the following creates a pigeon object of class bird?
a. Pigeon bird
b. Bird pigeon
c. Object pigeon of bird
d. None of these

Asked In C shree (8 years ago)
Unsolved Read Solution (7)
Is this Puzzle helpful?   (37)   (19) Submit Your Solution

(#M40152256) C QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

Which of the following is the correct syntax for declaration of a structure?
Select one:
struct_name;
Struct struct_name;
struct
{
Struct_name;
}
struct struct_name;

Asked In C priya (10 years ago)
Unsolved Read Solution (14)
Is this Puzzle helpful?   (91)   (44) Submit Your Solution
Advertisements

(#M40037735) C QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

Consider the following code:

function modify(y,z)
{
y = y + 1
z = z + 1
return y - z
}

function calculate( )
{
integer a = 12, b = 20, c

c = modify(a, b);
print a
print space
print c
}

Assume that a and b were passed by reference. What will be the output of the function calculate( ) ?

Asked In C Srishti Sinha (11 years ago)
Unsolved Read Solution (13)
Is this Puzzle helpful?   (184)   (111) Submit Your Solution

(#M40057052) C QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

every element of a data structure has an address and a key associated with it.a search mechanism deals with two or more values assigned to the same address by using the key what is this search mechanism?
1)linear search 2)binary search 3)hash coded search
4)none of these

Asked In C D HARISEKHAR (10 years ago)
Unsolved Read Solution (10)
Is this Puzzle helpful?   (37)   (13) Submit Your Solution

(#M40157098) C QUESTION Where's my car! Keep an EYE Keep an eye puzzle Keep an eye puzzle

he year is 2050. The population surge has taken over our metropolitan cities. High rise buildings are on a rise. And as usual, with the increase in population, the problem of parking in the city has increased manifold.

To reduce the problem of parking, the government has built multi-storey parking lots all over the city. Imagine the city as an X-Y grid. And there are roads connecting all the neighbouring grid points except diagonals. And there is a pre-defined intersection interval 'I' for parking lots such that at every I th intersection, there is a parking lot, starting from (0,0). For example, for a city of grid size 4x7 and I=3, you'll have 6 parking lots at (0,0), (0,3), (0,6), (3,0), (3,3) and (3,6).

Asked In C jeyapriya (9 years ago)
Unsolved
Is this Puzzle helpful?   (19)   (6) Submit Your Solution

(#M40159757) C QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

main()
{ for(i=0; i++; i<100)
printf("hello world"); }

a)100 times
b)0 times
c)Infinite loop
d)None of the above.

Asked In C tushar (8 years ago)
Unsolved Read Solution (14)
Is this Puzzle helpful?   (18)   (4) Submit Your Solution

(#M40165276) C QUESTION code Keep an EYE Keep an eye puzzle Keep an eye puzzle

main()
[
int x=5;
clrscr();
if(x=4)
printf("%d",x+1);
else
printf("%d",x-1);
getch();
]



please give me a valid reason of your answer m not getting .

Asked In C praveen kumar (7 years ago)
Unsolved Read Solution (10)
Is this Puzzle helpful?   (10)   (6) Submit Your Solution

(#M40157038) C QUESTION Logical series Keep an EYE Keep an eye puzzle Keep an eye puzzle

W.A.P
23,21,24,19,26,15,28,11,30,7,36...............N

Asked In C md shabbir ahmad (9 years ago)
Unsolved Read Solution (3)
Is this Puzzle helpful?   (9)   (4) Submit Your Solution

(#M40164896) C QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

Create a file called input.txt in the same directory as this file and enter some lines of text or copy a paragraph of text. The filename should be input.txt

Asked In C siva prasad reddy (8 years ago)
Unsolved
Is this Puzzle helpful?   (0)   (2) Submit Your Solution

(#M40156401) C QUESTION logic-craker Keep an EYE Keep an eye puzzle Keep an eye puzzle

void fun()
{
// what should be the logic here to print x=20 instead of x=10 in the main function?
}
void main()
{
int x=20;
fun();
x=10;
printf("%d",x);
getch();
}

Asked In C srishti agrawal (9 years ago)
Unsolved Read Solution (4)
Is this Puzzle helpful?   (2)   (3) Submit Your Solution
Keep an EYE (0)
Solved Question (0) UnSolved Question (16)
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

There is something I don't understand about algebra: It has been around for thousands of years, yet no one has ever found out what the value of "x" or "y" really is.

Richard van der Merwe

mathematics never dies because it always stays in the minds and souls of people who love mathematics. Those people will not let maths die instead they will die.................

D . kalyan kumar

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