What is triangle with at least two sides equal?
if two sides are of equal length, the a triangle is said to be isoceles.
Why sql is non procedural language?
non-procedural language in which you can communicate tasks to the compute using simple commands.
A procedural language is one in which you must give the computer step by step
instructions for accomplishing a task
What are the difference between opcode and operand?
An opcode is an instruction. An operand is information used by the opcode. Not all opcodes require operands.
In computer terminology the word legacy is usually used as a legacy system, which represents an old computer system or application, which is used by the users, only because they don't want to change or redesign it. Normally legacy systems are considered problematic by the software professionals since it may not match with the technologies of the new era.
A "legacy" system is one that is either outdated for most practical purposes, or one that includes older forms of technology. A "legacy-free" PC is one that does not include older ports that would be necessary to support much older equipment, such as parallel ports, ISA slots, serial ports, PS/2 ports, and sometimes even VGA. A legacy system is an old computer system that is no longer in use, but may still have important information. It could also be one that is completely redundant. New systems either have to replace it or even connect to it. A company might have an old payroll system that is replaced by a new one. The old one becomes a legacy system. Data structures that are out of date by modern standards, may still be in operation in some computer systems because the newer systems had to be based on an older system. Having a legacy system may make it difficult to implement a new system or delay it. Good system design can integrate the older system and later modify the new system so that it is fully up to date with modern standards, without having lost any data from the old system. The old system can be retained on backup so that if it is needed it is accessible. Ideally, the new system should be able to safely and completely replace it, so that the old system is never needed again for any reason.
Is there is a demand for MCA Graduate in India?
I think there is a good demand for MCA Graduate in India, but due to recession in IT Sector in 2005 there is a little bit fall in demand.
Why bcnf is stronger than 3nf?
A relation R is in 3NF if and only if every dependency A->B satisfied by R meets at least ONE of the following criteria: 1. A->B is trivial (i.e. B is a subset of A) 2. A is a superkey 3. B is a subset of a candidate key BCNF doesn't permit the third of these options. Therefore BCNF is said to be stronger than 3NF because 3NF permits some dependencies which BCNF does not.
What is the complexity of Floyd warshall algorithm?
The Floyd-Warshall algorithm is a classic example of dynamic programming used to find the shortest paths between all pairs of vertices in a weighted graph. It's a powerful algorithm that works for both directed and undirected graphs, and handles negative weights as well. The algorithm operates in a systematic manner, progressively building up the solution by considering intermediate vertices between each pair of vertices, and determining if a shorter path can be found by going through that intermediate vertex.
The core of the Floyd-Warshall algorithm involves three nested loops. The outer loop iterates through each vertex in the graph, treating it as an intermediate vertex. The two inner loops iterate through all pairs of vertices, checking and updating the shortest path between them if a shorter path is found through the intermediate vertex. Due to this triple nested loop structure, the time complexity of the Floyd-Warshall algorithm is often expressed as
O(n3)
where
n is the number of vertices in the graph.
While the time complexity might seem high, the Floyd-Warshall algorithm's ability to solve the all-pairs shortest path problem in a straightforward and understandable manner makes it a valuable tool in the realm of graph theory and network analysis. The space complexity of the algorithm is O(n2)
as it requires a two-dimensional matrix to store the shortest path distances between all pairs of vertices.
The matrix used by the Floyd-Warshall algorithm is initialized with the direct distances between vertices, and is progressively updated through the algorithm's iterations. Each cell in the matrix ultimately contains the shortest distance between the corresponding pair of vertices.
In practical scenarios, the Floyd-Warshall algorithm can be used in various domains including routing protocols in networking, travel itinerary planning, and in many applications where optimizing routes through networks is crucial.
Despite its cubic time complexity, the Floyd-Warshall algorithm's ability to handle negative weights and its straightforward implementation makes it a popular choice for the all-pairs shortest path problem, especially when the graph has a relatively small number of vertices, or when a precise and comprehensive solution is required over performance.
In conclusion, the Floyd-Warshall algorithm is a compelling, albeit computationally intensive, method to solve the all-pairs shortest path problem. Its cubic time complexity might be a deterrent for extremely large graphs, yet its robustness and simplicity keep it relevant in many practical situations where understanding and optimizing network pathways are essential.
Has jacquline Wilson written for adults?
Yes, Jacqueline Wilson has written books for adults. In addition to her well-known works for children and young adults, she has also written several novels targeting adult readers, such as "Hetty Feather," "Queenie," and "Love Lessons." These books explore more mature themes and topics.
How did the dispute arise between the big-endians and the little-endians?
The terms big-endian/little-endian come from Jonathan Swift's Gulliver's Travels. In Lilliput, a royal edict required its citizens to open soft boiled eggs from the small end. In the rival kingdom of Blefuscu, they opened them from the big end, earning them the name Big-endians.
In computing, the terms are intended to indicate from which end a multi-byte numeric value is written. With little-endian, the least-significant byte always comes first (thus the value is written in reverse). This makes it much easier to cast from one type to another. For instance, a wide character consumes two bytes (a word). For characters within the ASCII character set, the first byte is always 0x00 while the second byte stores the actual ASCII character code (0x00 to 0xFF). With big-endian notation, casting a wide character to an ASCII character results in the ASCII character always having the value 0x00 because that is the first byte. In little-endian, the bytes are reversed thus the first byte is the ASCII character code.
Display odd number using for loop?
It is actually quite easy to write a program in java to do this. The easiest way to do this that I can think of is to use the remainder operator (%) to test whether a number is odd or not. Here is a simple program that will print out all the odd numbers between 1 and 50.
public class OddNumbers {
public static void main(String[] args) {
int i=1;
while(i < 50) {
if(i%2 != 0) {
System.out.println(i);
}
i++;
}
}
}
What is expression in software?
An expression is any combination of values that can be evaluated. A value can be as a simple as a literal constant (such as the value 42), a variable or a function, or it can be the result of an operation. Simple expressions can be combined with operators to produce more complex expressions.
Expressions are evaluated according to the rules of precedence. In mathematics, we use the following order of precedence is: parenthesis, exponent, multiply, divide, add and subtract (which gives us the acronym PEMDAS).
What is a stateless session beans?
A stateless session bean is a type of enterprise bean in Java EE that doesn't maintain any conversational state with clients. Each client request is treated independently, and the server can choose any available instance of the stateless session bean to handle the request. Statelessness allows for efficient use of resources and parallel processing since the server doesn't have to keep track of the state of each client.
Does a cheat engine slow down computer?
No it never dose because it depends what computer you have but this is a list that the computers it slows down
slow down
dell
apple ( slow in the first place)
non slow
acer ( only)
What does a high level of ornithine mean?
A high level of ornithine typically indicates a deficiency in the enzyme that breaks down ornithine, called ornithine transcarbamylase. This can lead to a condition called ornithine transcarbamylase deficiency, which results in the build-up of ammonia in the blood. This condition can be life-threatening and requires immediate medical attention.
What is the difference between cyber-warfare and cyber crime?
Cybercrime is the global term for all types of unauthorised hacking, often involving some fraudulent financial gain (theft), software piracy or wilful damage to a network. Cyberwarfare is a more specific type of cybercrime, typically a politically-motivated attack against a particular network for the purpose of sabotage and/or espionage. Distributed denial of service (DDoS) is the simplest but least effective form of cyber-warfare.
FLV stands for "Flash Video". It is a format designed for web video playback that offers high rates of compression and produces high quality video. FLV is becoming more and more popular on the web since it can easily be embedded in a webpage and is supported by the main operating systems via the Adobe Flash Player and web-browser plugin. At present, FLV is the file format widely used by some famous websites, such as YouTube, Google Video, MySpace, etc.
FLV files are composed of a video bit stream and an audio bit stream. The video bit stream that is commonly used is H.263 video standard, which is also called Sorenson Spark. The audio bit stream that is found in most Flash files is encoded as MP3. It should also be noted that FLV files support other forms of audio such as AAC and ADPCM.
Resource from: http://www.aunsoft.com/what-is-flv/
Write a c program to check Armstrong number using functions?
TO PRINT ALPHABET PYRAMID
ABCDEFGGFEDCBA
ABCDEFFEDCBA
ABCDEEDCBA
ABCDDCBA
ABCCBA
ABAB
A
#include
#incldue
int main( )
{
int r,c,askey,sp;
clrscr( );
for( r=7; r>=1; r-- )
{
for(sp=6; sp>=r; sp--)
printf(" "); //2 spaces
askey=65;
for(c=1; c<=r; c++ )
printf("%2c", askey++ );
for(c=r-1; c>=1; c-- )
printf("%2c", --askey);
printf("\n");
}
getch();
return 0;
}
by BRAMHA VARDHAN
How much does a multi-skilled technician make?
This depend greatly on the industry and location of the position. I am an instructor that teaches in a mechatronic engineering program, also known as multi-skilled. We are located in Western KY, and our graduates have started out making anywhere from $14hr - $30hr. Before teaching I worked at the Tennessee Valley Authority and their multi-skilled technicians topped out at $35 hr, but with overtime they were making well over $100k a year.
What is Lego Mindstorms NXT Model for Robotics?
The NXT is a Lego Micro Proscesor that can be connected to three motors* and four sensors*. It can be Programmed in several different Programming Languages, and use several third party sensors other than the four supplyed in the base set.
The NXT is not realy a "Model for robotics" it is a very functional robot disign system, which has been steryotyped to seem like a toy.
any more questions may be asked a forums.nxtasy.org where people that have a better answer will answer to you.
What do you mean by creating visuals?
Creating visuals... "To make pictures out of words." Or something to back up what is being said.Not just enough to state something, but to also show it.
What do you need to make a video game?
Firstly, u should install a record program, i recommend PChand Screen Capture, it could record anything on the screen and any audio you hear. even the left and right mouse clicks and mouse highlights can be recorded to be displayed in your recordings.
see the link below:
http://www.screen-capture-record.com/screen-recorder.html
Secondly, read some tutorials on how to use this kind of program, if u choose PCHand Screen Recorder, here are some articles that could help u to discover more.
http://blog.pc-hand.com/category/tutorial
Btw, the file generated using PCHand Screen Recorder is standard AVI format, u can upload it to Youtube to share with everyone.
Hope it could help u! :)