very urgent pls help me....
How to retrieve even lines(questions) and odd lines(answers(true/false)) from text file into 2D string array in C
Write a simple application to conduct a computer based quiz. The quiz consists of questions with answers true or false only. Suppose the questions are present in a text file Questions.txt, in the following format:
First line of the file consists of the number of questions present in the file and the rest of the file consists of the question followed by answer in separate lines. Your program should display questions one by one, and prompt the user to enter his answer, at the end display the score of the user. And also display the questions the user has wrongly answered along with the correct answer. (You can assume that each question is of length at most 80 characters). Use command line arguments to provide the text file to the program.
A sample Questions.txt file:
3
There are one thousand years in a CENTURY.
False
DOZEN is equivalent to 20.
False
The past tense of FIND is FOUND.
True
Create pseudocode and flowchart to find the total number of illiterate men and women from the population of town.If the percentage of men is 54 from the population,and total literacy is 80% from the population.take note that the total literate men are 30 percent of the population,then the total population is input through the keyboard.
if the percentage of men is 54 from the population and total literacy is 80% from the population.Take note that the total literate men are 30 percent of the total population.
Reading 10 integers between 0-100 and counts how many of the are larger than 50 and displaying the result
Create a simple C program and use a comment to identify the five basic structures of the c programming language.
Create a C program to find the total number of illiterate men and women from the population of the town.if the percentage of men is 54 from the population, and total literacy is 80% from the population.Take note that the total literate men are 30% of the population
Write a C Program which converts Binary Number to Decimal and vice-versa. Your program must contain two functions. You have to ask the choice for the user if he/she enter 1 you have to work with BinToDec function if the choice is 2 you have to work with DecToBin function. Both functions take the number in int main part and you have to print the answer in int main part.
Given an input string “Ayodhya”, your C program should count the number of vowels and consonants
and print the frequency of occurrence of each vowel and consonant. Delete the vowels in the same
input string and display the updated string.
1
(a)Read a matrix of order M X N
(b)Display the matrix of order M X N.
(c)Write a function check Palindrome which takes as a parameter an integer and returns true if its palindrome and false if not.
(d)Use the above function to replace all palindrome numbers in the given
matrix by 1
’(e) Display the resultant in matrix form.