Which computer programming languages are the standard?
The older languages are still the standards by which modern programming languages are measured. Fortran, COBOL, Lisp, and C/C++ are all used as baselines to evaluate newer languages. Of course, the "new kids" are being used as standards more and more often. Java, Ruby, Perl, Python, and other more modern languages are being used to measure how "good" a new language is.
What drug helps to lose weight the fastest?
Eating a healthy, varied diet that is high in fruits and vegetables — including soluble fiber, vitamin D, and probiotics — is the best plan for losing weight from your waistline. Avoiding refined carbohydrates, sugar, and processed foods whenever possible will help you cut calories and get rid of fat more quickly.reduce
How quickly will you lose weight? The volunteers reduced their waist sizes by an average of 1 inch for every 4lb (1.81kg) they lost. So if you lose 1lb (0.45kg) a week you could hope to your waistline by an inch after four weeks. If you are interested to know the amazing secret tips which helps me lose weight fast then click on the link in my bio
Describe the 3 levels of government?
depending on what country you live in, here in Canada we have municipal, provincial and then federal.
it is the power ratio in decibels
No, it isn't. dB on its own is a ratio.
But when dB has a suffix, the figure is an absolute measurement, not a ratio.
For instance, dBm is a measurement of power compared to 1mW.
0dBm means zero difference between 1mW and the measured figure. In other words the measured figure is also 1mW.
3dBm is 3dB greater than 1mW. -3dB is 3dB less than 1mW. etc.
Another suffix is W. 0dBW being 1 watt.
There are many more suffixes, some of which are used in only a few specialised cases.
Yes, SQL is a high level language, since it allow us to get result without much going into Assembly level instructions, by using interpreter to change our statements/queries into machine level instructions!.
What is data manipulating language?
DML is a subset of SQL (Structured Query Language) that is used to insert, delete and revise records (or 'tuples') in a relational database. The precise definition of DML varies considerably with the database system with which it is associated.
How do you reverse a given string without using string functions?
1.take while loop in which u continue up to null in array of string.
2.once u get null pointer then take a new array of same length.
3.when u get null there ll save position no in variable i.
4.take while loop i to 0;
5.and j=0 for new array.
6.in above loop copy old array to new array in each cycle of loop.
7.j++;
8.u ll get reverse of string.
What six columns are shown in the output of the DESCRIBE table statement?
Name of the table field.
Column type such as varchar or timestamp.
Does the field allow null values?
Is this field a primary key or (a part of) and index?
Default field value.
Additional information such as "on update CURRENT_TIMESTAMP"
What is the purpose of normalisation?
If you are referring to normalization of floating point numbers, it is to maintain the most precision of the number possible. Leading zeros in floating point representation is lost precision, thus normalization removes the leading zeros by shifting left and adjusting the exponent. If the calculation was done in a hidden extended precision register (like IEEE 80-bit format) extra precision bits may be shifted in to the LSBs before restoring the result to a standard single or double precision register, reducing loss of precision.
No, SQL and MySQL are not the same. SQL (Structured Query Language) is a standardized programming language used for managing and manipulating relational databases. MySQL, on the other hand, is an open-source relational database management system (RDBMS) that uses SQL as its query language. In essence, SQL is the language, while MySQL is a specific implementation of a database system that utilizes that language.
What is the software MySQL used for?
MySQL is an open source database used by businesses to help manage their websites and other areas of their business involving high volumes of data. MySQL offers users training, certification, consulting and support.
What are the advantages and disadvantages of indexes in oracle?
The advantages of indexes in Oracle are that it is faster at accessing rows and is useful. The disadvantages are that the table used is small and an index must be used in order to access data.
Comparing a field from a table with a field from a different table and using PHP and MySQL?
That will depend on the relationship between the two tables. Assuming it's a simple link between the two tables, then it can be done pretty easily.
For example, take two tables, "nuts" and "bolts". Perhaps you would want to compare the price per quantity of each of those, and that value is stored in the table. You could do it this way:
...
$query = mysql_query("SELECT nuts.price AS nutprice, bolts.price as boltprice FROM nuts JOIN bolts ON nuts.quantity = bolts.quantity");
while( $data = mysql_fetch_array($query)){
do_comparison($data['nutprice'], $data['boltprice']);
}
...
How are locking techniques used for concurrency control?
Concurrency means use of database by many users at the same time.Concurrency control techniques (Different techniques) are used control multiple transactions interfere each other to produce wrong results.
therefore one of the main techniques used to control concurrent execution of transaction is based on the concept of locking of data item.
A lock is a variable associated with a data item in the database and describes the status of that item with respect to possible operation that can be applied to that item.
Generally there is a one lock for each data item in the database.
What thoughts trigger depersonalization?
Depersonalization can be triggered by feelings of anxiety, stress, or overwhelming emotions, leading individuals to feel detached from themselves or their surroundings. Thoughts of inadequacy, fear of losing control, or an intense focus on self-awareness can also contribute to this sensation. Additionally, traumatic experiences or significant life changes may provoke feelings of unreality, causing a disconnect from one’s identity or environment.
What is an external constraint?
An external constraint is something outside a business that stops the business achieving it's aims and objectives. For example, changing consumer's tastes.
How do you convert xlsx to xls using php?
since XLS and XLSX are proprietary formats of Microsoft products, I'm not sure there is a (free) PHP way to do so. you can export your data in CSV, which is easily opened in Microsoft Excel or OpenOffice Calc