0% found this document useful (0 votes)
2 views6 pages

Questions With Testing

The document contains a series of questions and multiple-choice answers covering various topics such as mathematics, coding, family relationships, and software testing. It includes questions about sequences, coding languages, database management, and software development life cycles. The format suggests it is likely a practice test or quiz for assessing knowledge in these areas.

Uploaded by

surbhiaeron21
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views6 pages

Questions With Testing

The document contains a series of questions and multiple-choice answers covering various topics such as mathematics, coding, family relationships, and software testing. It includes questions about sequences, coding languages, database management, and software development life cycles. The format suggests it is likely a practice test or quiz for assessing knowledge in these areas.

Uploaded by

surbhiaeron21
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

fgkcvbjxv [Time: 30

Min.]

Q1. Look at this series: 5.2, 4.8, 4.4, 4,... What number should come next?
A.3 B.3.3 C.3.5 D.3.6

Q2. In a certain language, if SUNSHINE is coded as TVOTIJOF then how will MOON be
coded?
A. NPPQ B. NPPO C. PPON D. NQQP

Q3. If SNOW is coded as 7100, then WALL will be coded as


A. 5000 B. 4700 C. 4800 D. 4000

Q4. Choose the alternative which is closely resembles the water-image of the given
combination.

A.1 B.2 C.3 D.4

Q5. Choose the alternative which is closely resembles the water-image of the given
combination.

A.1 B.2 C.3 D.4

Q6. Look at this series: 1.5, 2.3, 3.1, 3.9, ... What number should come next?
A.4.2 B.4.4 C.4.7 D.5.1

Q7. Look at this series: 8, 6, 9, 23, 87 , ... What number should come next?
A.128 B.226 C.324 D.429

Q8. Which word does NOT belong with the others?


A. inch B. ounce C. centimeter D. yard

Q9. Tanu is older than Rajeev. Shivani is older than Tanu. Rajeev is older than Shivani. If
the first two statements are true, the third statement is
A. true B. false C. uncertain

Q10. The average of 8, 9, 12, 13, 15, 9 is


A. 11 B. 6 C. 16 D. 18

Q11. Which one is odd one out?


A. Access B. Oracle C. Excel D. MS SQL

Q12. How long is an IPv6 address?


A. 32 bits B. 128 bytes C. 64 bits D. 128 bits

Q13. What number is missing in the series?


8, 5, 12, 7, 21, 12, 24, 9, 29, ?
A. 6 B. 14 C. 7 D. 16

Q14. Pick the odd one out


A. php B. css C. ASP D. JSP

Q15. Choose the odd one


A. >= B. == C. && D. !=

[Link] Page | 1
fgkcvbjxv

Q16. Choose the odd one out.


A. Microcomputer B. Minicomputer C. Supercomputer
D. Notebook computer

Q17. A family of six members P, Q, R, X, Y and Z. Q is the son of R but R is not mother of
Q.P and R are a married couple.Y is the brother of R.X is the daughter of P.Z is the brother
of P.
Who is the father of Q?
A. P B. R C. X D. Z

Q18. How many A's are in the following series of letters that are preceded by a C?

ASDJUEJASJACDEACSASWEEDCSASDDWDSDSDCSJFHDFGGCSHYACHSGDCTEAHSGABSSCKSAAJCAJSACU
DSJACDASDFDSHSDFHCACJFDFGDUREUJFADFFWCOEUODACOEICUEIOAOCESAIDDNBCAISASAADHGCEA
HSDKJACSCHDCAHSJCADHCAKSJCAJUQADSFECROPCJHWCOMSAYAGJDHALDJCJDHAHDAC

A. 8 B. 7 C. 10 D. 9

Q19. A family consists of six members P, Q, R, S, T and U. There are two married couples. Q
is a doctor and the father of T. U is grandfather of R and is a contractor. S is grandmother
of T and is a housewife. There is one doctor, one contractor, one nurse, one housewife and
two students in the family. What is the profession of P?
A. Nurse B. Doctor C. Contractor D. Housewife

Q20. Pick the odd one out.


A. integer, character, boolean, floating
B. enumeration, classes
C. integer, enum, void
D. arrays, pointer, classes

Q21. Which of the following special symbol allowed in a variable name?


A. * (asterisk) B. | (pipeline) C. - (hyphen) D. _ (underscore)

Q22. Which of the following is correct about err used in the declaration given below?
typedef enum error { warning, test, exception } err;
A. a typedef for enum error.
B. a variable of type enum error
[Link] statement is erroneous.
D. a structure.

Q23. Which of the following operations are INCORRECT?


A. int i = 35; i = i%5;
B. short int j = 255; j = j;
C. long int k = 365L; k = k;
D. float a = 3.14; a = a%3;

Q24. Which of the following is the correct usage of conditional operators used in C?
A. a>b ? c=30 : c=40;
B. a>b ? c=30;
C. max = a>b ? a>c?a:c:b>c?b:c
D. return (a>b)?(a:b)

Q25. Which of the following are unary operators in C?


1. ! 2. sizeof 3. ~ 4. &&
A. 1, 2 B. 1, 3 C. 2, 4 D.1, 2, 3

[Link] Page | 2
fgkcvbjxv

Q26. Declare the following statement?


"An array of three pointers to chars".
A. char *ptr[3](); B. char *ptr[3]; C. char (*ptr[3])(); D. char **ptr[3];

Q27. Which of the following layers is an addition to OSI model when compared with TCP IP
model?
A. Application layer B. Presentation layer
C. Session layer D. Session and Presentation layer

Q28. A 4 byte IP address consists of __________


A. only network address B. only host address
C. network address host address D. network address MAC address

Q29. Where does keyword ‘friend’ should be placed?


A. function definition B. main function C. function declaration D. All of
above

