Dot Net Code (114)
Visual Basic Code (11)
Programming Code AllOther (62) Write a code snippets to find greatest and least of any number of inputs without taking the help of array
1 55211) int i=5; j=i++ + i++ + i++; printf("%d",j);This code gives the answer 15.But if we replace the value of the j then anser is different?why? 2)int i=5; printf("%d",i++ + i++ + i++); this givs 18.
8 66269Wrie a function which returns the most frequent number in a list of integers. Handle the case of more than one number which meets this criterion. public static int[] GetFrequency(int[] list)
3 16040Counting in Lojban, an artificial language developed over the last fourty years, is easier than in most languages The numbers from zero to nine are: 0 no 1 pa 2 re 3 ci 4 vo 5 mk 6 xa 7 ze 8 bi 9 so Larger numbers are created by gluing the digit togather. For Examle 123 is pareci Write a program that reads in a lojban string(representing a no less than or equal to 1,000,000) and output it in numbers.
4 10449Where now stands that small knot of villages known as the Endians, a mighty forest once stood. Indeed, legand has it that you could have stoodon the edge of the wood and seen it stretch out for miles, were it not for the trees getting in the way. In one section of the forest, the trees stood in a row and were of hight from 1 to n, each hight occurring once and once only. A tree was only visible if there were no higher trees before it in the row. For example, if the heights were 324165, the only visible trees would have been those of height 3,4 & 6. Write a Program that takes an array of integers representing the heights of the trees in the row as input and prints the list of the visible trees.
2 9218How do I write a program to print proper subset of given string . Eg :input: abc output:{},{a},{b},{c},{a,b},{a,c},{b,c}, {a,b,c}.I desperately need this program please mail me to saravana6m@gmail.com
11 39569How to get the version(major,minor,revision ) of VB6.0 delphi code .I am able to fetch dll file of vb6.0 but not vba file .Can u send me the code snippet in delphi to get the value for vb6.0.
3808i wrote from two tables (employee and department) 1.select * from employee,department; (it is cartesian product) but 2.select * from employee department; (?????????????????) by default it displays the employee table,what is the reason it is not taking department ??? mail @ mak2786@gmail.com Arunkumar
1 4444how to print a message to console without using main() function?(do not use even static blocks also.)
14 30663To Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates.
19 130379to remove the repeated cahracter from the given caracter array. i.e.., if the input is SSAD output should of SAD
6 10014How to export 2 datatables of a single dataset to 2 different worksheets of a single MSExcel file ?
2434
How to export 2 datatables of a single dataset to 2 different worksheets of a single MSExcel file ?
Hi, I want the code to fetch multiple rows in REXX using RLX and CURSOR. Can anyone help me?
find level of following tree (state, parent) " J,D I,D H,C E,B F,B G,C B,A D,A C,A A,& K,E L,E L,F M,F N,G O,H P,I P,H Q,I R,J S,K U,P T,L
What is the match merge ? compare data step match merge with proc sql merge - how many types are there ? data step vs proc sql
How many digit have a Polaris 1995 300c.c. 2x4 nad how many have a Polaris 2007 300 c.c 2x4? And what site I can check this information???
Write code that allows to create only one instance of a class?
Write a function which accepts list of nouns as input parameter and return the same list in the plural form. Conditions: i) if last letter is r then append s ii) if word ends with y then replace it by ies iii) call this function in main() and produce the required output. for eg:- if chair is input it should give chairs as output.
How to check if Folder is a Special Shell Folder ?
How can you relate the function with the structure? Explain with an appropriate example.
What is Generic" J2ME architecture?
Design an implement of the inputs functions for event mode
program for check the given number is prime or not in VB.net
Set up procedure for generating a wire frame display of a polyhedron with the hidden edges of the object drawn with dashed lines
what is runtime class?
I am trying to pass the string firstName from a Servlet called SampleServet. I am running this on eclipse and it tells me that "the value for annotation attribute must be a constant expression. I don't understand why it is giving me this error. @PersonAnnotation(name = SampleServlet.firstName) public class AnnotationClass{