Posts

PYTHON INTERVIEW QUESTIONS

Image
WHAT IS PYTHON? Python is a high-level, interpreted, interactive and object-oriented scripting language. Python is designed to be highly readable. It uses English keywords frequently where as other languages use punctuation, and it h as fewer syntactical constructions than other languages. WHAT ARE THE SUPPORTED DATA TYPES IN PYTHON? Python has five standard data types: Numbers String List Tuple Dictionary WHAT IS TUPLES IN PYTHON? A tuple is another sequence data type that is similar to the list. A tuple consists of a number of values separated by commas. Unlike lists, however, tuples are enclosed within parentheses. WHAT IS THE DIFFERENCE BETWEEN TUPLES AND LISTS IN PYTHON? The main differences between lists and tuples are − Lists are enclosed in brackets ( [ ] ) and their elements and size can be changed, while tuples are enclosed in parentheses ( ( ) ) and cannot be updated. Tuples can be thought of as read-only lists. WHAT ARE PYTHON'

ARTIFICIAL INTELLIGENCE INTERVIEW QUESTIONS

Image
WHAT IS ARTIFICIAL INTELLIGENCE? Artificial Intelligence is an area of computer science that emphasizes the creation of intelligent machine that work and reacts like humans. WHAT IS AN ARTIFICIAL INTELLIGENCE NEURAL NETWORKS? Artificial intelligence Neural Networks can model mathematically the way biological brain works, allowing the machine to think and learn the same way the humans do- making them capable of recognizing things like speech, objects and animals like we do. WHAT ARE THE VARIOUS AREAS WHERE AI (ARTIFICIAL INTELLIGENCE) CAN BE USED? Artificial Intelligence can be used in many areas like Computing, Speech recognition, Bio-informatics, Humanoid robot, Computer software, Space and Aeronautics’s etc. WHICH IS NOT COMMONLY USED PROGRAMMING LANGUAGE FOR AI? Perl language is not commonly used programming language for AI WHAT IS PROLOG IN AI? In AI, Prolog is a programming language based on logic. GIVE AN EXPLANATION ON THE DIFFERENCE B