View all courses
Read more
The Language Which does not need any prior knowledge of Programming and Easy to learn .Python is Object-oriented ,interpreted and Server side Scripting language . It is mainly used for lynux platform.
In Advance concept After learning Core Python We will use Python to create Desktop Application, Web Application, Sockets Programming , Multithread Programming. Since its An Open source Language its free of Cost
Ruby is server side, dynamic, reflective, object-oriented, general-purpose programming language. Ruby is "an interpreted scripting language for quick and easy object-oriented programming"
Ruby on Rails, or simply Rails, is a web application frameworkwritten in Ruby under the MIT License. Rails is a model–view–controller (MVC) framework, providing default structures for a database, a web service, and web pages.
If you have any confusion then you can ask our experts.Our experts will guide you properly.
We are looking you if you are looking guidance for web design and development. Apply online.
Contact us
<pre> <strong>21. How do you control the max size of a HEAP table? Maximum size of Heal table can be controlled by MySQL config variable called max_heap_table_size. 22. What is the difference between MyISAM Static and MyISAM Dynamic? In MyISAM static all the fields will have fixed width. The Dynamic MyISAM table will have fields like TEXT, BLOB, etc. to accommodate the data types with various lengths. MyISAM Static would be easier to restore in case of corruption. 23. What are federated tables? Federated tables which allow access to the tables located on other databases on other servers. 24. What, if a table has one column defined as TIMESTAMP? Timestamp field gets the current timestamp whenever the row gets altered. 25. What happens when the column is set to AUTO INCREMENT and if you reach maximum value in the table? It stops incrementing. Any further inserts are going to produce an error, since the key has been used already. 26. How can we find out which auto increment was assigned on Last insert? LAST_INSERT_ID will return the last value assigned by Auto_increment and it is not required to specify the table name. 27. How can you see all indexes defined for a table? Indexes are defined for the table by: SHOW INDEX FROM <tablename>; 28. What do you mean by % and _ in the LIKE statement? % corresponds to 0 or more characters, _ is exactly one character in the LIKE statement. 29. How can we convert between Unix & MySQL timestamps? UNIX_TIMESTAMP is the command which converts from MySQL timestamp to Unix timestamp FROM_UNIXTIME is the command which converts from Unix timestamp to MySQL timestamp. 30. What are the column comparisons operators? The = , <>, <=, <, >=, >,<<,>>, <=>, AND, OR, or LIKE operators are used in column comparisons in SELECT statements. </strong></pre>