Tutor profile: Jeffrey R.
Questions
Subject: SQL Programming
Write an SQL statement that will pull all the Actors from Movies where the MovieName contains Hollywood.
SELECT Actors FROM Movies WHERE MovieName LIKE '%Hollywood%'.
Subject: Computer Science (General)
Two of Computer Science's main topics or problems is sorting and searching, what is generally the fastest in place sort?
Generally being a keyword in the question, quicksort is the fastest in place sort. The complexity of quicksort is generally O(n logn) where if a pivot point is consistently picked in either descending or ascending order, then the complexity of quicksort is O(n^2).
Subject: C++ Programming
What is the main difference between a Struct and a Class in C++?
Structs are have public accessibility by default. Whereas classes are private by default. Both can be used in the same ways but are generally used differently.
Contact tutor
needs and Jeffrey will reply soon.