How divide and conqure approach is used in merge sort?
The data to be sorted is broken into smaller and smaller chunks, then each individual chunk is sorted, then the chunks are merged together and sorted
What is meant by left skewed binary tree?
a binary tree with only left sub trees is called as left skewed binary tree
c
co
com
comp
compu
Which of these expressions equals 32768 when evaluated?
65536/2, 16384X2, 8192X4, 4096X8, 2048X16, 1024X32, 512X64, 256X128
Show calculations on how to convert binary to hexadecimal?
Quick reference chart for converting Hexidecimal to Binary numbers: Hex Binary 0.... 0000 1.... 0001 2.... 0010 3.... 0011 4.... 0100 5.... 0101 6.... 0110 7.... 0111 8.... 1000 9.... 1001 A.... 1010 B.... 1011 C.... 1100 D.... 1101 E.... 1110 F.... 1111
where you take the a piece of sting dip it in the paint and put in a white piece of paper
What does the Calendar class provide in java?
It depends on which specific class of Calendar you are referring to. Different IDEs provide different implementations. Consult your IDE's documentation for more specific information.
In general, you can expect to construct a calendar with a date in a variety of formats and return the individual year, month, day, as well as perform date calculations such as adding weeks and days to a date, or determining the name of a particular date (Sunday, Monday, etc), or working out how many days there are between two dates. Calendars may also support hours, minutes and seconds, fully-encapsulating all the things you might expect to do with dates and times.
Some implementations provide the back-end functionality of a more graphical date-picker, allowing you to select a particular date from a drop down calendar month, while others can be completely abstract, expecting you to derive your own classes to leverage the underlying functionality in any way you see fit.
How do you use a C-continue statement in a block- without any looping or conditional statements?
In the C language, the continue statement can only be used within a loop (for, while, or do). Upon execution, control transfers to the beginning of the loop.
What is a scatter file in c or c plus plus programming?
Scatter File is a linker script file used by RVCT/Keil for ARM processors. It is used by arm linker.
Peterson Number:
145 = 1! + 4! + 5!
number=sum of (factorials of digits)
What is the edge of java over other object oriented programming language?
I am not sure Java is the best language; different languages have different advantages and disadvantages. However, here are some of Java's advantages; some of these advantages are shared by other languages, too:
pancakes
What is the function of symboland in C programming?
The symbol and (ampersand, &) in C and C++ programming is the bitwise inclusive or operator. If there are two ampersands (&&) it is a relational inclusive or operator. As a unary operator, it means to take the address of something. In C++, it can also be overridden in a class method to mean nearly anything else.
You declare a class as follows:
class MyClass
{
//some stuff here...
}
You create an object as follows:
MyClass object;
This is how you create classes and objects in C++.
What kind of Loop pedal does Liam Finn use?
Contrary to Wikipedia stating it's a Line 6 JM4 Looper, Liam actually uses a Line 6 DL4 Delay. Evidence: http://www.flickr.com/photos/wamcroundtable/5877120578/in/photostream/
Can you declare printf for integer variable?
printf is declared in stdio.h
Format specifier for an integer value is %d.