Skip to main content

Top 5 4G Smartphone Under 7000 In India




Here I discuss about list of 5 best 4g smartphone under 7000 in India and those are very popular in 2017-2018. I also discuss those features and specifications. So, let’s talk about it.

1. Redmi 4 :-



Redmi 4 comes with black and gold color plastic body with nice build quality.  It also comes with three variant internal memory spaces of 16 GB, 32 GB and 64 GB with 2GB RAM, and it is expandable up to 128 GB. It has dual SIM (micro and nano) and dual 4g standby mode. It has 720p resolution with 5 inch display. It also comes with Qualcomm Snapdragon 435 Octa core processor with Adreno 505 GPU with android v 6.0.1 marshmallow OS. Redmi 4 also has 5MP front facing camera and 13 MP primary camera gives you 1080p full HD video recording facility. Redmi 4 also offers you to take Panorama and HDR photography.  It also comes with 4100mAH lithium-ion battery, which gives you 36 hours talk-time and 432 hours in standby mode.





2. Infocus Vision 3 :-


Infocus Vision 3 comes with Midnight Black and gold color variant with 18:9 Fullvision display ratio with nice curve edges. It also comes with 8MP front camera and 13MP+5MP dual back cameras with led flash. The Infocus Vision 3 has 1.3GHz Quad core processor with Android v7.0 Nougat Smile UX operating system. It has 2GB of RAM with 16GB internal memory and it expandable up to 128 GB. It also has dual nano SIM with dual standby facility. Infocus Vision 3 provides fingerprint scanner to secure your phone. It also provides music shuffle of 45 hours and call capacity of 20 hours with its 4000mAh lithium ion battery with reverse charging facility.



3. Nokia 2 :-



Nokia 2 comes with white color body with aluminum frame with sculpted polycarbonate back side. It has bright 5 inch curve 720px resolution HD LTPS screen. It has very low internal storage only 8 Gb with 1 GB of Ram. So it is lagging when you are doing multiple works at the same time and play high resolution game. It has MicroSD card slot and expandable up to 128 Gb. Nokia 2 also comes with 8MP primary camera with autofocus facility with LED flash and 5MP front facing camera. It has v7.1.1 Android Nougat OS. It is power up with 4100 mAh battery with 19 hrs talk time.




4. Samsung On5 Pro :-



Samsung On5 Pro comes with two color variant black and gold with plastic back and 720p HD resolution with 5 inch TFT capacitive touchscreen. It has 8 MP primary camera and 5MP front camera with 120 degree selfie mode.  It also comes with 1.3GHz Exynos quad core processor and Andorid 6.0 Marshmallow OS. It has 2GB RAM with 16 GB internal memory and its expandable up to 128 GB. It provides you dual micro SIM with dual standby facility.  Its battery capacity is low only 2600 mAh Li-Ion battery. But the overall I can say that this mobile is like a pro.



5. Coolpad Note 5 Lite :-  



Coolpad Note 5 Lite comes with three colors variant Gray, Gold and Royal Gold with Sleek and Strong Body. It also comes with 5 inch 720px HD resolution so you can get a rich viewing experience.  It has 1GHz Mediatek quad core processor with Android 6.0 Marshmallow OS. It also has 3GB of RAM and 16 GB of internal memory and expandable up to 64GB. It provides dual nano sim with dual standby facility. Its battery capacity is 2500 mAH and provides 200 hours standby time. The Coolpad Note 5 Lite has 13MP primary camera and 8 Mp front facing camera.



Comments

Popular posts from this blog

Clap On Off Switch Circuit Using Arduino

  Arduino Clap LED program #define MicAO 8 int ledPin = 13; int clap = 0; long detection_range_start = 0; long detection_range = 0; boolean status_lights = false; void setup() {   pinMode(MicAO, INPUT);   pinMode(ledPin,OUTPUT);   } void loop() { int status_MicAO = digitalRead(MicAO); if (status_MicAO == 0) { if (clap == 0) { detection_range_start = detection_range = millis(); clap++; } else if (clap > 0 && millis()-detection_range >= 50) { detection_range = millis(); clap++; } } if (millis()-detection_range_start >= 400) { if (clap == 2) { if (!status_lights) { status_lights = true; digitalWrite(ledPin, HIGH); } else if (status_lights) { status_lights = false; digitalWrite(ledPin, LOW); } } clap = 0; } }

Bluetooth Robot Car Using Arduino Project Step By Step

Bluetooth Controlled Robot Car Using Arduino Bluetooth Controlled Robot Car Using Arduino Project using LM298n motor deriver and hc-05 bluetooth module step by step tutorial. Code Download :- Click Here Arduino bluetooth controller app Arduino bluetooth controller App

IOT Based Water Level Indicator Project Using Esp32 And Ultrasonic Sensor

  Water Level Indicator Project Using ESP32   Water Level Indicator with Alarm on Tank Full.   IoT Wi-Fi smart water level indicator for tanks with mobile app control . 📟 OLED Display (0.96" I2C SSD1306)   OLED Pin         ESP32 Pin VCC                     3.3V GND                     GND SDA                    GPIO 21 SCL                      GPIO 22     🔔 BUZZER   Buzzer Pin        ESP32 Pin   +           GPIO 26 -            GND         Each LED connects to an ESP32 GPIO pin via a current-limiting resistor.   ...