Answer Posted / manjit
no
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What is the most efficient way to store flag values?
What do mean by network ?
Explain how do you generate random numbers in c?
In cryptography, you could often break the algorithm if you know what was the original (plain) text that was encoded into the current ciphertext. This is called the plain text attack. In this simple problem, we illustrate the plain text attack on a simple substitution cipher encryption, where you know each letter has been substituted with a different letter from the alphabet but you don’t know what that letter is. You are given the cipherText as the input string to the function getwordSets(). You know that a plain text "AMMUNITION" occurs somewhere in this cipher text. Now, you have to find out which sets of characters corresponds to the encrypted form of the "AMMUNITION". You can assume that the encryption follows simple substitution only. [Hint: You could use the pattern in the "AMMUNITION" like MM occurring twice together to identify this]
Differentiate between null and void pointers.
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
Is void a keyword in c?
What is meant by initialization and how we initialize a variable?
Write a program to reverse a linked list in c.
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
Can a pointer be null?
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
Explain the difference between call by value and call by reference in c language?
What will be the outcome of the following conditional statement if the value of variable s is 10?
Explain continue keyword in c