Telegram Web Link
πŸ‘1
✍✍......πŸƒπŸƒπŸƒ......✍✍
Q: The first PC virus was developed in
Anonymous Quiz
25%
A. 1981
36%
B. 1984
30%
C. 1986
9%
D. 1988
πŸ‘5
✍✍......πŸƒπŸƒπŸƒ.....✍✍
Q: Java was introduced by
Anonymous Quiz
24%
A. IBM
35%
B. Microsoft
12%
C. Intel
29%
D. Sun Microsystem
✍✍......πŸƒπŸƒπŸƒ......✍✍
Q: Java is a programming langauge developed by
Anonymous Quiz
43%
A. James Gosling
24%
B. John Nauchly
18%
C. Jack Simplot
15%
D. Jory Hamington
πŸ‘2πŸ₯°2πŸ‘2
✍✍......πŸƒπŸƒπŸƒ......✍✍
Q: Visual Basic was invented by .....
Anonymous Quiz
22%
A. Dennis Ritchie
36%
B. John Kemeny
28%
C. Alan Cooper
13%
D. Charles Babbage
πŸ‘4❀1
✍✍......πŸƒπŸƒπŸƒ......✍✍
Q: Which one of the following sorts rows in SQL?
Anonymous Quiz
38%
A. SORTBY
22%
B. ALIGNBY
32%
C. ORDERBY
9%
D. GROUPBY
πŸ₯°3πŸ‘2
✍✍......πŸƒπŸƒπŸƒ......✍✍
Q: The SQL statement that queries or reads data from a table is
Anonymous Quiz
26%
A. QUERY
26%
B. READ
37%
C. SELECT
11%
D. QUERY
πŸ‘1
πŸ₯°2πŸ‘1
✍✍......πŸƒπŸƒπŸƒ......✍✍
Q: What are the types of join and explain each?(SQL)
There are various types of join which can be used to retrieve data and it depends on the relationship between tables.

Inner Join.
Inner join return rows when there is at least one match of rows between the tables.

Right Join.
Right join return rows which are common between the tables and all rows of Right hand side table. Simply, it returns all the rows from the right hand side table even though there are no matches in the left hand side table.

Left Join.
Left join return rows which are common between the tables and all rows of Left hand side table. Simply, it returns all the rows from Left hand side table even though there are no matches in the Right hand side table.

Full Join.
Full join return rows when there are matching rows in any one of the tables. This means, it returns all the rows from the left hand side table and all the rows from the right hand side table.

@Compu
πŸ‘7
✍✍......πŸƒπŸƒπŸƒ......✍✍
Q: What is a query?
A DB query is a code written in order to get the information back from the database. Query can be designed in such a way that it matched with our expectation of the result set. Simply, a question to the Database.

@Compu
✍✍......πŸƒπŸƒπŸƒ......✍✍
Q: What is full form of EXIF?
Anonymous Quiz
12%
(A) Exchangeable Image Fine Finish
45%
(B) Exchangeable Image File Format
38%
(C) Executable Image File Format
5%
(D) Executable Image File Finish
πŸ₯°2πŸ‘1πŸ‘1
✍✍......πŸƒπŸƒπŸƒ......✍✍
Q:- What is subquery?(SQL)
A subquery is a query within another query. The outer query is called as main query, and inner query is called subquery. SubQuery is always executed first, and the result of subquery is passed on to the main query.

@Compu
πŸ‘6
πŸ‘4
πŸ‘3
✍✍......πŸƒπŸƒπŸƒ......✍✍
Q:- Which of the following query finds the total rating of the sailors who have reserved boat "103"?
Anonymous Quiz
36%
B. SELECT s.rating FROM sailors s, reserves r WHERE s.sid = r.sid AND r.bid = 103
34%
C. c) SELECT COUNT(s.rating) FROM sailors s, reserves r WHERE s.sid = r.sid AND r.bid = 103
11%
D. SELECT SUM(s.rating) FROM sailors s, reserves r WHERE s.sid = r.sid AND r.bid = 103
πŸ‘5πŸ‘1
✍✍......πŸƒπŸƒπŸƒ......✍✍
Q #1) Explain Web Services?

Answer: A Web Service can be defined as an application component for communication or say exchanging information between two applications over the network. Web services basically work on a client-server model where web services are easily accessible to client applications over the network.

To enable communication between various applications, web services take the help of open standards like XML (for data tagging), SOAP (for message transferring) and WSDL (to denote service availability).

Join us @Compu
πŸ‘5πŸ‘Ž2
✍✍......πŸƒπŸƒπŸƒ......✍✍
Q #2) What are the components of web service?

Answer: The different components of web services are as follows:

➑️SOAP- Simple Object Access Protocol
➑️UDDI- Universal Description, Discovery, and Integration
➑️WSDL- Web Service Description Language
➑️RDF- Resource Description Framework
➑️XML- Extensible Markup Language

Join us @Compu
πŸ‘1
✍✍......πŸƒπŸƒπŸƒ......✍✍
Q #3) Explain the term Interoperability with respect to Web services?

Answer: The term β€˜Interoperability’ is widely used in product marketing description which defines the ability of different products or systems working together without any special effort from the customer part.


This is applicable in the same way when we talk about β€˜Interoperability’ in terms of web services. Here, it determines the communication between various applications, sharing of data as well as services among themselves. There is no restriction on the type of application to be in communication.

If any code is written, it will be treated as a generic code that will be understood by all applications. Thus, the cost of writing specific codes for each application is reduced.

There is no restriction on the type of application to be in communication. If any code is written, it will be treated as a generic code that will be understood by all applications. Thus, the cost of writing specific codes for each application is reduced.

Join us @Compu
πŸ‘6
✍✍......πŸƒπŸƒπŸƒ......✍✍
Q #4) Define web service protocol stack and its layers?

Answer: Web service protocol stack consists of 4 layers. This can be described as follows:

a) Service transport: This is the first layer that helps in transporting XML messages between various client applications. This layer commonly uses the below-mentioned protocols:

HTTP(Hypertext Transport Protocol)
SMTP(Simple Mail Transport Protocol)
FTP(File Transfer Protocol)
BEEP(Block Extensible Exchange Protocol)
b) XML messaging: This layer is based on the XML model where messages are encoded in common XML format which is easily understood by others. This layer includes

XML-RPC
SOAP(Simple Object Access Protocol)
c) Service description: This layer contains descriptions like location, available functions, and data types for XML messaging which describes the public interface to a specific web service. This layer includes:

WSDL(Web Service Description Language)
d) Service discovery: This layer is responsible for providing a way to publish and find web services over the web. This layer includes:

UDDI(Universal Description, Discovery, and Integration)


Join us @Compu
πŸ‘3
2025/07/08 19:33:34
Back to Top
HTML Embed Code: