English

BE Electronics Engineering Semester 2 (FE First Year) - University of Mumbai Important Questions for Structured Programming Approach

Advertisements
[object Object]
[object Object]
Subjects
Popular subjects
Topics
Advertisements
Advertisements
Structured Programming Approach
< prev  21 to 40 of 88  next > 

Select the correct option from multiple choice question.

Which of the following is used as a string termination character?

Appears in 1 question paper
Chapter: [10] Fundamentals of C-Programming
Concept: Character Set in C-Programming

State True or False with reason.

A float constant cannot be used as a case constant in a switch statement.

Appears in 1 question paper
Chapter: [10] Fundamentals of C-Programming
Concept: Constants in C - Programming

State True or False with reason.

A function can have any number of return statements.

Appears in 1 question paper
Chapter: [10] Fundamentals of C-Programming
Concept: Operators in C-Programming

Enlist all data types in C language along with their memory requirement, format specifiers and range.

Appears in 1 question paper
Chapter: [10] Fundamentals of C-Programming
Concept: Data Types in C-Programming

State True or False with reason.

Comments in the program make debugging of the program easier. 

Appears in 1 question paper
Chapter: [10] Fundamentals of C-Programming
Concept: Operators in C-Programming

Write a menu driven program to perform arithmetic operations on two integers. The menu should be repeated until user selects “STOP” option. Program should have independent user defined functions for each case.

Appears in 1 question paper
Chapter: [10] Fundamentals of C-Programming
Concept: Operators in C-Programming

Predict output of following program segment.
main()
{
int a,b,*p1,*p2,x,y;
clrscr();
a=48;b=10;p1=&a;p2=&b;
x=*p1**p2-8;
*p1=*p1+*p2;
y=(*p1/ *p2)+20;
printf("%d%d%d%d%d%d",*p1,*p2,a,b,x,y);
}

Appears in 1 question paper
Chapter: [10] Fundamentals of C-Programming
Concept: Data Input and Output in C-Programming

Predict output of following program segment.

main()
{
int x=4, y=9,z;
clrscr();
z=x++ + --y+y;
printf("\n%d%d%d",x,y,z);
z= --x+x+y--;
printf("\n%d%d%d",x,y,z);
getch();
}

Appears in 1 question paper
Chapter: [10] Fundamentals of C-Programming
Concept: Data Input and Output in C-Programming

Enlist bitwise operator in c language. Explain any 2 with examples.

Appears in 1 question paper
Chapter: [10] Fundamentals of C-Programming
Concept: Operators in C-Programming

WAP to print following pattern for n lines. [Note: range of n is 1-9]

1
121
12321
1234321

Appears in 1 question paper
Chapter: [10] Fundamentals of C-Programming
Concept: Data Input and Output in C-Programming

WAP to print binary equivalent of entered decimal no.

Appears in 1 question paper
Chapter: [10] Fundamentals of C-Programming
Concept: Data Input and Output in C-Programming

Write the output of following code:
#include<stdio.h>
int main()
{
int val = 1;
do{
val++;
++val;
}while(val++>25);
printf(“%d\n”,val);
return 0;
}

Appears in 1 question paper
Chapter: [11] Control Structures
Concept: Control Structures > Looping

Write a program to validate whether accepted string is palindrome or not. 

Appears in 1 question paper
Chapter: [11] Control Structures
Concept: Control Structures > Looping

Write a program to find transpose of matrix without making use of another matrix.

 

Appears in 1 question paper
Chapter: [11] Control Structures
Concept: Control Structures > Looping

Define structure consisting of following elements
1. student roll_no
2. student name
3. student percentage
Write a program to read records of 5 students of and display same.

Appears in 1 question paper
Chapter: [11] Control Structures
Concept: Control Structures > Looping

Write a program to implement calculator with following operations using switch case
1. add two numbers
2. subtract two numbers
3. multiply two numbers
4. divide two numbers 

Appears in 1 question paper
Chapter: [11] Control Structures
Concept: Control Structures

Write a program to generate following patterns. 

1. 1
1 2
1 2 3
1 2 3 4
1 2 3 4 5

Appears in 1 question paper
Chapter: [11] Control Structures
Concept: Control Structures > Nested Control Structure

Write a program to generate following patterns. 

1
2 3
3 4 5
6 7 8 9 

Appears in 1 question paper
Chapter: [11] Control Structures
Concept: Control Structures > Nested Control Structure

Explain switch case and if-else ladder with example. 

Appears in 1 question paper
Chapter: [11] Control Structures
Concept: Control Structures > Branching

Explain break and continue statement with example. 

Appears in 1 question paper
Chapter: [11] Control Structures
Concept: Control Structures > Nested Control Structure
< prev  21 to 40 of 88  next > 
Advertisements
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×