Practice Makes Perfect.
Q: find output: float salary=100; salary=salary++;printf("%f", salary);
- 200.0
- 100.0
- 101
Q2: tackle output: double gravity=9.8; gravity=++gravity;printf ("%lf", gravity);
- 10.00
- 10.9
- 10.80
consider array int fruits [ 3]={ 'mango', 'apple', 'Banana'} ; what is the index of Apple ?
- [ 1 ]
- [ 0 ]
- [ 2 ]
Q4: What is the 'void' in c ?
- data type
- function
- variable
Q5: what is 'return' in c?
- function
- data type
- statement
Q6:what indicates curly brackets ?
- files
- block
- none
Q7:What is the identifires in c ?
- predefined words
- keywords
- userdefined words
Q8: When you run code a=1;a=a*2a , a=?
- a=2
- a=0
- a=1
Q9:How to write functions in c ?
- +data(){}
- data int(){}
- int data(){}
Q10: What is the algorithem ?
- code set
- instruction set
- none
Q11:which of the following is not a codeing language ?
- tictoe
- rust
- ruby
Q12:Which language is superset of C ?
- C#
- python
- c++
Q13:which of the following is exit level loop in c ?
- do while
- while
- for
Q14:Find error in this loop for(i=1,i < 10;++i); ?
- token
- terminatio
- segmentation
Q15: C is which type of language ?
- low level
- High level
- mid level
come tomarrow for more Question
- practice Daily 15 Questions
- Get onclick answer
- easy & free
Comments