What is difference between Natural Language Processing and Natural Language Understanding?

What is difference between Natural Language Processing and Natural Language Understanding?

It is quite common to confuse specific terms in this fast-moving field of Machine Learning and Artificial Intelligence. The above...

Learn more »

Explain briefly, how the domain names are translated to IP addresses?

Explain briefly, how the domain names are translated to IP addresses?

DNS (Domain Name System) is just as important as fast content. DNS is what translates your familiar domain name (www.google.com)...

Learn more »

What are the characteristics of modern website applications or web apps or software?

What are the characteristics of modern website applications or web apps or software?

The following attributes are encountered in the vast majority of WebApps. Network intensiveness. A WebApp resides on a network and...

Learn more »

What do you mean by Legacy Software? Discuss in brief about legacy system.

What do you mean by Legacy Software? Discuss in brief about legacy system.

Hundreds of thousands of computer programs fall into one of the seven broad application domains discussed in the preceding subsection....

Learn more »

What is an Embedded system? Differentiate between embedded system and real-time system.

What is an Embedded system? Differentiate between embedded system and real-time system.

Ans: An embedded system is some combination of computer hardware and software, either fixed in capability or programmable, that is specifically designed for...

Learn more »

Explain all types of task classes in real time system?

Explain all types of task classes in real time system?

Ans: There are five types of task classes: (i) Periodic and aperiodic tasks(ii) Sporadic task(iii) Critical task(iv) Noncritical task (1) Periodic task: There are many tasks...

Learn more »

What are the characteristics of data in database?

What are the characteristics of data in database?

Following are the characteristics of Data in a database: Shared : Date in a database is shared among different users...

Learn more »

List and briefly define types of cryptanalytic attacks based on what is known to the attacker.

List and briefly define types of cryptanalytic attacks based on what is known to the attacker.

Cryptanalysis (from the Greek kryptós, "hidden", and analýein, "to loosen" or "to untie") is the study of methods for obtaining...

Learn more »

What's the difference between standards mode and quirks mode?

What's the difference between standards mode and quirks mode?

In the old days, pages were written in two versions: Netscape Navigator Microsoft Internet Exploreer When W3C, was introduced, browsers...

Learn more »

Important Front end Developer interview questions and answers

Important Front end Developer interview questions and answers

General Questions: What did you learn yesterday/this week? What excites or interests you about coding? What is a recent technical...

Learn more »

Describe cyclomatic complexity with example.

Describe cyclomatic complexity with example.

Cyclomatic complexity is a software metric that measure the logical strength of the program. It was developed by Thomas J....

Learn more »

What do you mean by usability testing?

What do you mean by usability testing?

Usability testing is a testing methodology where the end customer is asked to use the software to see if the...

Learn more »

What is the difference between white box, black box, and gray box testing?

What is the difference between white box, black box, and gray box testing?

Black box testing is a testing strategy based solely on requirements and specifications. Black box testing requires no knowledge of internal...

Learn more »

What is Exploratory Testing and when should it be performed?

What is Exploratory Testing and when should it be performed?

The definition of Exploratory Testing is “simultaneous test design and execution” against an application. This means that the tester uses...

Learn more »

What Test Techniques are there and what is their purpose?

What Test Techniques are there and what is their purpose?

Test Techniques are primarily used for two purposes: a) To help identify defects, b) To reduce the number of test...

Learn more »

How do you test the login feature of a web application?

How do you test the login feature of a web application?

This is a very common software testing interview question and the aim is to see how broad you can think...

Learn more »

How do You Verify the Results of Your Search on Search Results Page?

How do You Verify the Results of Your Search on Search Results Page?

The answer to this question is rather simple. At first instance, we need to know where the data is coming...

Learn more »

Write a program to read a line of text then count number of vowels, number of digits and number of spaces.

Write a program to read a line of text then count number of vowels, number of digits and number of spaces.

#include<stdio.h> int main(){ char line[150]; int i,v,c,ch,d,s,o; o=v=c=ch=d=s=0; printf("Enter a line of string:\n"); gets(line); for(i=0;line[i]!='\0';++i) { if(line[i]=='a' || line[i]=='e' ||...

Learn more »