-
Error-handling Procedure
In languages without exception-handling facilities, we could send an error-handling procedure as a parameter to each procedure that can detect errors that must be handled. What disadvantages are there to this method?
-
Static Functions
To which segment does Static functions belong?
-
Storing Character String
In a compiler there is 36 bit for a word and to store a character 8bits are needed. IN this to store a character two words are appended. Then for storing a K characters string, How many words are neededA. 2k/9B. (2k+8)/9C. (k+8)/9D. 2*(k+8)/9E. none
-
Programming Approaches
Explain and differentiate Modular Programming and Structured Programming approach?
-
FLEX
What is flex? Where it is used in web applications?
-
Command Line Arguments
What is Command Line Arguments?What are its uses?Where we have to use this?
-
Interface in C#
If the interface in C# only contains the declaration of the methods and we need to define those methods in the class, then Why we use the interface..???
-
Case sensitive
Why the programing language are case sensitive as is not for user friendly.
-
Cass to Track Number of Instances
Design a class that will keep track of number of instances that have been instantiated. Make this class thread safe.
Samba Attributes
What are the attributes of Samba?
If else in c++
Hi guys ,
in c++ programming (if) when we use "=" isntead of "==" compiler behave the same ... Do u know why compiler Behave like this ??
TnxReverse a sting using loop in php
Hi , when I reverse a string using loop in php like
php$str="navin";
$rstr="";
$len=strlen($str);
for($i=$len-1;$i>=0;$i--)
{
$rstr.=$str[$i];
}
echo $rstr;
It work but I want to know why we use .dot(.) $rstr.=$str[$i]; over here thanks in advanceEfficient algorithm to print count and possible string outcomes of a given input string
Write an Efficient algorithm to print count and possible string outcomes of a given input string by retaining order and considering all characters during this process
Problem: given a input string as "0000" and following input scheme for the zeroes, print the possible outcomes by retaining order of the characters. input scheme: a "0" b "00" c "000" d "0000" example: "aaaa" is one string...Arrays
Design a flow chart for program that displays the number of days in each month. the program should have two parllel arrays 12 element string array that is initialized with the names of the month, and 12 element integer array that is initialized the number of days in each month.
Analysis Number Design Flow chart
Number analysis program design a program that asks the user to enter a series of 20 numbers. The program should store the numbers in an array and then display the following data: the lowest number in the array,the highest number in the array and the total of the numbers in the array...
Solve this Programming Task in language of preference
TASK 1: Programming Task in language of preference
Imagine a customized computer keyboard with following layout :
ERTYU1
DFGHJ2
CVBNM4
The keyboard only has above set of keys in the panel , For a given set on input word you need to output the path taken to press them , for example :
Consider the input word is : RFGM
the output...Functions
1.One foot equals 12 inches. Design a function named
feetTolnches that accepts a number of feet as an argument, and returns the number of inches in that many feet. Use the function in a program that prompts the user to enter a number of feet and then displays the number of inches in that many feet.
2.Rainfall Statistics
Design a program that lets the user enter the total rainfall...Flow
Number analysis program design a program that asks the user to enter a series of 20 numbers. The program should store the numbers in an array and then display the following data: the lowest number in the arraythe highest number in the array the total of the numbers in the arraythe...
Ans