Here is mine,
I added this function in qa-theme.php of Snow theme
public function head_script()
{
$jquery_script_tag = '<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>';
$this->output_raw($jquery_script_tag);
if (isset($this->content['script'])) {
foreach ($this->content['script'] as $script_line) {
if( strpos($script_line, 'qa-content/jquery-') !== false ){
continue;
}
$this->output_raw($script_line);
}
}
}