Revision: Fundamentals of C-Programming Structured Programming Approach BE Civil Engineering Semester 2 (FE First Year) University of Mumbai
- Select the Correct Option from Multiple Choice Question.Which of the Following is Used as a String Termination Character?
- Select the Correct Option from Multiple Choice Question.What Will Be the Output of Following Programvoid Main() {Int X[]={10,20,30,40,50};Printf(“\N%D%D%D%D”,X[4], 3[X], X[2], 1[X], X[0]); }
- What is File? What Are Different Functions Available to Read Data from File? Specify the Different Modes in Which Files Can Be Opened Along with Syntax.
- Select the Correct Option from Multiple Choice Question.What Will Be the Output of the Following Program?Void Main() {Double X=28;Int R;R=X%5;Printf(“\N R=%D”,R);}
- Select the Correct Option from Multiple Choice Question.Which of the Following is Not a Keyword of ‘C’?
- Enlist All Data Types in C Language Along with Their Memory Requirement, Format Specifiers and Range.
- State True Or False with Reason.A Float Constant Cannot Be Used as a Case Constant in a Switch Statement.
- Select the Correct Option from Multiple Choice Question.Study the Following C Programvoid Main() {Int A=0;For( ;A;);A++; }What Will Be the Value of the Variable A, on the Execution of Above Program
- Select the Correct Option from Multiple Choice Question.Which of These is a Valid Variable Declaration?
- Explain Any Four Standard Library Functions from Sting.H ?
- Select the Correct Option from Multiple Choice Question.Which Bitwise Operator is Used to Multiply the Number by 2n Where N Isnumber of Bits.
- State True Or False with Reason.A Function Can Have Any Number of Return Statements.
- What Do You Mean by File? What Are the Different Functions Available to Read Data from File? Specify the Different Modes in Which File Can Be Opened Along with Syntax.
- State True Or False with Reason.Comments in the Program Make Debugging of the Program Easier.
- 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
- Enlist Bitwise Operator in C Language. Explain Any 2 with Examples.
- Select the Correct Option from Multiple Choice Question.Which Operator Has the Lowest Priority?
- Select the Correct Option from Multiple Choice Question.What Will Be the Output?Void Main() {Int Y;Y=0x10+010+10;Printf(“\Ny=%X”,Y); }
- What is an Error ? Explain Different Types of Errors Occurred in Program.
- Wap to Print Binary Equivalent of Entered Decimal No.
- Wap to Print Following Pattern for N Lines. [Note: Range of N is 1-9]1121123211234321
- Predict Output of Following Program Segment.
- Predict Output of Following Program Segment.