0% found this document useful (0 votes)
31 views2 pages

PPS QB 2.5 Units AY24-25

Uploaded by

lokeshnadigoti
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views2 pages

PPS QB 2.5 Units AY24-25

Uploaded by

lokeshnadigoti
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

PPS QB AY 24-25 UNIT -1

1. Explain computer system, and its parts


2. Demonstrate computer languages
3. Explain the computer environment.
4. Explain, Creating and processing of C program
5. Define SDLC
6 .what is an algorithm
7 .What is flowchart and mention any 5 .Symbols
8 .Convert 1011.11 the Decimal.
9 .Convent 111011 to decimal
10. Convent 123 to Binary.
11.Defferentiale variable and Constant.
12. Define different Data types.
13. Explain the Expression and. Solve 5*6÷4+9/3-1
14. Explain the Precedence and associativity of operations.
15. Define, with example type Conversion
16 Differentiate Compiler and Interpreter
17. What is Os? Define booting?
18. Draw flowchart for the programs finding roots of quadratic equation.
19.WCP 1) sum of digit of number
2) Reversing a number
3) Prime number
4) factorial finding
5) Max. of given three numbers
20. What are the advantages and disadvantages of structured programming?

UNIT -2
①. Mention bitwise operators write example
2. What relational and logical operators, explain with examples.
③ what is ternary/ Conditional operator
(4) Differentiate else…. if ladder and Switch..Case
⑤ Differentiate while & do... while.
⑥ Differentiate Break and continue.
⑦ Where will you use Goto Statement
⑧ How will define a function , explain with example.
9 Methods of parameter & explain with example
⑩) Define Recursion ? write factorial program using recursion /GCD/ fibanacci
11. Write in detail Storage classes With examples,
12. Define
1) user-defined function
2) Inter function Communication
3) Standard functions (Built-in functions)
13 .write a function to find the sum of digits of a given positive Number
// C program to compute sum of digits in
// number.
# include<stdio.h>

/* Function to get sum of digits */


int getSum(int n)
{
int sum = 0;
while (n != 0)
{
sum = sum + n % 10;
n = n/10;
}
return sum;
}

int main()
{
int n = 687;
printf(" %d ", getSum(n));
return 0;
}

UNIT -3
1 Define preprocessor with 5 commands
Define Macros with example.
② what is an array? Differentiate with an ordinary Variable
③ Search an element in an given array with given example
(4) WCP 1-Matrix multiplication
2-Matrix addition
3-matrix Transpose matrix
4-array applications
5-multi Dimensional arrays
(5)WCP 1-Linear Search
2-Binary search
(6) WCP, Bubble sort, selection sort
(7)WCP to find max/min in a given array
(8)WCP to find duplicate in an given array
(9)WCP to find second maximum number in an given array

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy