Flat 50% off on all training & certification courses. Limited time offer Explore courses

Use these filters to find papers

  Question
2

Differentiate between array and structure. Define an array or structure with an example.

This question has 1 answers so far.
0

Give function name, syntax and corresponding header file to achieve the following:- 

(c) To clear the output buffer.

This question has 0 answers so far.
0

What is logical error? How does logical error differ from run time error and syntax error? Support your answer with examples.

This question has 0 answers so far.
0

Define an algorithm and list its characteristics. Write an algorithm for measuring 4 liter of water if only 5 liter and 3 liter jugs are available.

This question has 0 answers so far.
0

Define associativity of operators. Write the output of the following statements. All are integer values.

This question has 0 answers so far.
0

Define break statement. How does continue statement differ from break statement?

This question has 0 answers so far.
0

Give function name, syntax and corresponding header file to achieve the following:- 

(f) To read the whole line from input.

This question has 0 answers so far.
0

Give function name, syntax and corresponding header file to achieve the following:- 

(e) To read the character Un-buffered.

This question has 0 answers so far.
0

Give function name, syntax and corresponding header file to achieve the following:- 

d) To read the buffered strings.

This question has 0 answers so far.
0

Describe storages classes in C with suitable examples.

This question has 0 answers so far.
0

Give function name, syntax and corresponding header file to achieve the following:- 

(b) to clear the input buffer.

This question has 0 answers so far.
0

Give function name, syntax and corresponding header file to achieve the following:- 

(a) To open a file in read mode.

This question has 0 answers so far.
0

Write brief note on :-

(e) Formal Vs Actual Arguments.

This question has 0 answers so far.
0

Write brief note on :-

(d) Linker, Loader Vs Compiler.

This question has 0 answers so far.
0

Write brief note on :-

(C) Break Vs Continue.

This question has 0 answers so far.
0

Write brief note on :-

(b) Switch statement Vs Multiple if.

This question has 0 answers so far.
0

Write brief note on :-

(a) Structures Vs Unions.

This question has 0 answers so far.
0

(b) In C, when arrays are passed to the function, which mechanism do they follow? Is there any relation between pointers and array's name? Explain. 

This question has 0 answers so far.
0

Describe various operators used in C language. Which operator has the highest precedence?

This question has 1 answers so far.
0

Using the for loop, write a program to print the sum of first n odd numbers.

This question has 0 answers so far.
0

Using the do-while loop, write a program that prints the factorial of n.

This question has 0 answers so far.
0

Using the while statement, write a program that reverses the digits n.

This question has 0 answers so far.
0

Describe the methods of parameter passing with the help suitable examples.

This question has 0 answers so far.
0

What do you mean by recursion? Write a program using a recursive function.

This question has 1 answers so far.
0

What are pointers? Why are they needed? Explain with an example.

This question has 0 answers so far.
0

Give two matrices.Write a program to calculate product of two matrices such that:

This question has 1 answers so far.
0

Declare a structure for employee' record. Also determine size of this structure.

This question has 0 answers so far.
0

Define a random access file. What are the various operations commonly used in file handling? Discuss with examples.

This question has 0 answers so far.
0

Write short notes on Argument passing using pointers

This question has 0 answers so far.
0

Write short notes on Array of pointer.

This question has 0 answers so far.
0

Write short notes on Call by reference

This question has 0 answers so far.
0

What is meant by function? List its characteristics and name five in- built functions with their purpose.

This question has 0 answers so far.
0

Describe the various phases of compilations. Is there any relation between compilation and pre processor directives? Justify your answer.

This question has 0 answers so far.
0
Write a program that copies the file called "abc.txt" to another file called "new.txt". This question has 0 answers so far.
0
Explain the Difference between the Internal and External Documentation. This question has 0 answers so far.
0
Explain the Difference between the break and continue. This question has 0 answers so far.
0
Explain the Difference between the malloc() and calloc(). This question has 0 answers so far.
0
Explain the Difference between the while and do-while. This question has 0 answers so far.
0
Draw a flowchart to find roots of a quadratic equation. This question has 0 answers so far.
0
Write a C program to print the pattern. * ** *** **** ***** This question has 0 answers so far.
0
Explain the difference between static and constant with example. This question has 0 answers so far.
0
What are enumerated data types? Explain with example. This question has 0 answers so far.
0
Explain preprocessor directives with examples. This question has 0 answers so far.
0
Explain darging pointer and NULL pointer with examples. This question has 0 answers so far.
0
Explain argument passing using pointers. This question has 0 answers so far.
0
Explain various storage classes in C. Difference between primitive & non-primitive data types. This question has 0 answers so far.
0
Differentiate between structure and union with example. This question has 0 answers so far.
0
Explain call by value & call by reference in C. This question has 0 answers so far.
0
Write a program to find the factorial of a number through recursion. This question has 2 answers so far.
0
Explain the Difference between the Assembler and Linker. This question has 0 answers so far.
0
Explain formatted I/O functions for files. This question has 0 answers so far.
0
Differentiate between sequential and random access files. This question has 0 answers so far.
0
Write a program to check whether an input string is palindrome or not. This question has 0 answers so far.
0
Write a program to count the number of vowels and words in the string"INTRODUCTION TO PROGRAMMING'. This question has 0 answers so far.
0
Write a program to multiply two matrices. This question has 0 answers so far.
0
Explain ternary operator with example. This question has 0 answers so far.
0
Explain the bitwise operators available in C. This question has 0 answers so far.
0

Q2 (a) Differentiate between auto, static, extern local and global variable with respect to their lifetime, scope and access rights.

This question has 0 answers so far.
0

(b) Differentiate between do-while and while-do loop with the help of an example. 

This question has 0 answers so far.
0

Q3 (a) Write a program in C which reads a string and after finding its length, program print back the string in reverse order. Do not use any in built function. 

This question has 0 answers so far.
0

(b) What do you mean by enumerated data types? Are they different from strings? Explain their use. 

This question has 0 answers so far.
0

Q4 (a) Differentiate between Sequential/Random files in terms of the time taken for insertion, deletion and updation of records. 

This question has 0 answers so far.
0

(a) Write a program in C which reads an array of size n, find how many numbers in the array are even, odd and count them and print the information. 

This question has 0 answers so far.
0

(b) Write a program in C which reads a array of integers. Each element of the array is replaced by its square. Print back the array.

This question has 0 answers so far.
0

(a) Differentiate between call by value and call by reference parameter passing mechanism with the help of an example. 

This question has 0 answers so far.