Q30. How many types of returning values are present in c++?


A. 4 B. 3 C. 2 D. 1

Q31. What are the predefined exceptions in c++?


A. Error B. None of these
C. I/O errors D . Both Memory allocation errors & I/O errors

Q32. Find the output of the following program.


public class Solution{
public static void main(String[] args){
short x = 10;
x = x * 5;
[Link](x);
}
}
A. 50 B. 10 C. Compile error D. Exception

Q33. What is the output of this program?


import [Link].*;
public class LOCALE_CLASS_Example
{
public static void main(String args[])
{
Locale object = new Locale("HINDI", "INDIA") ;
[Link]([Link]());
}
}
A. India B. Hindi C. English D. HINDI

Q34. Which of these cannot be used for a variable name in Java?


A. identifier B. identifier & keyword
C. keyword D. None of these

Q35. Java Source Code is compiled into ______________.


A. .Exe B. Source Code C. .Obj D. Bytecode

Q36. Single line comment starts with _________ in Java.


A. // B. /* C. /** D. None of these

Q37. Which of the following is the correct syntax to print the message in C++ language?
A. cout >>"Hello world!"; B. Cout << Hello world! ;

[Link] Page | 3
fgkcvbjxv

C. Out <<"Hello world!; D. None of the above

Q38. The concept of two functions with same name is know as?
A. Operator Overloading B. Function Overloading
C. Function Overriding D. Function renaming

Q39. C language was invented to develop which Operating System.?


A. Android B. Linux C. Ubuntu D. Unix

Q40. What is the number of characters used to distinguish Identifier or Names of Functions
and Global variables?
A. 31 B. 32 C. 33 D. 28

Q41. Database management system (DBMS) is a___________


A. DBMS is a collection of queries B. None of the above
C. DBMS is a programming language D. DBMS stores, modifies and retrieves data

Q42. When data is stored, maintained and retrieved from multiple tables then special
database software are required called______
A. DBMS B. RDBMS C. Special DBMS D. All of the
above

Q43. Which type of data can be stored in the database?


A. Image oriented data B. Text, files containing data
C. Data in the form of audio or video D. All of the above

Q44. A Primary Key is basically a –


A. Row B. Column C. Table D. Database

Q45. If multiple columns are used as Primary Key, it is known as –


A. Unique B. Foreign C. Composite D. None of the above

Q46. Which of the following statement is TRUE about Primary Key?


A. Table integrity is not enforced by the primary key. B. The data in a primary key is always multiple.
C. 900 bytes is the maximum length of a primary key. D. Null values are allowed in primary
keys.

Q47. Which of the following are TCL commands?


A. COMMIT and ROLLBACK B. UPDATE and TRUNCATE C. SELECT and INSERT D. GRANT
and REVOKE

Q48. Which of the following statement is true?


A. TRUNCATE free the table space while DELETE does not.
B. Both TRUNCATE and DELETE statements free the table's space.
C. Both TRUNCATE and DELETE statement does not free the table's space.
D. DELETE free the table space while TRUNCATE does not.

Q49. Which of the following is the correct order of a SQL statement?


A. SELECT, GROUP BY, WHERE, HAVING B. SELECT, WHERE, GROUP BY, HAVING
C. SELECT, HAVING, WHERE, GROUP BY D. SELECT, WHERE, HAVING, GROUP BY

Q50. Find the cities name with the condition and temperature from table 'whether' where
condition = sunny or cloudy but temperature >= 60.
A. SELECT city, temperature, condition FROM weather WHERE condition = 'cloudy' AND condition =
'sunny' OR temperature >= 60
B. SELECT city, temperature, condition FROM weather WHERE condition = 'cloudy' OR condition =
'sunny' OR temperature >= 60
C. SELECT city, temperature, condition FROM weather WHERE condition = 'sunny' OR condition =
'cloudy' AND temperature >= 60

[Link] Page | 4
fgkcvbjxv

D. SELECT city, temperature, condition FROM weather WHERE condition = 'sunny' AND condition =
'cloudy' AND temperature >= 60
Q51. Which methodology is used to perform Maintenance testing?
A. Breadth test and depth test
B. Confirmation testing
C. Retesting
D. Sanity testing
Q52. Which of the following is not part of the Test document?
A. Test Case
B. Requirements Traceability Matrix [RTM]
C. Test strategy
D. Project Initiation Note [PIN]
Q53. Notifying the developers which bugs need to be fixed first is known as------.
A. Fixability
B. Traceability
C. Priority
D. Severity
Q54. Which of the following is not a valid phase of SDLC (Software Development Life
Cycle)?
A. Testing Phase
B. Requirement Phase
C. Deployment phase
D. Testing closure
Q55. Functional testing is a ------?
A. Test type
B. Test level
C. SDLC Model
D. Test design technique
Q56. In which environment we can perform the Alpha testing?
A. User's end
B. Developer's end
C. User's and developer's end
D. None of the above
Q57. What is the best time to perform Regression testing?
A. After the software has been modified
B. As frequently as possible
C. Both option a & c
D. When the environment has been modified
Q58. Which of the following is not part of the Test type?
A. Function testing
B. System testing
C. Statement testing
D. Database testing
Q59. In which environment we can perform the Beta testing?
A. User's and developer's end
B. Developer's end
C. User's end
D. None of the above
Q60. What is the difference between validation and verification in software testing?
A. Verification checks if the software meets user requirements, while validation ensures adherence to
standards.
B. Validation ensures that software meets user requirements, while verification focuses on the
development process.

[Link] Page | 5
fgkcvbjxv

C. Verification ensures the software is error-free, while validation checks the software against
specified criteria.
D. Validation is done by the development team, while verification is done by independent testers.

[Link] Page | 6

You might also like