Explain how do you sort filenames in a directory?
What is the difference between Render vs. Redirect_to in ruby on rails ?
In What case you are not going to use XML?
You are given a data set. The data set has missing values which spread along 1 standard deviation from the median. What percentage of data would remain unaffected? Why ?
What is client server architecture and is it always two tire architecture?
how much st. steel is required for staging of concourse slab of a elevated metro station allowing through traffic .
What are good programming languages for artificial intelligence?
What are different types of shell?
In speech recognition which model gives the probability of each word following each word?
What is a documentation string?
What will happen if a field is hidden through field level security and user search a values in that field? : salesforce sharing and security
What is the use of Initialize and cleanup in object studio?
How can I compare two mysql databases?
Explain HDFS “Write once Read many” pattern?
A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.