Top answers

All subjects
All levels

Describe the difference between a CPU and a GPU with relation to processing power and ability to perform tasks.

A CPU (Central Processing Unit) is comprised of a few large processing cores, each of which is capable of performing complicated tasks on its own. This added complexity also enables CPUs to be efficent

Answered by Zack S. Computing tutor
1267 Views

Write pseudocode for the linear search algorithm, and then explain it’s complexity using big-O notation

Pseudocode: FUNCTION linearSearch(list, searchTerm):               FOR index FROM 0 -> length(list):                               IF list[index] == searchTerm THEN                                     ...

Answered by Jacob N. Computing tutor
27342 Views

Describe what you understand by abstraction, and how it is relevant to software engineering.

Two parts: Abstraction: Separating ideas from reality / implementationHiding (irrelevant) details from the userA representation / simplification of a concept Application: Object oriented programming is fu...

Answered by Jacob N. Computing tutor
2295 Views

What is an interface and why are they useful?

An interface in the Object Oriented Programming (OOP) sense is very similar to a class definition - it is the definition of the various functions and procedures provided by the class (in this case interfa...

Answered by Kajetan C. Computing tutor
7845 Views

Given a graph with n nodes and m edges, every edge has a passing cost that can be negative, find the minimum distance between node 1 and every other node

We will use the Bellman-Ford algorithm to compute the minimum distance between that start node and every other one, by passing through each edge for a maximum of n times and "relaxing the edge",...

Answered by Victor S. Computing tutor
4062 Views

We're here to help

contact us iconContact usWhatsapp logoMessage us on Whatsapptelephone icon+44 (0) 203 773 6020
Facebook logoInstagram logoLinkedIn logo

© MyTutorWeb Ltd 2013–2025

Terms & Conditions|Privacy Policy
Cookie Preferences