نتایج جستجو برای: ایزو 9126

تعداد نتایج: 1122  

2006
ALAIN ABRAN RAFA E. AL-QUTAISH JUAN J. CUADRADO-GALLEGO

While metrology has a long tradition of use in physics and chemistry, it is rarely referred to in the software engineering measurement, and in particular, in the design and documentation of software measures. Using the ISO 9126-4 Technical Report on the measurement of software quality in use as a case study, this paper reports on the extent to which this ISO series addresses the metrology crite...

2015
Antonio Vetro Nico Zazworka Carolyn Seaman Forrest Shull

Background: Existing software defect classification schemes support multiple tasks, such as root cause analysis and process improvement guidance. However, existing schemes do not assist in assigning defects to a broad range of high level software goals, such as software quality characteristics like functionality, maintainability, and usability. Aim: We investigate whether a classification based...

Journal: :JIPI (Jurnal Ilmiah Penelitian dan Pembelajaran Informatika) 2023

Sistem Perpustakaan Sekolah UPT SD Negeri 27 Gresik telah menerapkan sistem manajemen pelayanan untuk mendukung operasional perpustakaan. Namun, belum jelas apakah tersebut memenuhi kriteria evaluasi. Penulis menggunakan standar ISO 9126 mengevaluasi persyaratan memperoleh sertifikat dalam aplikasi dengan melakukan berbagai analisis. Penelitian ini bertujuan menganalisis penerapan perpustakaan ...

2012
Antonio Vetro Nico Zazworka Carolyn B. Seaman Forrest Shull

Background: Existing software defect classification schemes support multiple tasks, such as root cause analysis and process improvement guidance. However, existing schemes do not assist in assigning defects to a broad range of high level software goals, such as software quality characteristics like functionality, maintainability, and usability. Aim: We investigate whether a classification based...

2006
ALAIN ABRAN RAFA E. AL-QUTAISH JUAN J. CUADRADO-GALLEGO

The ISO International Vocabulary of Basic and General Terms in Metrology (VIM) represents the international consensus on a common and general terminology of metrology concepts. However, until recently, it was not usual practice in software engineering measurement to take into account metrology concepts and criteria in the design of software measures. Using the ISO 9126-4 Technical Report on the...

Journal: :JIPS 2011
Jagat Sesh Challa Arindam Paul Yogesh Dada Venkatesh Nerella Praveen Ranjan Srivastava Ajit Pratap Singh

Software measurement is a key factor in managing, controlling, and improving the software development processes. Software quality is one of the most important factors for assessing the global competitive position of any software company. Thus the quantification of quality parameters and integrating them into quality models is very essential. Software quality criteria are not very easily measure...

2012
Soumi Ghosh Sanjay Kumar Dubey Ajay Rana

In modern days as because there are multiple number of object-oriented software systems, it is a real challenge for everyone to choose single one system among so many and variety of alternatives. This is obviously a challenging task to find out the most appropriate software system. In this particular study Analytical Hierarchy Process (AHP) technique has been integrated with ISO 9126-1 and it h...

2009
RAFA E. AL-QUTAISH MOHAMMAD I. MUHAIRAT BASIL M. AL-KASASBEH

Due to a high number of open source software over the internet, it is a challenge to determine which one – over a verity of alternatives – is the most appropriate for our intended needs. In this paper, the Analytical Hierarchy Process (AHP) technique along with the ISO 9126 will be integrated and applied to the selection process of open source software products. Thus, the intended features (i.e...

هدف پژوهش حاضر بررسی و ارزیابی  کیفی پورتال­های نهاد کتابخانه­های عمومی کشور بر اساس الگوی ارزشیابی کیفی وب کیو. ای. ام. است.نوع پژوهش کاربردی و روش پژوهش حاضر، پیمایشی – توصیفی بود. جامعه آماری پژوهش ، پورتال های نهاد کتابخانه‌های عمومی کشور در سال 1395 بود که تعداد 32 پورتال مشاهده و امتیازدهی شده است. برای گردآوری داده‌ها از مشاهده  مستقیم و بر اساس سیاهه وارسی انجام شده است که بر اساس الگوی...

Journal: :Studies in health technology and informatics 2005
Alexander Hörbst Kerstin Fink Georg Göbel

The development of patient information systems faces the mayor problems of increasing and more complex content as well as the introduction of new techniques of system implementation. An integrated development demands for a method to deal with both aspects. The ISO/IEC 9126-1 offers a framework where both views can be integrated to a general view of the system and can be used as a basis for furt...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->