AI Algorithms (74)
AI Natural Language Processing (96)
AI Knowledge Representation Reasoning (12)
AI Robotics (183)
AI Computer Vision (13)
AI Neural Networks (66)
AI Fuzzy Logic (31)
AI Games (8)
AI Languages (141)
AI Tools (11)
AI Machine Learning (659)
Data Science (671)
Data Mining (120)
AI Deep Learning (111)
Generative AI (153)
AI Frameworks Libraries (197)
AI Ethics Safety (100)
AI Applications (427)
AI General (197)
AI AllOther (6) What is the process of creating new data types in lisp? a) List b) Structures c) Procedures d) None of the mentioned
1 1996Which is the primitive that creates new structure types in LISP? a) Defnum b) Deftype c) Defstruct d) None of the mentioned
1 1910What should be used with structure names with a combination? a) Make- b) Make c) Create d) Deploy
1 1926Which enables storage in procedurally indexed places in LISP? a) Defstruct b) Object c) Structure d) None of the mentioned
1 2042Which creates reader procedures for getting things out of an instance fields? a) Structure in LISP b) Defstruct c) Class d) Object
1 2059What is the output of the given statement? * (defstruct person (sex nil) (personality ‘nice)) * (setf person-instance-1 (make-person)) * (setf person-instance-2 (make-person :sex ‘female)) a) Person :sex female :personality nice b) Person :sex c) Sex:Female d) None of the mentioned
1 2036What is the output of the given statement? * (defstruct person (sex nil) (personality ‘nice)) * (setf person-instance-1 (make-person)) * (setf person-instance-2 (make-person :sex ‘female)) * (person-personality person-instance-2) a) Female b) Nice c) Person d) Both a & b
1 1897What is the output of the given statement? * (defstruct person (sex nil) (personality ‘nice)) * (setf person-instance-1 (make-person)) * (setf person-instance-2 (make-person :sex ‘female)) * (person-p ‘(this is a list — not a person instance)) a) Female b) Nice c) T d) Nil
1 1963What is the output of the given statement? * (defstruct person (sex nil) (personality ‘nice)) * (setf person-instance-1 (make-person)) * (setf person-instance-2 (make-person :sex ‘female)) * (setf (person-surname person-instance-1) ‘winston) a) Winston b) Nil c) T d) Error
1 2473. What is the output of the given statement? * (defstruct employee (length-of-service 0) (payment ‘salary)) * (setf employee-example (make-employee)) * (employee-length-of-service employee-example) a) T b) NIL c) 0 d) Error
1 2029What is a data type in which expressions are stored in places identified by integer indexes in LISP? a) Structure b) List c) Array d) None of the mentioned
1 2352Which symbol holds the first element and also an index in LISP? a) Nail b) Tail c) Initial d) All of the mentioned
1 2118Which is present in the writer procedure for arrays in LISP? a) Setf b) Aref c) Fref d) Both a & b
1 2047Which keyword embeds the initial element in an array in LISP? a) Initial b) Initial-content c) Initial-element d) None of the mentioned
1 2228
What are decorators in Python?
Do I need to learn python for machine learning?
Tell us which data visualization libraries do you use? What are your thoughts on the best data visualization tools?
What do you understand by decision tree in machine learning?
How do you ensure that your LLM generates contextually accurate and meaningful outputs?
What are Tensorflow servables?
Is naive bayes supervised learning?
What is data augmentation? Can you give some examples?
You are given a training dataset of users that contain their demographic details, the pages on Facebook they have liked so far and results of psychology test based on their personality i.e. their openness to like FB pages or not. How will you predict the age, gender and other demographics of unseen data?
What are independent graphics subsystems?
Where do we implement artificial intelligence fuzzy logic?
How will you explain JOIN function in SQL to a 10 year old ?
What is context retrieval, and why is it important in LLM applications?
How was bayes’ theorem useful in a machine learning context?
What is connectionist AI?